ETH Price: $3,267.69 (+4.63%)
Gas: 2 Gwei

Dunks (DUNK)
 

Overview

TokenID

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
DunksNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/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/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/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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 tokenId);

    /**
     * @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/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/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/Address.sol

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        
        string memory _baseTokenURI = _baseURI();
        string memory json = ".json";
        return bytes(_baseTokenURI).length > 0
            ? string(abi.encodePacked(_baseTokenURI, tokenId.toString(), json))
            : '';
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: DunksNFT.sol

pragma solidity ^0.8.0;

contract DunksNFT is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private _tokenId;

    uint256 public MAX_SUPPLY = 10000;
    uint256 public PRIVATESALE_RESERVED = 500;
    uint256 public PRESALE_RESERVED = 5000;
    uint256 public MAX_ALLOWED = 2;
    uint256 public MAX_ALLOWED_PRESALE = 2;
    uint256 public MAX_ALLOWED_PRIVATESALE = 10;
    uint256 public MIN_NO_BOT_BALANCE = 0.01 ether;
    string baseTokenURI;
    
    mapping(address => bool) private _presaleEligible;
    
    bool public saleOpen = false;
    bool public presaleOpen = false;
    bool public privateSaleOpen = false;
    bool public presaleWhiteListRequired = false;
    
    event NFTMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Dunks", "DUNK") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

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

    function setMaxAllowd(uint256 _maxAllowed) public onlyOwner {
        MAX_ALLOWED = _maxAllowed;
    }
    
    function setMaxAllowdPresale(uint256 _maxAllowedPresale) public onlyOwner {
        MAX_ALLOWED_PRESALE = _maxAllowedPresale;
    }

    function setMaxAllowdPrivatesale(uint256 _maxAllowedPrivatesale) public onlyOwner {
        MAX_ALLOWED_PRIVATESALE = _maxAllowedPrivatesale;
    }

    function setMaxPrivatesaleReserved(uint256 _maxPrivatesaleReserved) public onlyOwner {
        PRIVATESALE_RESERVED = _maxPrivatesaleReserved;
    }

    function setMaxPresaleReserved(uint256 _maxPresaleReserved) public onlyOwner {
        PRESALE_RESERVED = _maxPresaleReserved;
    }

    
    function setPresaleWhiteListRequired(bool _presaleWhiteListRequired) public onlyOwner {
        presaleWhiteListRequired = _presaleWhiteListRequired;
    }

    //Set PrivateSale
    function setPrivateSaleOpen(bool _status) public onlyOwner {
        privateSaleOpen = _status;
    }

    //Set PreSale
    function setPreSaleOpen(bool _status) public onlyOwner {
        presaleOpen = _status;
    }

    //Set sale
    function setSaleOpen(bool _status) public onlyOwner {
        saleOpen = _status;
    }

    function setMMinNoBotBalance(uint256 _newMinNoBotBalance) public onlyOwner {
        MIN_NO_BOT_BALANCE = _newMinNoBotBalance;
    }
     
    //mint NFT
    function mintNFT(uint256 _count) public {
        if (msg.sender != owner()) {
            require((saleOpen == true || privateSaleOpen == true || presaleOpen == true), "Sale is not open please try again later");
            require(msg.sender.balance >= MIN_NO_BOT_BALANCE,"You must hold minimum 0.01 ETH to mint"); // Check to avoid Bots mininting
        }
        
        if(privateSaleOpen == true){
            require(
                _count > 0 && (balanceOf(msg.sender)+_count) <= MAX_ALLOWED_PRIVATESALE,
            "You have reached the NFT minting limit per transaction"
            );
            require(balanceOf(msg.sender) < MAX_ALLOWED_PRIVATESALE, "You have reached maximum NFT minting limit per account");
        }else if(presaleOpen == true){
            require(
                _count > 0 && (balanceOf(msg.sender)+_count) <= MAX_ALLOWED_PRESALE,
            "You have reached the NFT minting limit per transaction"
            );
            require(balanceOf(msg.sender) < MAX_ALLOWED_PRESALE, "You have reached maximum NFT minting limit per account");
        }else if(saleOpen == true){
            require(
                _count > 0 && (balanceOf(msg.sender)+_count) <= MAX_ALLOWED,
            "You have reached the NFT minting limit per transaction"
            );
            require(balanceOf(msg.sender) < MAX_ALLOWED, "You have reached maximum NFT minting limit per account");
        }
        
        if(privateSaleOpen == true){
            require(
                totalSupply() + _count <= (PRIVATESALE_RESERVED),
                "All Private Sell NFTs sold"
            );
        }else if(presaleOpen == true){
            require(
                totalSupply() + _count <= (PRESALE_RESERVED),
                "All Presale NFTs sold"
            );

            if(presaleWhiteListRequired == true) {
                require(_presaleEligible[msg.sender] == true, "Not whitelsited for Presale");
            }
        }else if(saleOpen == true){
            require(
                totalSupply() + _count <= (MAX_SUPPLY),
                "All NFTs sold"
            );
        }
        

        address _to = msg.sender;

        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }
    
    function airdrop(address[] calldata _recipients) external onlyOwner {
        require(
            totalSupply() + _recipients.length <= (MAX_SUPPLY),
            "Airdrop minting will exceed maximum supply"
        );
        require(_recipients.length != 0, "Address not found for minting");
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Minting to Null address");
            _mint(_recipients[i]);
        }
    }

    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = true;
        }
    }

    function checkPresaleEligiblity(address addr) public view returns (bool) {
        return _presaleEligible[addr];
    }
    
    function _mint(address _to) private {
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        _tokenId.increment();
        emit NFTMinted(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"NFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ALLOWED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWED_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALLOWED_PRIVATESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_NO_BOT_BALANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIVATESALE_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleWhiteListRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMinNoBotBalance","type":"uint256"}],"name":"setMMinNoBotBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowed","type":"uint256"}],"name":"setMaxAllowd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowedPresale","type":"uint256"}],"name":"setMaxAllowdPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAllowedPrivatesale","type":"uint256"}],"name":"setMaxAllowdPrivatesale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPresaleReserved","type":"uint256"}],"name":"setMaxPresaleReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPrivatesaleReserved","type":"uint256"}],"name":"setMaxPrivatesaleReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presaleWhiteListRequired","type":"bool"}],"name":"setPresaleWhiteListRequired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPrivateSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

6080604052612710600c556101f4600d55611388600e556002600f819055601055600a601155662386f26fc100006012556015805463ffffffff191690553480156200004a57600080fd5b5060405162002dcc38038062002dcc8339810160408190526200006d9162000285565b604080518082018252600581526444756e6b7360d81b60208083019182528351808501909452600484526344554e4b60e01b908401528151919291620000b691600091620001c9565b508051620000cc906001906020840190620001c9565b505050620000e9620000e3620000fb60201b60201c565b620000ff565b620000f48162000151565b506200039d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c5906013906020840190620001c9565b5050565b828054620001d79062000361565b90600052602060002090601f016020900481019282620001fb576000855562000246565b82601f106200021657805160ff191683800117855562000246565b8280016001018555821562000246579182015b828111156200024657825182559160200191906001019062000229565b506200025492915062000258565b5090565b5b8082111562000254576000815560010162000259565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200029957600080fd5b82516001600160401b0380821115620002b157600080fd5b818501915085601f830112620002c657600080fd5b815181811115620002db57620002db6200026f565b604051601f8201601f19908116603f011681019083821181831017156200030657620003066200026f565b8160405282815288868487010111156200031f57600080fd5b600093505b8284101562000343578484018601518185018701529285019262000324565b82841115620003555760008684830101525b98975050505050505050565b600181811c908216806200037657607f821691505b6020821081036200039757634e487b7160e01b600052602260045260246000fd5b50919050565b612a1f80620003ad6000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c806370a082311161015c578063a22cb465116100ce578063c8e7506511610087578063c8e7506514610583578063d8b9f9161461058c578063da87c2c21461059f578063e985e9c5146105b2578063ecbd76ea146105ee578063f2fde38b1461060157600080fd5b8063a22cb46514610512578063aef6ee1f14610525578063af979f2514610538578063b88d4fde1461054b578063bee6348a1461055e578063c87b56dd1461057057600080fd5b806395b476b01161012057806395b476b0146104c557806395d89b41146104d857806399288dbb146104e05780639a6a6237146104ed5780639c2ade61146104f65780639dd0d82b1461050957600080fd5b806370a0823114610473578063715018a614610486578063729ad39e1461048e5780638da5cb5b146104a157806392642744146104b257600080fd5b806332cb6b0c116102005780634f6ccce7116101b95780634f6ccce71461040b57806355f804b31461041e57806359b02f22146104315780636352211e1461043a57806367fe2fde1461044d5780636cf39f841461046057600080fd5b806332cb6b0c1461039f57806340f255ac146103a857806342842e0e146103bc5780634332a028146103cf578063438b6300146103e25780634a6ef49c1461040257600080fd5b806318160ddd1161025257806318160ddd1461031f578063191f65ac1461033157806320197d1f1461035d57806321ef45851461037057806323b872dd146103795780632f745c591461038c57600080fd5b806301ffc9a71461028f57806306fdde03146102b757806307e8efc3146102cc578063081812fc146102e1578063095ea7b31461030c575b600080fd5b6102a261029d3660046122ef565b610614565b60405190151581526020015b60405180910390f35b6102bf61063f565b6040516102ae919061236b565b6102df6102da36600461237e565b6106d1565b005b6102f46102ef36600461237e565b610709565b6040516001600160a01b0390911681526020016102ae565b6102df61031a3660046123b3565b61079e565b6008545b6040519081526020016102ae565b6102a261033f3660046123dd565b6001600160a01b031660009081526014602052604090205460ff1690565b6102df61036b36600461237e565b6108b3565b610323600d5481565b6102df6103873660046123f8565b6108e2565b61032361039a3660046123b3565b610913565b610323600c5481565b6015546102a2906301000000900460ff1681565b6102df6103ca3660046123f8565b6109a9565b6102df6103dd36600461237e565b6109c4565b6103f56103f03660046123dd565b6109f3565b6040516102ae9190612434565b61032360115481565b61032361041936600461237e565b610a95565b6102df61042c366004612504565b610b28565b61032360125481565b6102f461044836600461237e565b610b69565b6015546102a29062010000900460ff1681565b6102df61046e36600461237e565b610be0565b6103236104813660046123dd565b610c0f565b6102df610c96565b6102df61049c36600461254d565b610ccc565b600a546001600160a01b03166102f4565b6102df6104c036600461237e565b610e8a565b6102df6104d336600461237e565b6112e8565b6102bf611317565b6015546102a29060ff1681565b610323600f5481565b6102df6105043660046125d2565b611326565b610323600e5481565b6102df6105203660046125ed565b61136a565b6102df61053336600461254d565b61142e565b6102df6105463660046125d2565b611549565b6102df610559366004612620565b611586565b6015546102a290610100900460ff1681565b6102bf61057e36600461237e565b6115be565b61032360105481565b6102df61059a3660046125d2565b6116b7565b6102df6105ad3660046125d2565b6116fd565b6102a26105c036600461269c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102df6105fc36600461237e565b611745565b6102df61060f3660046123dd565b611774565b60006001600160e01b0319821663780e9d6360e01b148061063957506106398261180f565b92915050565b60606000805461064e906126c6565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906126c6565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b600a546001600160a01b031633146107045760405162461bcd60e51b81526004016106fb90612700565b60405180910390fd5b600e55565b6000818152600260205260408120546001600160a01b03166107825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fb565b506000908152600460205260409020546001600160a01b031690565b60006107a982610b69565b9050806001600160a01b0316836001600160a01b0316036108165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fb565b336001600160a01b0382161480610832575061083281336105c0565b6108a45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fb565b6108ae838361185f565b505050565b600a546001600160a01b031633146108dd5760405162461bcd60e51b81526004016106fb90612700565b600d55565b6108ec33826118cd565b6109085760405162461bcd60e51b81526004016106fb90612735565b6108ae8383836119c0565b600061091e83610c0f565b82106109805760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ae83838360405180602001604052806000815250611586565b600a546001600160a01b031633146109ee5760405162461bcd60e51b81526004016106fb90612700565b601055565b60606000610a0083610c0f565b905060008167ffffffffffffffff811115610a1d57610a1d612478565b604051908082528060200260200182016040528015610a46578160200160208202803683370190505b50905060005b82811015610a8d57610a5e8582610913565b828281518110610a7057610a70612786565b602090810291909101015280610a85816127b2565b915050610a4c565b509392505050565b6000610aa060085490565b8210610b035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fb565b60088281548110610b1657610b16612786565b90600052602060002001549050919050565b600a546001600160a01b03163314610b525760405162461bcd60e51b81526004016106fb90612700565b8051610b65906013906020840190612240565b5050565b6000818152600260205260408120546001600160a01b0316806106395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fb565b600a546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016106fb90612700565b600f55565b60006001600160a01b038216610c7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cc05760405162461bcd60e51b81526004016106fb90612700565b610cca6000611b6b565b565b600a546001600160a01b03163314610cf65760405162461bcd60e51b81526004016106fb90612700565b600c5481610d0360085490565b610d0d91906127cb565b1115610d6e5760405162461bcd60e51b815260206004820152602a60248201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696044820152696d756d20737570706c7960b01b60648201526084016106fb565b6000819003610dbf5760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e6700000060448201526064016106fb565b60005b818110156108ae576000838383818110610dde57610dde612786565b9050602002016020810190610df391906123dd565b6001600160a01b031603610e495760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e6720746f204e756c6c206164647265737300000000000000000060448201526064016106fb565b610e78838383818110610e5e57610e5e612786565b9050602002016020810190610e7391906123dd565b611bbd565b80610e82816127b2565b915050610dc2565b600a546001600160a01b03163314610f955760155460ff16151560011480610ebf575060155462010000900460ff1615156001145b80610ed7575060155460ff6101009091041615156001145b610f335760405162461bcd60e51b815260206004820152602760248201527f53616c65206973206e6f74206f70656e20706c6561736520747279206167616960448201526637103630ba32b960c91b60648201526084016106fb565b60125433311015610f955760405162461bcd60e51b815260206004820152602660248201527f596f75206d75737420686f6c64206d696e696d756d20302e30312045544820746044820152651bc81b5a5b9d60d21b60648201526084016106fb565b60155462010000900460ff16151560010361101957600081118015610fcf575060115481610fc233610c0f565b610fcc91906127cb565b11155b610feb5760405162461bcd60e51b81526004016106fb906127e3565b601154610ff733610c0f565b106110145760405162461bcd60e51b81526004016106fb90612839565b6110f3565b601554610100900460ff16151560010361107a5760008111801561105257506010548161104533610c0f565b61104f91906127cb565b11155b61106e5760405162461bcd60e51b81526004016106fb906127e3565b601054610ff733610c0f565b60155460ff1615156001036110f3576000811180156110ae5750600f54816110a133610c0f565b6110ab91906127cb565b11155b6110ca5760405162461bcd60e51b81526004016106fb906127e3565b600f546110d633610c0f565b106110f35760405162461bcd60e51b81526004016106fb90612839565b60155462010000900460ff16151560010361117257600d548161111560085490565b61111f91906127cb565b111561116d5760405162461bcd60e51b815260206004820152601a60248201527f416c6c20507269766174652053656c6c204e46547320736f6c6400000000000060448201526064016106fb565b6112c1565b601554610100900460ff16151560010361125d57600e548161119360085490565b61119d91906127cb565b11156111e35760405162461bcd60e51b8152602060048201526015602482015274105b1b08141c995cd85b19481391951cc81cdbdb19605a1b60448201526064016106fb565b6015546301000000900460ff16151560010361116d573360009081526014602052604090205460ff16151560011461116d5760405162461bcd60e51b815260206004820152601b60248201527f4e6f742077686974656c736974656420666f722050726573616c65000000000060448201526064016106fb565b60155460ff1615156001036112c157600c548161127960085490565b61128391906127cb565b11156112c15760405162461bcd60e51b815260206004820152600d60248201526c105b1b081391951cc81cdbdb19609a1b60448201526064016106fb565b3360005b828110156108ae576112d682611bbd565b806112e0816127b2565b9150506112c5565b600a546001600160a01b031633146113125760405162461bcd60e51b81526004016106fb90612700565b601155565b60606001805461064e906126c6565b600a546001600160a01b031633146113505760405162461bcd60e51b81526004016106fb90612700565b601580549115156101000261ff0019909216919091179055565b336001600160a01b038316036113c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fb565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114585760405162461bcd60e51b81526004016106fb90612700565b60005b818110156108ae57600083838381811061147757611477612786565b905060200201602081019061148c91906123dd565b6001600160a01b0316036114e25760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064016106fb565b6001601460008585858181106114fa576114fa612786565b905060200201602081019061150f91906123dd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611541816127b2565b91505061145b565b600a546001600160a01b031633146115735760405162461bcd60e51b81526004016106fb90612700565b6015805460ff1916911515919091179055565b61159033836118cd565b6115ac5760405162461bcd60e51b81526004016106fb90612735565b6115b884848484611c19565b50505050565b6000818152600260205260409020546060906001600160a01b031661163d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106fb565b6000611647611c4c565b604080518082019091526005815264173539b7b760d91b602082015281519192509061168257604051806020016040528060008152506116af565b8161168c85611c5b565b8260405160200161169f9392919061288f565b6040516020818303038152906040525b949350505050565b600a546001600160a01b031633146116e15760405162461bcd60e51b81526004016106fb90612700565b60158054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146117275760405162461bcd60e51b81526004016106fb90612700565b6015805491151563010000000263ff00000019909216919091179055565b600a546001600160a01b0316331461176f5760405162461bcd60e51b81526004016106fb90612700565b601255565b600a546001600160a01b0316331461179e5760405162461bcd60e51b81526004016106fb90612700565b6001600160a01b0381166118035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fb565b61180c81611b6b565b50565b60006001600160e01b031982166380ac58cd60e01b148061184057506001600160e01b03198216635b5e139f60e01b145b8061063957506301ffc9a760e01b6001600160e01b0319831614610639565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189482610b69565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fb565b600061195183610b69565b9050806001600160a01b0316846001600160a01b0316148061198c5750836001600160a01b031661198184610709565b6001600160a01b0316145b806116af57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116af565b826001600160a01b03166119d382610b69565b6001600160a01b031614611a3b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106fb565b6001600160a01b038216611a9d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fb565b611aa8838383611d5c565b611ab360008261185f565b6001600160a01b0383166000908152600360205260408120805460019290611adc9084906128d2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0a9084906127cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611bc8600b5490565b9050611bd48282611e14565b611be2600b80546001019055565b6040518181527fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf1598689060200160405180910390a15050565b611c248484846119c0565b611c3084848484611e2e565b6115b85760405162461bcd60e51b81526004016106fb906128e9565b60606013805461064e906126c6565b606081600003611c825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cac5780611c96816127b2565b9150611ca59050600a83612951565b9150611c86565b60008167ffffffffffffffff811115611cc757611cc7612478565b6040519080825280601f01601f191660200182016040528015611cf1576020820181803683370190505b5090505b84156116af57611d066001836128d2565b9150611d13600a86612965565b611d1e9060306127cb565b60f81b818381518110611d3357611d33612786565b60200101906001600160f81b031916908160001a905350611d55600a86612951565b9450611cf5565b6001600160a01b038316611db757611db281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dda565b816001600160a01b0316836001600160a01b031614611dda57611dda8382611f2f565b6001600160a01b038216611df1576108ae81611fcc565b826001600160a01b0316826001600160a01b0316146108ae576108ae828261207b565b610b658282604051806020016040528060008152506120bf565b60006001600160a01b0384163b15611f2457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e72903390899088908890600401612979565b6020604051808303816000875af1925050508015611ead575060408051601f3d908101601f19168201909252611eaa918101906129b6565b60015b611f0a573d808015611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b508051600003611f025760405162461bcd60e51b81526004016106fb906128e9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116af565b506001949350505050565b60006001611f3c84610c0f565b611f4691906128d2565b600083815260076020526040902054909150808214611f99576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fde906001906128d2565b6000838152600960205260408120546008805493945090928490811061200657612006612786565b90600052602060002001549050806008838154811061202757612027612786565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205f5761205f6129d3565b6001900381819060005260206000200160009055905550505050565b600061208683610c0f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6120c983836120f2565b6120d66000848484611e2e565b6108ae5760405162461bcd60e51b81526004016106fb906128e9565b6001600160a01b0382166121485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fb565b6000818152600260205260409020546001600160a01b0316156121ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fb565b6121b960008383611d5c565b6001600160a01b03821660009081526003602052604081208054600192906121e29084906127cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224c906126c6565b90600052602060002090601f01602090048101928261226e57600085556122b4565b82601f1061228757805160ff19168380011785556122b4565b828001600101855582156122b4579182015b828111156122b4578251825591602001919060010190612299565b506122c09291506122c4565b5090565b5b808211156122c057600081556001016122c5565b6001600160e01b03198116811461180c57600080fd5b60006020828403121561230157600080fd5b813561230c816122d9565b9392505050565b60005b8381101561232e578181015183820152602001612316565b838111156115b85750506000910152565b60008151808452612357816020860160208601612313565b601f01601f19169290920160200192915050565b60208152600061230c602083018461233f565b60006020828403121561239057600080fd5b5035919050565b80356001600160a01b03811681146123ae57600080fd5b919050565b600080604083850312156123c657600080fd5b6123cf83612397565b946020939093013593505050565b6000602082840312156123ef57600080fd5b61230c82612397565b60008060006060848603121561240d57600080fd5b61241684612397565b925061242460208501612397565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561246c57835183529284019291840191600101612450565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124a9576124a9612478565b604051601f8501601f19908116603f011681019082821181831017156124d1576124d1612478565b816040528093508581528686860111156124ea57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251657600080fd5b813567ffffffffffffffff81111561252d57600080fd5b8201601f8101841361253e57600080fd5b6116af8482356020840161248e565b6000806020838503121561256057600080fd5b823567ffffffffffffffff8082111561257857600080fd5b818501915085601f83011261258c57600080fd5b81358181111561259b57600080fd5b8660208260051b85010111156125b057600080fd5b60209290920196919550909350505050565b803580151581146123ae57600080fd5b6000602082840312156125e457600080fd5b61230c826125c2565b6000806040838503121561260057600080fd5b61260983612397565b9150612617602084016125c2565b90509250929050565b6000806000806080858703121561263657600080fd5b61263f85612397565b935061264d60208601612397565b925060408501359150606085013567ffffffffffffffff81111561267057600080fd5b8501601f8101871361268157600080fd5b6126908782356020840161248e565b91505092959194509250565b600080604083850312156126af57600080fd5b6126b883612397565b915061261760208401612397565b600181811c908216806126da57607f821691505b6020821081036126fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016127c4576127c461279c565b5060010190565b600082198211156127de576127de61279c565b500190565b60208082526036908201527f596f752068617665207265616368656420746865204e4654206d696e74696e67604082015275103634b6b4ba103832b9103a3930b739b0b1ba34b7b760511b606082015260800190565b60208082526036908201527f596f7520686176652072656163686564206d6178696d756d204e4654206d696e6040820152751d1a5b99c81b1a5b5a5d081c195c881858d8dbdd5b9d60521b606082015260800190565b600084516128a1818460208901612313565b8451908301906128b5818360208901612313565b84519101906128c8818360208801612313565b0195945050505050565b6000828210156128e4576128e461279c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129605761296061293b565b500490565b6000826129745761297461293b565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ac9083018461233f565b9695505050505050565b6000602082840312156129c857600080fd5b815161230c816122d9565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fc9a47e761183e2571aa378443d9cfda9e818af28d42ba9cb1e9ed0e346b891864736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d654b754833466a5466674c6345756b41535550514345584638664e6f334e77785238373473467561347545322f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061028a5760003560e01c806370a082311161015c578063a22cb465116100ce578063c8e7506511610087578063c8e7506514610583578063d8b9f9161461058c578063da87c2c21461059f578063e985e9c5146105b2578063ecbd76ea146105ee578063f2fde38b1461060157600080fd5b8063a22cb46514610512578063aef6ee1f14610525578063af979f2514610538578063b88d4fde1461054b578063bee6348a1461055e578063c87b56dd1461057057600080fd5b806395b476b01161012057806395b476b0146104c557806395d89b41146104d857806399288dbb146104e05780639a6a6237146104ed5780639c2ade61146104f65780639dd0d82b1461050957600080fd5b806370a0823114610473578063715018a614610486578063729ad39e1461048e5780638da5cb5b146104a157806392642744146104b257600080fd5b806332cb6b0c116102005780634f6ccce7116101b95780634f6ccce71461040b57806355f804b31461041e57806359b02f22146104315780636352211e1461043a57806367fe2fde1461044d5780636cf39f841461046057600080fd5b806332cb6b0c1461039f57806340f255ac146103a857806342842e0e146103bc5780634332a028146103cf578063438b6300146103e25780634a6ef49c1461040257600080fd5b806318160ddd1161025257806318160ddd1461031f578063191f65ac1461033157806320197d1f1461035d57806321ef45851461037057806323b872dd146103795780632f745c591461038c57600080fd5b806301ffc9a71461028f57806306fdde03146102b757806307e8efc3146102cc578063081812fc146102e1578063095ea7b31461030c575b600080fd5b6102a261029d3660046122ef565b610614565b60405190151581526020015b60405180910390f35b6102bf61063f565b6040516102ae919061236b565b6102df6102da36600461237e565b6106d1565b005b6102f46102ef36600461237e565b610709565b6040516001600160a01b0390911681526020016102ae565b6102df61031a3660046123b3565b61079e565b6008545b6040519081526020016102ae565b6102a261033f3660046123dd565b6001600160a01b031660009081526014602052604090205460ff1690565b6102df61036b36600461237e565b6108b3565b610323600d5481565b6102df6103873660046123f8565b6108e2565b61032361039a3660046123b3565b610913565b610323600c5481565b6015546102a2906301000000900460ff1681565b6102df6103ca3660046123f8565b6109a9565b6102df6103dd36600461237e565b6109c4565b6103f56103f03660046123dd565b6109f3565b6040516102ae9190612434565b61032360115481565b61032361041936600461237e565b610a95565b6102df61042c366004612504565b610b28565b61032360125481565b6102f461044836600461237e565b610b69565b6015546102a29062010000900460ff1681565b6102df61046e36600461237e565b610be0565b6103236104813660046123dd565b610c0f565b6102df610c96565b6102df61049c36600461254d565b610ccc565b600a546001600160a01b03166102f4565b6102df6104c036600461237e565b610e8a565b6102df6104d336600461237e565b6112e8565b6102bf611317565b6015546102a29060ff1681565b610323600f5481565b6102df6105043660046125d2565b611326565b610323600e5481565b6102df6105203660046125ed565b61136a565b6102df61053336600461254d565b61142e565b6102df6105463660046125d2565b611549565b6102df610559366004612620565b611586565b6015546102a290610100900460ff1681565b6102bf61057e36600461237e565b6115be565b61032360105481565b6102df61059a3660046125d2565b6116b7565b6102df6105ad3660046125d2565b6116fd565b6102a26105c036600461269c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102df6105fc36600461237e565b611745565b6102df61060f3660046123dd565b611774565b60006001600160e01b0319821663780e9d6360e01b148061063957506106398261180f565b92915050565b60606000805461064e906126c6565b80601f016020809104026020016040519081016040528092919081815260200182805461067a906126c6565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b600a546001600160a01b031633146107045760405162461bcd60e51b81526004016106fb90612700565b60405180910390fd5b600e55565b6000818152600260205260408120546001600160a01b03166107825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fb565b506000908152600460205260409020546001600160a01b031690565b60006107a982610b69565b9050806001600160a01b0316836001600160a01b0316036108165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106fb565b336001600160a01b0382161480610832575061083281336105c0565b6108a45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106fb565b6108ae838361185f565b505050565b600a546001600160a01b031633146108dd5760405162461bcd60e51b81526004016106fb90612700565b600d55565b6108ec33826118cd565b6109085760405162461bcd60e51b81526004016106fb90612735565b6108ae8383836119c0565b600061091e83610c0f565b82106109805760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106fb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ae83838360405180602001604052806000815250611586565b600a546001600160a01b031633146109ee5760405162461bcd60e51b81526004016106fb90612700565b601055565b60606000610a0083610c0f565b905060008167ffffffffffffffff811115610a1d57610a1d612478565b604051908082528060200260200182016040528015610a46578160200160208202803683370190505b50905060005b82811015610a8d57610a5e8582610913565b828281518110610a7057610a70612786565b602090810291909101015280610a85816127b2565b915050610a4c565b509392505050565b6000610aa060085490565b8210610b035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106fb565b60088281548110610b1657610b16612786565b90600052602060002001549050919050565b600a546001600160a01b03163314610b525760405162461bcd60e51b81526004016106fb90612700565b8051610b65906013906020840190612240565b5050565b6000818152600260205260408120546001600160a01b0316806106395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106fb565b600a546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016106fb90612700565b600f55565b60006001600160a01b038216610c7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106fb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cc05760405162461bcd60e51b81526004016106fb90612700565b610cca6000611b6b565b565b600a546001600160a01b03163314610cf65760405162461bcd60e51b81526004016106fb90612700565b600c5481610d0360085490565b610d0d91906127cb565b1115610d6e5760405162461bcd60e51b815260206004820152602a60248201527f41697264726f70206d696e74696e672077696c6c20657863656564206d6178696044820152696d756d20737570706c7960b01b60648201526084016106fb565b6000819003610dbf5760405162461bcd60e51b815260206004820152601d60248201527f41646472657373206e6f7420666f756e6420666f72206d696e74696e6700000060448201526064016106fb565b60005b818110156108ae576000838383818110610dde57610dde612786565b9050602002016020810190610df391906123dd565b6001600160a01b031603610e495760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e6720746f204e756c6c206164647265737300000000000000000060448201526064016106fb565b610e78838383818110610e5e57610e5e612786565b9050602002016020810190610e7391906123dd565b611bbd565b80610e82816127b2565b915050610dc2565b600a546001600160a01b03163314610f955760155460ff16151560011480610ebf575060155462010000900460ff1615156001145b80610ed7575060155460ff6101009091041615156001145b610f335760405162461bcd60e51b815260206004820152602760248201527f53616c65206973206e6f74206f70656e20706c6561736520747279206167616960448201526637103630ba32b960c91b60648201526084016106fb565b60125433311015610f955760405162461bcd60e51b815260206004820152602660248201527f596f75206d75737420686f6c64206d696e696d756d20302e30312045544820746044820152651bc81b5a5b9d60d21b60648201526084016106fb565b60155462010000900460ff16151560010361101957600081118015610fcf575060115481610fc233610c0f565b610fcc91906127cb565b11155b610feb5760405162461bcd60e51b81526004016106fb906127e3565b601154610ff733610c0f565b106110145760405162461bcd60e51b81526004016106fb90612839565b6110f3565b601554610100900460ff16151560010361107a5760008111801561105257506010548161104533610c0f565b61104f91906127cb565b11155b61106e5760405162461bcd60e51b81526004016106fb906127e3565b601054610ff733610c0f565b60155460ff1615156001036110f3576000811180156110ae5750600f54816110a133610c0f565b6110ab91906127cb565b11155b6110ca5760405162461bcd60e51b81526004016106fb906127e3565b600f546110d633610c0f565b106110f35760405162461bcd60e51b81526004016106fb90612839565b60155462010000900460ff16151560010361117257600d548161111560085490565b61111f91906127cb565b111561116d5760405162461bcd60e51b815260206004820152601a60248201527f416c6c20507269766174652053656c6c204e46547320736f6c6400000000000060448201526064016106fb565b6112c1565b601554610100900460ff16151560010361125d57600e548161119360085490565b61119d91906127cb565b11156111e35760405162461bcd60e51b8152602060048201526015602482015274105b1b08141c995cd85b19481391951cc81cdbdb19605a1b60448201526064016106fb565b6015546301000000900460ff16151560010361116d573360009081526014602052604090205460ff16151560011461116d5760405162461bcd60e51b815260206004820152601b60248201527f4e6f742077686974656c736974656420666f722050726573616c65000000000060448201526064016106fb565b60155460ff1615156001036112c157600c548161127960085490565b61128391906127cb565b11156112c15760405162461bcd60e51b815260206004820152600d60248201526c105b1b081391951cc81cdbdb19609a1b60448201526064016106fb565b3360005b828110156108ae576112d682611bbd565b806112e0816127b2565b9150506112c5565b600a546001600160a01b031633146113125760405162461bcd60e51b81526004016106fb90612700565b601155565b60606001805461064e906126c6565b600a546001600160a01b031633146113505760405162461bcd60e51b81526004016106fb90612700565b601580549115156101000261ff0019909216919091179055565b336001600160a01b038316036113c25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106fb565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114585760405162461bcd60e51b81526004016106fb90612700565b60005b818110156108ae57600083838381811061147757611477612786565b905060200201602081019061148c91906123dd565b6001600160a01b0316036114e25760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064016106fb565b6001601460008585858181106114fa576114fa612786565b905060200201602081019061150f91906123dd565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611541816127b2565b91505061145b565b600a546001600160a01b031633146115735760405162461bcd60e51b81526004016106fb90612700565b6015805460ff1916911515919091179055565b61159033836118cd565b6115ac5760405162461bcd60e51b81526004016106fb90612735565b6115b884848484611c19565b50505050565b6000818152600260205260409020546060906001600160a01b031661163d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106fb565b6000611647611c4c565b604080518082019091526005815264173539b7b760d91b602082015281519192509061168257604051806020016040528060008152506116af565b8161168c85611c5b565b8260405160200161169f9392919061288f565b6040516020818303038152906040525b949350505050565b600a546001600160a01b031633146116e15760405162461bcd60e51b81526004016106fb90612700565b60158054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146117275760405162461bcd60e51b81526004016106fb90612700565b6015805491151563010000000263ff00000019909216919091179055565b600a546001600160a01b0316331461176f5760405162461bcd60e51b81526004016106fb90612700565b601255565b600a546001600160a01b0316331461179e5760405162461bcd60e51b81526004016106fb90612700565b6001600160a01b0381166118035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106fb565b61180c81611b6b565b50565b60006001600160e01b031982166380ac58cd60e01b148061184057506001600160e01b03198216635b5e139f60e01b145b8061063957506301ffc9a760e01b6001600160e01b0319831614610639565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189482610b69565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106fb565b600061195183610b69565b9050806001600160a01b0316846001600160a01b0316148061198c5750836001600160a01b031661198184610709565b6001600160a01b0316145b806116af57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116af565b826001600160a01b03166119d382610b69565b6001600160a01b031614611a3b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106fb565b6001600160a01b038216611a9d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106fb565b611aa8838383611d5c565b611ab360008261185f565b6001600160a01b0383166000908152600360205260408120805460019290611adc9084906128d2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0a9084906127cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611bc8600b5490565b9050611bd48282611e14565b611be2600b80546001019055565b6040518181527fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf1598689060200160405180910390a15050565b611c248484846119c0565b611c3084848484611e2e565b6115b85760405162461bcd60e51b81526004016106fb906128e9565b60606013805461064e906126c6565b606081600003611c825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cac5780611c96816127b2565b9150611ca59050600a83612951565b9150611c86565b60008167ffffffffffffffff811115611cc757611cc7612478565b6040519080825280601f01601f191660200182016040528015611cf1576020820181803683370190505b5090505b84156116af57611d066001836128d2565b9150611d13600a86612965565b611d1e9060306127cb565b60f81b818381518110611d3357611d33612786565b60200101906001600160f81b031916908160001a905350611d55600a86612951565b9450611cf5565b6001600160a01b038316611db757611db281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dda565b816001600160a01b0316836001600160a01b031614611dda57611dda8382611f2f565b6001600160a01b038216611df1576108ae81611fcc565b826001600160a01b0316826001600160a01b0316146108ae576108ae828261207b565b610b658282604051806020016040528060008152506120bf565b60006001600160a01b0384163b15611f2457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e72903390899088908890600401612979565b6020604051808303816000875af1925050508015611ead575060408051601f3d908101601f19168201909252611eaa918101906129b6565b60015b611f0a573d808015611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b508051600003611f025760405162461bcd60e51b81526004016106fb906128e9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116af565b506001949350505050565b60006001611f3c84610c0f565b611f4691906128d2565b600083815260076020526040902054909150808214611f99576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fde906001906128d2565b6000838152600960205260408120546008805493945090928490811061200657612006612786565b90600052602060002001549050806008838154811061202757612027612786565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205f5761205f6129d3565b6001900381819060005260206000200160009055905550505050565b600061208683610c0f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6120c983836120f2565b6120d66000848484611e2e565b6108ae5760405162461bcd60e51b81526004016106fb906128e9565b6001600160a01b0382166121485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106fb565b6000818152600260205260409020546001600160a01b0316156121ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106fb565b6121b960008383611d5c565b6001600160a01b03821660009081526003602052604081208054600192906121e29084906127cb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224c906126c6565b90600052602060002090601f01602090048101928261226e57600085556122b4565b82601f1061228757805160ff19168380011785556122b4565b828001600101855582156122b4579182015b828111156122b4578251825591602001919060010190612299565b506122c09291506122c4565b5090565b5b808211156122c057600081556001016122c5565b6001600160e01b03198116811461180c57600080fd5b60006020828403121561230157600080fd5b813561230c816122d9565b9392505050565b60005b8381101561232e578181015183820152602001612316565b838111156115b85750506000910152565b60008151808452612357816020860160208601612313565b601f01601f19169290920160200192915050565b60208152600061230c602083018461233f565b60006020828403121561239057600080fd5b5035919050565b80356001600160a01b03811681146123ae57600080fd5b919050565b600080604083850312156123c657600080fd5b6123cf83612397565b946020939093013593505050565b6000602082840312156123ef57600080fd5b61230c82612397565b60008060006060848603121561240d57600080fd5b61241684612397565b925061242460208501612397565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561246c57835183529284019291840191600101612450565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156124a9576124a9612478565b604051601f8501601f19908116603f011681019082821181831017156124d1576124d1612478565b816040528093508581528686860111156124ea57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251657600080fd5b813567ffffffffffffffff81111561252d57600080fd5b8201601f8101841361253e57600080fd5b6116af8482356020840161248e565b6000806020838503121561256057600080fd5b823567ffffffffffffffff8082111561257857600080fd5b818501915085601f83011261258c57600080fd5b81358181111561259b57600080fd5b8660208260051b85010111156125b057600080fd5b60209290920196919550909350505050565b803580151581146123ae57600080fd5b6000602082840312156125e457600080fd5b61230c826125c2565b6000806040838503121561260057600080fd5b61260983612397565b9150612617602084016125c2565b90509250929050565b6000806000806080858703121561263657600080fd5b61263f85612397565b935061264d60208601612397565b925060408501359150606085013567ffffffffffffffff81111561267057600080fd5b8501601f8101871361268157600080fd5b6126908782356020840161248e565b91505092959194509250565b600080604083850312156126af57600080fd5b6126b883612397565b915061261760208401612397565b600181811c908216806126da57607f821691505b6020821081036126fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016127c4576127c461279c565b5060010190565b600082198211156127de576127de61279c565b500190565b60208082526036908201527f596f752068617665207265616368656420746865204e4654206d696e74696e67604082015275103634b6b4ba103832b9103a3930b739b0b1ba34b7b760511b606082015260800190565b60208082526036908201527f596f7520686176652072656163686564206d6178696d756d204e4654206d696e6040820152751d1a5b99c81b1a5b5a5d081c195c881858d8dbdd5b9d60521b606082015260800190565b600084516128a1818460208901612313565b8451908301906128b5818360208901612313565b84519101906128c8818360208801612313565b0195945050505050565b6000828210156128e4576128e461279c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826129605761296061293b565b500490565b6000826129745761297461293b565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ac9083018461233f565b9695505050505050565b6000602082840312156129c857600080fd5b815161230c816122d9565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fc9a47e761183e2571aa378443d9cfda9e818af28d42ba9cb1e9ed0e346b891864736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d654b754833466a5466674c6345756b41535550514345584638664e6f334e77785238373473467561347545322f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmeKuH3FjTfgLcEukASUPQCEXF8fNo3NwxR874sFua4uE2/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d654b754833466a5466
Arg [3] : 674c6345756b41535550514345584638664e6f334e7778523837347346756134
Arg [4] : 7545322f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46384:6428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39920:300;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39920:300:0;;;;;;;;27030:100;;;:::i;:::-;;;;;;;:::i;48413:134::-;;;;;;:::i;:::-;;:::i;:::-;;28773:308;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28773:308:0;1528:203:1;28296:411:0;;;;;;:::i;:::-;;:::i;40723:113::-;40811:10;:17;40723:113;;;2319:25:1;;;2307:2;2292:18;40723:113:0;2173:177:1;52365:121:0;;;;;;:::i;:::-;-1:-1:-1;;;;;52456:22:0;52432:4;52456:22;;;:16;:22;;;;;;;;;52365:121;48255:150;;;;;;:::i;:::-;;:::i;46594:41::-;;;;;;29832:376;;;;;;:::i;:::-;;:::i;40304:343::-;;;;;;:::i;:::-;;:::i;46554:33::-;;;;;;47081:44;;;;;;;;;;;;30279:185;;;;;;:::i;:::-;;:::i;47957:133::-;;;;;;:::i;:::-;;:::i;47339:385::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46769:43::-;;;;;;40913:320;;;;;;:::i;:::-;;:::i;47732:101::-;;;;;;:::i;:::-;;:::i;46819:46::-;;;;;;26637:326;;;;;;:::i;:::-;;:::i;47039:35::-;;;;;;;;;;;;47841:104;;;;;;:::i;:::-;;:::i;26280:295::-;;;;;;:::i;:::-;;:::i;9737:94::-;;;:::i;51579:491::-;;;;;;:::i;:::-;;:::i;9086:87::-;9159:6;;-1:-1:-1;;;;;9159:6:0;9086:87;;49258:2309;;;;;;:::i;:::-;;:::i;48098:149::-;;;;;;:::i;:::-;;:::i;27199:104::-;;;:::i;46966:28::-;;;;;;;;;46687:30;;;;;;48879:95;;;;;;:::i;:::-;;:::i;46642:38::-;;;;;;29153:327;;;;;;:::i;:::-;;:::i;52078:279::-;;;;;;:::i;:::-;;:::i;48998:89::-;;;;;;:::i;:::-;;:::i;30535:365::-;;;;;;:::i;:::-;;:::i;47001:31::-;;;;;;;;;;;;27374:518;;;;;;:::i;:::-;;:::i;46724:38::-;;;;;;48749:103;;;;;;:::i;:::-;;:::i;48561:157::-;;;;;;:::i;:::-;;:::i;29551:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29722:25:0;;;29693:4;29722:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29551:214;49095:134;;;;;;:::i;:::-;;:::i;9986:229::-;;;;;;:::i;:::-;;:::i;39920:300::-;40067:4;-1:-1:-1;;;;;;40109:50:0;;-1:-1:-1;;;40109:50:0;;:103;;;40176:36;40200:11;40176:23;:36::i;:::-;40089:123;39920:300;-1:-1:-1;;39920:300:0:o;27030:100::-;27084:13;27117:5;27110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27030:100;:::o;48413:134::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;;;;;;;;;48501:16:::1;:38:::0;48413:134::o;28773:308::-;28894:7;32536:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32536:16:0;28919:110;;;;-1:-1:-1;;;28919:110:0;;7855:2:1;28919:110:0;;;7837:21:1;7894:2;7874:18;;;7867:30;7933:34;7913:18;;;7906:62;-1:-1:-1;;;7984:18:1;;;7977:42;8036:19;;28919:110:0;7653:408:1;28919:110:0;-1:-1:-1;29049:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29049:24:0;;28773:308::o;28296:411::-;28377:13;28393:23;28408:7;28393:14;:23::i;:::-;28377:39;;28441:5;-1:-1:-1;;;;;28435:11:0;:2;-1:-1:-1;;;;;28435:11:0;;28427:57;;;;-1:-1:-1;;;28427:57:0;;8268:2:1;28427:57:0;;;8250:21:1;8307:2;8287:18;;;8280:30;8346:34;8326:18;;;8319:62;-1:-1:-1;;;8397:18:1;;;8390:31;8438:19;;28427:57:0;8066:397:1;28427:57:0;2139:10;-1:-1:-1;;;;;28519:21:0;;;;:62;;-1:-1:-1;28544:37:0;28561:5;2139:10;29551:214;:::i;28544:37::-;28497:168;;;;-1:-1:-1;;;28497:168:0;;8670:2:1;28497:168:0;;;8652:21:1;8709:2;8689:18;;;8682:30;8748:34;8728:18;;;8721:62;8819:26;8799:18;;;8792:54;8863:19;;28497:168:0;8468:420:1;28497:168:0;28678:21;28687:2;28691:7;28678:8;:21::i;:::-;28366:341;28296:411;;:::o;48255:150::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;48351:20:::1;:46:::0;48255:150::o;29832:376::-;30041:41;2139:10;30074:7;30041:18;:41::i;:::-;30019:140;;;;-1:-1:-1;;;30019:140:0;;;;;;;:::i;:::-;30172:28;30182:4;30188:2;30192:7;30172:9;:28::i;40304:343::-;40446:7;40501:23;40518:5;40501:16;:23::i;:::-;40493:5;:31;40471:124;;;;-1:-1:-1;;;40471:124:0;;9513:2:1;40471:124:0;;;9495:21:1;9552:2;9532:18;;;9525:30;9591:34;9571:18;;;9564:62;-1:-1:-1;;;9642:18:1;;;9635:41;9693:19;;40471:124:0;9311:407:1;40471:124:0;-1:-1:-1;;;;;;40613:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40304:343::o;30279:185::-;30417:39;30434:4;30440:2;30444:7;30417:39;;;;;;;;;;;;:16;:39::i;47957:133::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;48042:19:::1;:40:::0;47957:133::o;47339:385::-;47428:16;47462:18;47483:17;47493:6;47483:9;:17::i;:::-;47462:38;;47513:25;47555:10;47541:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47541:25:0;;47513:53;;47582:9;47577:112;47601:10;47597:1;:14;47577:112;;;47647:30;47667:6;47675:1;47647:19;:30::i;:::-;47633:8;47642:1;47633:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47613:3;;;;:::i;:::-;;;;47577:112;;;-1:-1:-1;47708:8:0;47339:385;-1:-1:-1;;;47339:385:0:o;40913:320::-;41033:7;41088:30;40811:10;:17;;40723:113;41088:30;41080:5;:38;41058:132;;;;-1:-1:-1;;;41058:132:0;;10329:2:1;41058:132:0;;;10311:21:1;10368:2;10348:18;;;10341:30;10407:34;10387:18;;;10380:62;-1:-1:-1;;;10458:18:1;;;10451:42;10510:19;;41058:132:0;10127:408:1;41058:132:0;41208:10;41219:5;41208:17;;;;;;;;:::i;:::-;;;;;;;;;41201:24;;40913:320;;;:::o;47732:101::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;47803:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47732:101:::0;:::o;26637:326::-;26754:7;26795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26795:16:0;;26822:110;;;;-1:-1:-1;;;26822:110:0;;10742:2:1;26822:110:0;;;10724:21:1;10781:2;10761:18;;;10754:30;10820:34;10800:18;;;10793:62;-1:-1:-1;;;10871:18:1;;;10864:39;10920:19;;26822:110:0;10540:405:1;47841:104:0;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;47912:11:::1;:25:::0;47841:104::o;26280:295::-;26397:7;-1:-1:-1;;;;;26444:19:0;;26422:111;;;;-1:-1:-1;;;26422:111:0;;11152:2:1;26422:111:0;;;11134:21:1;11191:2;11171:18;;;11164:30;11230:34;11210:18;;;11203:62;-1:-1:-1;;;11281:18:1;;;11274:40;11331:19;;26422:111:0;10950:406:1;26422:111:0;-1:-1:-1;;;;;;26551:16:0;;;;;:9;:16;;;;;;;26280:295::o;9737:94::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;9802:21:::1;9820:1;9802:9;:21::i;:::-;9737:94::o:0;51579:491::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;51719:10:::1;::::0;51696:11;51680:13:::1;40811:10:::0;:17;;40723:113;51680:13:::1;:34;;;;:::i;:::-;:50;;51658:142;;;::::0;-1:-1:-1;;;51658:142:0;;11696:2:1;51658:142:0::1;::::0;::::1;11678:21:1::0;11735:2;11715:18;;;11708:30;11774:34;11754:18;;;11747:62;-1:-1:-1;;;11825:18:1;;;11818:40;11875:19;;51658:142:0::1;11494:406:1::0;51658:142:0::1;51841:1;51819:23:::0;;;51811:65:::1;;;::::0;-1:-1:-1;;;51811:65:0;;12107:2:1;51811:65:0::1;::::0;::::1;12089:21:1::0;12146:2;12126:18;;;12119:30;12185:31;12165:18;;;12158:59;12234:18;;51811:65:0::1;11905:353:1::0;51811:65:0::1;51892:9;51887:176;51907:22:::0;;::::1;51887:176;;;51985:1;51959:11:::0;;51971:1;51959:14;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51959:28:0::1;::::0;51951:64:::1;;;::::0;-1:-1:-1;;;51951:64:0;;12465:2:1;51951:64:0::1;::::0;::::1;12447:21:1::0;12504:2;12484:18;;;12477:30;12543:25;12523:18;;;12516:53;12586:18;;51951:64:0::1;12263:347:1::0;51951:64:0::1;52030:21;52036:11;;52048:1;52036:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52030:5;:21::i;:::-;51931:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51887:176;;49258:2309:::0;9159:6;;-1:-1:-1;;;;;9159:6:0;49313:10;:21;49309:312;;49360:8;;;;:16;;:8;:16;;:43;;-1:-1:-1;49380:15:0;;;;;;;:23;;49399:4;49380:23;49360:43;:66;;;-1:-1:-1;49407:11:0;;;;;;;;:19;;:11;:19;49360:66;49351:120;;;;-1:-1:-1;;;49351:120:0;;12817:2:1;49351:120:0;;;12799:21:1;12856:2;12836:18;;;12829:30;12895:34;12875:18;;;12868:62;-1:-1:-1;;;12946:18:1;;;12939:37;12993:19;;49351:120:0;12615:403:1;49351:120:0;49516:18;;49494:10;:18;:40;;49486:90;;;;-1:-1:-1;;;49486:90:0;;13225:2:1;49486:90:0;;;13207:21:1;13264:2;13244:18;;;13237:30;13303:34;13283:18;;;13276:62;-1:-1:-1;;;13354:18:1;;;13347:36;13400:19;;49486:90:0;13023:402:1;49486:90:0;49644:15;;;;;;;:23;;49663:4;49644:23;49641:1065;;49718:1;49709:6;:10;:71;;;;;49757:23;;49746:6;49724:21;49734:10;49724:9;:21::i;:::-;:28;;;;:::i;:::-;49723:57;;49709:71;49683:183;;;;-1:-1:-1;;;49683:183:0;;;;;;;:::i;:::-;49913:23;;49889:21;49899:10;49889:9;:21::i;:::-;:47;49881:114;;;;-1:-1:-1;;;49881:114:0;;;;;;;:::i;:::-;49641:1065;;;50015:11;;;;;;;:19;;:11;:19;50012:694;;50085:1;50076:6;:10;:67;;;;;50124:19;;50113:6;50091:21;50101:10;50091:9;:21::i;:::-;:28;;;;:::i;:::-;50090:53;;50076:67;50050:179;;;;-1:-1:-1;;;50050:179:0;;;;;;;:::i;:::-;50276:19;;50252:21;50262:10;50252:9;:21::i;50012:694::-;50374:8;;;;:16;;:8;:16;50371:335;;50441:1;50432:6;:10;:59;;;;;50480:11;;50469:6;50447:21;50457:10;50447:9;:21::i;:::-;:28;;;;:::i;:::-;50446:45;;50432:59;50406:171;;;;-1:-1:-1;;;50406:171:0;;;;;;;:::i;:::-;50624:11;;50600:21;50610:10;50600:9;:21::i;:::-;:35;50592:102;;;;-1:-1:-1;;;50592:102:0;;;;;;;:::i;:::-;50729:15;;;;;;;:23;;50748:4;50729:23;50726:701;;50821:20;;50810:6;50794:13;40811:10;:17;;40723:113;50794:13;:22;;;;:::i;:::-;:48;;50768:136;;;;-1:-1:-1;;;50768:136:0;;14478:2:1;50768:136:0;;;14460:21:1;14517:2;14497:18;;;14490:30;14556:28;14536:18;;;14529:56;14602:18;;50768:136:0;14276:350:1;50768:136:0;50726:701;;;50924:11;;;;;;;:19;;:11;:19;50921:506;;51012:16;;51001:6;50985:13;40811:10;:17;;40723:113;50985:13;:22;;;;:::i;:::-;:44;;50959:127;;;;-1:-1:-1;;;50959:127:0;;14833:2:1;50959:127:0;;;14815:21:1;14872:2;14852:18;;;14845:30;-1:-1:-1;;;14891:18:1;;;14884:51;14952:18;;50959:127:0;14631:345:1;50959:127:0;51106:24;;;;;;;:32;;51134:4;51106:32;51103:148;;51184:10;51167:28;;;;:16;:28;;;;;;;;:36;;:28;:36;51159:76;;;;-1:-1:-1;;;51159:76:0;;15183:2:1;51159:76:0;;;15165:21:1;15222:2;15202:18;;;15195:30;15261:29;15241:18;;;15234:57;15308:18;;51159:76:0;14981:351:1;50921:506:0;51270:8;;;;:16;;:8;:16;51267:160;;51355:10;;51344:6;51328:13;40811:10;:17;;40723:113;51328:13;:22;;;;:::i;:::-;:38;;51302:113;;;;-1:-1:-1;;;51302:113:0;;15539:2:1;51302:113:0;;;15521:21:1;15578:2;15558:18;;;15551:30;-1:-1:-1;;;15597:18:1;;;15590:43;15650:18;;51302:113:0;15337:337:1;51302:113:0;51463:10;51449:11;51486:74;51510:6;51506:1;:10;51486:74;;;51538:10;51544:3;51538:5;:10::i;:::-;51518:3;;;;:::i;:::-;;;;51486:74;;48098:149;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;48191:23:::1;:48:::0;48098:149::o;27199:104::-;27255:13;27288:7;27281:14;;;;;:::i;48879:95::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;48945:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;48945:21:0;;::::1;::::0;;;::::1;::::0;;48879:95::o;29153:327::-;2139:10;-1:-1:-1;;;;;29288:24:0;;;29280:62;;;;-1:-1:-1;;;29280:62:0;;15881:2:1;29280:62:0;;;15863:21:1;15920:2;15900:18;;;15893:30;15959:27;15939:18;;;15932:55;16004:18;;29280:62:0;15679:349:1;29280:62:0;2139:10;29355:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29355:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29355:53:0;;;;;;;;;;29424:48;;540:41:1;;;29355:42:0;;2139:10;29424:48;;513:18:1;29424:48:0;;;;;;;29153:327;;:::o;52078:279::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;52165:9:::1;52160:190;52180:20:::0;;::::1;52160:190;;;52254:1;52230:9:::0;;52240:1;52230:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52230:26:0::1;::::0;52222:62:::1;;;::::0;-1:-1:-1;;;52222:62:0;;16235:2:1;52222:62:0::1;::::0;::::1;16217:21:1::0;16274:2;16254:18;;;16247:30;16313:25;16293:18;;;16286:53;16356:18;;52222:62:0::1;16033:347:1::0;52222:62:0::1;52334:4;52301:16;:30;52318:9;;52328:1;52318:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52301:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52301:30:0;:37;;-1:-1:-1;;52301:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52202:3;::::1;::::0;::::1;:::i;:::-;;;;52160:190;;48998:89:::0;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;49061:8:::1;:18:::0;;-1:-1:-1;;49061:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48998:89::o;30535:365::-;30724:41;2139:10;30757:7;30724:18;:41::i;:::-;30702:140;;;;-1:-1:-1;;;30702:140:0;;;;;;;:::i;:::-;30853:39;30867:4;30873:2;30877:7;30886:5;30853:13;:39::i;:::-;30535:365;;;;:::o;27374:518::-;32512:4;32536:16;;;:7;:16;;;;;;27492:13;;-1:-1:-1;;;;;32536:16:0;27523:113;;;;-1:-1:-1;;;27523:113:0;;16587:2:1;27523:113:0;;;16569:21:1;16626:2;16606:18;;;16599:30;16665:34;16645:18;;;16638:62;-1:-1:-1;;;16716:18:1;;;16709:45;16771:19;;27523:113:0;16385:411:1;27523:113:0;27657:27;27687:10;:8;:10::i;:::-;27708:28;;;;;;;;;;;;-1:-1:-1;;;27708:28:0;;;;27754:27;;27657:40;;-1:-1:-1;27708:28:0;27754:130;;;;;;;;;;;;;;;;;27825:13;27840:18;:7;:16;:18::i;:::-;27860:4;27808:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27754:130;27747:137;27374:518;-1:-1:-1;;;;27374:518:0:o;48749:103::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;48819:15:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48819:25:0;;::::1;::::0;;;::::1;::::0;;48749:103::o;48561:157::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;48658:24:::1;:52:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48658:52:0;;::::1;::::0;;;::::1;::::0;;48561:157::o;49095:134::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;49181:18:::1;:40:::0;49095:134::o;9986:229::-;9159:6;;-1:-1:-1;;;;;9159:6:0;2139:10;9306:23;9298:68;;;;-1:-1:-1;;;9298:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10089:22:0;::::1;10067:110;;;::::0;-1:-1:-1;;;10067:110:0;;17672:2:1;10067:110:0::1;::::0;::::1;17654:21:1::0;17711:2;17691:18;;;17684:30;17750:34;17730:18;;;17723:62;-1:-1:-1;;;17801:18:1;;;17794:36;17847:19;;10067:110:0::1;17470:402:1::0;10067:110:0::1;10188:19;10198:8;10188:9;:19::i;:::-;9986:229:::0;:::o;25861:355::-;26008:4;-1:-1:-1;;;;;;26050:40:0;;-1:-1:-1;;;26050:40:0;;:105;;-1:-1:-1;;;;;;;26107:48:0;;-1:-1:-1;;;26107:48:0;26050:105;:158;;;-1:-1:-1;;;;;;;;;;12366:40:0;;;26172:36;12207:207;36570:174;36645:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36645:29:0;-1:-1:-1;;;;;36645:29:0;;;;;;;;:24;;36699:23;36645:24;36699:14;:23::i;:::-;-1:-1:-1;;;;;36690:46:0;;;;;;;;;;;36570:174;;:::o;32741:452::-;32870:4;32536:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32536:16:0;32892:110;;;;-1:-1:-1;;;32892:110:0;;18079:2:1;32892:110:0;;;18061:21:1;18118:2;18098:18;;;18091:30;18157:34;18137:18;;;18130:62;-1:-1:-1;;;18208:18:1;;;18201:42;18260:19;;32892:110:0;17877:408:1;32892:110:0;33013:13;33029:23;33044:7;33029:14;:23::i;:::-;33013:39;;33082:5;-1:-1:-1;;;;;33071:16:0;:7;-1:-1:-1;;;;;33071:16:0;;:64;;;;33128:7;-1:-1:-1;;;;;33104:31:0;:20;33116:7;33104:11;:20::i;:::-;-1:-1:-1;;;;;33104:31:0;;33071:64;:113;;;-1:-1:-1;;;;;;29722:25:0;;;29693:4;29722:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33152:32;29551:214;35837:615;36010:4;-1:-1:-1;;;;;35983:31:0;:23;35998:7;35983:14;:23::i;:::-;-1:-1:-1;;;;;35983:31:0;;35961:122;;;;-1:-1:-1;;;35961:122:0;;18492:2:1;35961:122:0;;;18474:21:1;18531:2;18511:18;;;18504:30;18570:34;18550:18;;;18543:62;-1:-1:-1;;;18621:18:1;;;18614:39;18670:19;;35961:122:0;18290:405:1;35961:122:0;-1:-1:-1;;;;;36102:16:0;;36094:65;;;;-1:-1:-1;;;36094:65:0;;18902:2:1;36094:65:0;;;18884:21:1;18941:2;18921:18;;;18914:30;18980:34;18960:18;;;18953:62;-1:-1:-1;;;19031:18:1;;;19024:34;19075:19;;36094:65:0;18700:400:1;36094:65:0;36172:39;36193:4;36199:2;36203:7;36172:20;:39::i;:::-;36276:29;36293:1;36297:7;36276:8;:29::i;:::-;-1:-1:-1;;;;;36318:15:0;;;;;;:9;:15;;;;;:20;;36337:1;;36318:15;:20;;36337:1;;36318:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36349:13:0;;;;;;:9;:13;;;;;:18;;36366:1;;36349:13;:18;;36366:1;;36349:18;:::i;:::-;;;;-1:-1:-1;;36378:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36378:21:0;-1:-1:-1;;;;;36378:21:0;;;;;;;;;36417:27;;36378:16;;36417:27;;;;;;;35837:615;;;:::o;10223:173::-;10298:6;;;-1:-1:-1;;;;;10315:17:0;;;-1:-1:-1;;;;;;10315:17:0;;;;;;;10348:40;;10298:6;;;10315:17;10298:6;;10348:40;;10279:16;;10348:40;10268:128;10223:173;:::o;52498:190::-;52545:15;52563:18;:8;938:14;;846:114;52563:18;52545:36;;52592:23;52602:3;52607:7;52592:9;:23::i;:::-;52626:20;:8;1057:19;;1075:1;1057:19;;;968:127;52626:20;52662:18;;2319:25:1;;;52662:18:0;;2307:2:1;2292:18;52662::0;;;;;;;52534:154;52498:190;:::o;31782:352::-;31939:28;31949:4;31955:2;31959:7;31939:9;:28::i;:::-;32000:48;32023:4;32029:2;32033:7;32042:5;32000:22;:48::i;:::-;31978:148;;;;-1:-1:-1;;;31978:148:0;;;;;;;:::i;52696:113::-;52756:13;52789:12;52782:19;;;;;:::i;12728:723::-;12784:13;13005:5;13014:1;13005:10;13001:53;;-1:-1:-1;;13032:10:0;;;;;;;;;;;;-1:-1:-1;;;13032:10:0;;;;;12728:723::o;13001:53::-;13079:5;13064:12;13120:78;13127:9;;13120:78;;13153:8;;;;:::i;:::-;;-1:-1:-1;13176:10:0;;-1:-1:-1;13184:2:0;13176:10;;:::i;:::-;;;13120:78;;;13208:19;13240:6;13230:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13230:17:0;;13208:39;;13258:154;13265:10;;13258:154;;13292:11;13302:1;13292:11;;:::i;:::-;;-1:-1:-1;13361:10:0;13369:2;13361:5;:10;:::i;:::-;13348:24;;:2;:24;:::i;:::-;13335:39;;13318:6;13325;13318:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13318:56:0;;;;;;;;-1:-1:-1;13389:11:0;13398:2;13389:11;;:::i;:::-;;;13258:154;;41846:589;-1:-1:-1;;;;;42052:18:0;;42048:187;;42087:40;42119:7;43262:10;:17;;43235:24;;;;:15;:24;;;;;:44;;;43290:24;;;;;;;;;;;;43158:164;42087:40;42048:187;;;42157:2;-1:-1:-1;;;;;42149:10:0;:4;-1:-1:-1;;;;;42149:10:0;;42145:90;;42176:47;42209:4;42215:7;42176:32;:47::i;:::-;-1:-1:-1;;;;;42249:16:0;;42245:183;;42282:45;42319:7;42282:36;:45::i;42245:183::-;42355:4;-1:-1:-1;;;;;42349:10:0;:2;-1:-1:-1;;;;;42349:10:0;;42345:83;;42376:40;42404:2;42408:7;42376:27;:40::i;33535:110::-;33611:26;33621:2;33625:7;33611:26;;;;;;;;;;;;:9;:26::i;37309:984::-;37464:4;-1:-1:-1;;;;;37485:13:0;;15604:20;15652:8;37481:805;;37538:175;;-1:-1:-1;;;37538:175:0;;-1:-1:-1;;;;;37538:36:0;;;;;:175;;2139:10;;37632:4;;37659:7;;37689:5;;37538:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37538:175:0;;;;;;;;-1:-1:-1;;37538:175:0;;;;;;;;;;;;:::i;:::-;;;37517:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37900:6;:13;37917:1;37900:18;37896:320;;37943:108;;-1:-1:-1;;;37943:108:0;;;;;;;:::i;37896:320::-;38166:6;38160:13;38151:6;38147:2;38143:15;38136:38;37517:714;-1:-1:-1;;;;;;37777:55:0;-1:-1:-1;;;37777:55:0;;-1:-1:-1;37770:62:0;;37481:805;-1:-1:-1;38270:4:0;37309:984;;;;;;:::o;43949:1002::-;44229:22;44279:1;44254:22;44271:4;44254:16;:22::i;:::-;:26;;;;:::i;:::-;44291:18;44312:26;;;:17;:26;;;;;;44229:51;;-1:-1:-1;44445:28:0;;;44441:328;;-1:-1:-1;;;;;44512:18:0;;44490:19;44512:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44563:30;;;;;;:44;;;44680:30;;:17;:30;;;;;:43;;;44441:328;-1:-1:-1;44865:26:0;;;;:17;:26;;;;;;;;44858:33;;;-1:-1:-1;;;;;44909:18:0;;;;;:12;:18;;;;;:34;;;;;;;44902:41;43949:1002::o;45246:1079::-;45524:10;:17;45499:22;;45524:21;;45544:1;;45524:21;:::i;:::-;45556:18;45577:24;;;:15;:24;;;;;;45950:10;:26;;45499:46;;-1:-1:-1;45577:24:0;;45499:46;;45950:26;;;;;;:::i;:::-;;;;;;;;;45928:48;;46014:11;45989:10;46000;45989:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46094:28;;;:15;:28;;;;;;;:41;;;46266:24;;;;;46259:31;46301:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45317:1008;;;45246:1079;:::o;42736:221::-;42821:14;42838:20;42855:2;42838:16;:20::i;:::-;-1:-1:-1;;;;;42869:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42914:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42736:221:0:o;33872:321::-;34002:18;34008:2;34012:7;34002:5;:18::i;:::-;34053:54;34084:1;34088:2;34092:7;34101:5;34053:22;:54::i;:::-;34031:154;;;;-1:-1:-1;;;34031:154:0;;;;;;;:::i;34529:382::-;-1:-1:-1;;;;;34609:16:0;;34601:61;;;;-1:-1:-1;;;34601:61:0;;21110:2:1;34601:61:0;;;21092:21:1;;;21129:18;;;21122:30;21188:34;21168:18;;;21161:62;21240:18;;34601:61:0;20908:356:1;34601:61:0;32512:4;32536:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32536:16:0;:30;34673:58;;;;-1:-1:-1;;;34673:58:0;;21471:2:1;34673:58:0;;;21453:21:1;21510:2;21490:18;;;21483:30;21549;21529:18;;;21522:58;21597:18;;34673:58:0;21269:352:1;34673:58:0;34744:45;34773:1;34777:2;34781:7;34744:20;:45::i;:::-;-1:-1:-1;;;;;34802:13:0;;;;;;:9;:13;;;;;:18;;34819:1;;34802:13;:18;;34819:1;;34802:18;:::i;:::-;;;;-1:-1:-1;;34831:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34831:21:0;-1:-1:-1;;;;;34831:21:0;;;;;;;;34870:33;;34831:16;;;34870:33;;34831:16;;34870:33;34529:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:615::-;4827:6;4835;4888:2;4876:9;4867:7;4863:23;4859:32;4856:52;;;4904:1;4901;4894:12;4856:52;4944:9;4931:23;4973:18;5014:2;5006:6;5003:14;5000:34;;;5030:1;5027;5020:12;5000:34;5068:6;5057:9;5053:22;5043:32;;5113:7;5106:4;5102:2;5098:13;5094:27;5084:55;;5135:1;5132;5125:12;5084:55;5175:2;5162:16;5201:2;5193:6;5190:14;5187:34;;;5217:1;5214;5207:12;5187:34;5270:7;5265:2;5255:6;5252:1;5248:14;5244:2;5240:23;5236:32;5233:45;5230:65;;;5291:1;5288;5281:12;5230:65;5322:2;5314:11;;;;;5344:6;;-1:-1:-1;4741:615:1;;-1:-1:-1;;;;4741:615:1:o;5361:160::-;5426:20;;5482:13;;5475:21;5465:32;;5455:60;;5511:1;5508;5501:12;5526:180;5582:6;5635:2;5623:9;5614:7;5610:23;5606:32;5603:52;;;5651:1;5648;5641:12;5603:52;5674:26;5690:9;5674:26;:::i;5711:254::-;5776:6;5784;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;5876:29;5895:9;5876:29;:::i;:::-;5866:39;;5924:35;5955:2;5944:9;5940:18;5924:35;:::i;:::-;5914:45;;5711:254;;;;;:::o;5970:667::-;6065:6;6073;6081;6089;6142:3;6130:9;6121:7;6117:23;6113:33;6110:53;;;6159:1;6156;6149:12;6110:53;6182:29;6201:9;6182:29;:::i;:::-;6172:39;;6230:38;6264:2;6253:9;6249:18;6230:38;:::i;:::-;6220:48;;6315:2;6304:9;6300:18;6287:32;6277:42;;6370:2;6359:9;6355:18;6342:32;6397:18;6389:6;6386:30;6383:50;;;6429:1;6426;6419:12;6383:50;6452:22;;6505:4;6497:13;;6493:27;-1:-1:-1;6483:55:1;;6534:1;6531;6524:12;6483:55;6557:74;6623:7;6618:2;6605:16;6600:2;6596;6592:11;6557:74;:::i;:::-;6547:84;;;5970:667;;;;;;;:::o;6642:260::-;6710:6;6718;6771:2;6759:9;6750:7;6746:23;6742:32;6739:52;;;6787:1;6784;6777:12;6739:52;6810:29;6829:9;6810:29;:::i;:::-;6800:39;;6858:38;6892:2;6881:9;6877:18;6858:38;:::i;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;7292:356::-;7494:2;7476:21;;;7513:18;;;7506:30;7572:34;7567:2;7552:18;;7545:62;7639:2;7624:18;;7292:356::o;8893:413::-;9095:2;9077:21;;;9134:2;9114:18;;;9107:30;9173:34;9168:2;9153:18;;9146:62;-1:-1:-1;;;9239:2:1;9224:18;;9217:47;9296:3;9281:19;;8893:413::o;9723:127::-;9784:10;9779:3;9775:20;9772:1;9765:31;9815:4;9812:1;9805:15;9839:4;9836:1;9829:15;9855:127;9916:10;9911:3;9907:20;9904:1;9897:31;9947:4;9944:1;9937:15;9971:4;9968:1;9961:15;9987:135;10026:3;10047:17;;;10044:43;;10067:18;;:::i;:::-;-1:-1:-1;10114:1:1;10103:13;;9987:135::o;11361:128::-;11401:3;11432:1;11428:6;11425:1;11422:13;11419:39;;;11438:18;;:::i;:::-;-1:-1:-1;11474:9:1;;11361:128::o;13430:418::-;13632:2;13614:21;;;13671:2;13651:18;;;13644:30;13710:34;13705:2;13690:18;;13683:62;-1:-1:-1;;;13776:2:1;13761:18;;13754:52;13838:3;13823:19;;13430:418::o;13853:::-;14055:2;14037:21;;;14094:2;14074:18;;;14067:30;14133:34;14128:2;14113:18;;14106:62;-1:-1:-1;;;14199:2:1;14184:18;;14177:52;14261:3;14246:19;;13853:418::o;16801:664::-;17028:3;17066:6;17060:13;17082:53;17128:6;17123:3;17116:4;17108:6;17104:17;17082:53;:::i;:::-;17198:13;;17157:16;;;;17220:57;17198:13;17157:16;17254:4;17242:17;;17220:57;:::i;:::-;17344:13;;17299:20;;;17366:57;17344:13;17299:20;17400:4;17388:17;;17366:57;:::i;:::-;17439:20;;16801:664;-1:-1:-1;;;;;16801:664:1:o;19105:125::-;19145:4;19173:1;19170;19167:8;19164:34;;;19178:18;;:::i;:::-;-1:-1:-1;19215:9:1;;19105:125::o;19235:414::-;19437:2;19419:21;;;19476:2;19456:18;;;19449:30;19515:34;19510:2;19495:18;;19488:62;-1:-1:-1;;;19581:2:1;19566:18;;19559:48;19639:3;19624:19;;19235:414::o;19654:127::-;19715:10;19710:3;19706:20;19703:1;19696:31;19746:4;19743:1;19736:15;19770:4;19767:1;19760:15;19786:120;19826:1;19852;19842:35;;19857:18;;:::i;:::-;-1:-1:-1;19891:9:1;;19786:120::o;19911:112::-;19943:1;19969;19959:35;;19974:18;;:::i;:::-;-1:-1:-1;20008:9:1;;19911:112::o;20028:489::-;-1:-1:-1;;;;;20297:15:1;;;20279:34;;20349:15;;20344:2;20329:18;;20322:43;20396:2;20381:18;;20374:34;;;20444:3;20439:2;20424:18;;20417:31;;;20222:4;;20465:46;;20491:19;;20483:6;20465:46;:::i;:::-;20457:54;20028:489;-1:-1:-1;;;;;;20028:489:1:o;20522:249::-;20591:6;20644:2;20632:9;20623:7;20619:23;20615:32;20612:52;;;20660:1;20657;20650:12;20612:52;20692:9;20686:16;20711:30;20735:5;20711:30;:::i;20776:127::-;20837:10;20832:3;20828:20;20825:1;20818:31;20868:4;20865:1;20858:15;20892:4;20889:1;20882:15

Swarm Source

ipfs://fc9a47e761183e2571aa378443d9cfda9e818af28d42ba9cb1e9ed0e346b8918
Loading...
Loading
Loading...
Loading
[ 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.