ETH Price: $3,389.03 (-1.53%)
Gas: 2 Gwei

Token

Doodzuki (DOODZUKI)
 

Overview

Max Total Supply

5,000 DOODZUKI

Holders

567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 DOODZUKI
0xfbf84849894f848fca51f61a72bc1571eaed6731
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:
Doodzuki

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// File: Doodzuki.sol

/**
 *Submitted for verification at Etherscan.io on 2022-01-14
*/

// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.10;




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



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



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



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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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



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



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




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



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



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




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

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

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




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


abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}



abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

contract Doodzuki is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 private MAX_SUPPLY = 8888;
    uint256 private PRICE = 0.025 ether;
    uint256 private MAX_SALE_MINT = 10;
    uint public MAX_FREE_SUPPLY = 888;
    
    mapping(address => uint256) addressesThatMinted;

    bool public isSaleActive = false;

    string private baseURI;

    constructor() ERC721P('Doodzuki', 'DOODZUKI') {}

    // internal
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }

    function _publicSupply() internal view virtual returns (uint256) {
        return MAX_SUPPLY;
    }

    function _freeSupply() internal view virtual returns (uint256) {
        return MAX_FREE_SUPPLY;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function mint(uint256 _mintAmount) external payable nonReentrant {
        require(isSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Minted amount should be positive" );
        require(_mintAmount <= MAX_SALE_MINT, "Minted amount exceeds sale limit" );

        uint256 totalSupply = totalSupply();

        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply" );
        require(msg.value >= PRICE * _mintAmount , "Wrong msg.value");

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function freeMint(uint256 _mintAmount) external payable nonReentrant {
        require(isSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Minted amount should be positive" );
        require(_mintAmount <= MAX_SALE_MINT, "Minted amount exceeds sale limit" );
        require(addressesThatMinted[msg.sender] + _mintAmount <= 10, "You have already minted 10!");

        uint256 totalSupply = totalSupply();

        require(totalSupply + _mintAmount <= _freeSupply(), "The requested amount exceeds the remaining supply" );

        addressesThatMinted[msg.sender] += _mintAmount;
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

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

    function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner {
        MAX_SALE_MINT = _newMaxMintAmount;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        MAX_SUPPLY = _maxSupply;
    }

    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

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

    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b86007556658d15e17628000600855600a60098190556103789055600c805460ff191690553480156200003857600080fd5b5060405180604001604052806008815260200167446f6f647a756b6960c01b81525060405180604001604052806008815260200167444f4f445a554b4960c01b81525081600090805190602001906200009392919062000127565b508051620000a990600190602084019062000127565b505050620000c6620000c0620000d160201b60201c565b620000d5565b60016006556200020a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013590620001cd565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b600181811c90821680620001e257607f821691505b602082108114156200020457634e487b7160e01b600052602260045260246000fd5b50919050565b612241806200021a6000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f757806391b7f5ed11610095578063b88d4fde11610064578063b88d4fde146104fb578063c87b56dd1461051b578063e985e9c51461053b578063f2fde38b1461058457600080fd5b806391b7f5ed1461049357806395d89b41146104b3578063a0712d68146104c8578063a22cb465146104db57600080fd5b8063715018a6116100d1578063715018a6146104205780637c928fe9146104355780638462151c146104485780638da5cb5b1461047557600080fd5b80636352211e146103c05780636f8b44b0146103e057806370a082311461040057600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103465780634f6ccce71461036657806355f804b314610386578063564566a8146103a657600080fd5b806323b872dd146102dc5780632f745c59146102fc57806334918dfd1461031c5780633ccfd60b1461033157600080fd5b8063081812fc116101ab578063081812fc1461024d578063088a4ed014610285578063095ea7b3146102a757806318160ddd146102c757600080fd5b806301ffc9a7146101d257806302ddb65b1461020757806306fdde031461022b575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bc9565b6105a4565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021d600a5481565b6040519081526020016101fe565b34801561023757600080fd5b506102406105cf565b6040516101fe9190611c3e565b34801561025957600080fd5b5061026d610268366004611c51565b610661565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a0366004611c51565b6106ee565b005b3480156102b357600080fd5b506102a56102c2366004611c86565b61071d565b3480156102d357600080fd5b5060025461021d565b3480156102e857600080fd5b506102a56102f7366004611cb0565b610833565b34801561030857600080fd5b5061021d610317366004611c86565b61083e565b34801561032857600080fd5b506102a56108ed565b34801561033d57600080fd5b506102a561092b565b34801561035257600080fd5b506102a5610361366004611cb0565b61097b565b34801561037257600080fd5b5061021d610381366004611c51565b610996565b34801561039257600080fd5b506102a56103a1366004611d78565b6109f3565b3480156103b257600080fd5b50600c546101f29060ff1681565b3480156103cc57600080fd5b5061026d6103db366004611c51565b610a34565b3480156103ec57600080fd5b506102a56103fb366004611c51565b610ac0565b34801561040c57600080fd5b5061021d61041b366004611dc1565b610aef565b34801561042c57600080fd5b506102a5610bc1565b6102a5610443366004611c51565b610bf5565b34801561045457600080fd5b50610468610463366004611dc1565b610e3f565b6040516101fe9190611ddc565b34801561048157600080fd5b506005546001600160a01b031661026d565b34801561049f57600080fd5b506102a56104ae366004611c51565b610f09565b3480156104bf57600080fd5b50610240610f38565b6102a56104d6366004611c51565b610f47565b3480156104e757600080fd5b506102a56104f6366004611e20565b611140565b34801561050757600080fd5b506102a5610516366004611e5c565b611205565b34801561052757600080fd5b50610240610536366004611c51565b611217565b34801561054757600080fd5b506101f2610556366004611ed8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561059057600080fd5b506102a561059f366004611dc1565b6112d4565b60006001600160e01b0319821663780e9d6360e01b14806105c957506105c98261136f565b92915050565b6060600080546105de90611f0b565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90611f0b565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600061066c826113bf565b6106d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146107185760405162461bcd60e51b81526004016106c990611f46565b600955565b600061072882610a34565b9050806001600160a01b0316836001600160a01b031614156107965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c9565b336001600160a01b03821614806107b257506107b28133610556565b6108245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c9565b61082e8383611409565b505050565b61082e838383611477565b600061084983610aef565b82106108675760405162461bcd60e51b81526004016106c990611f7b565b6000805b6002548110156108d4576002818154811061088857610888611fab565b6000918252602090912001546001600160a01b03868116911614156108c457838214156108b85791506105c99050565b6108c182611fd7565b91505b6108cd81611fd7565b905061086b565b5060405162461bcd60e51b81526004016106c990611f7b565b6005546001600160a01b031633146109175760405162461bcd60e51b81526004016106c990611f46565b600c805460ff19811660ff90911615179055565b6005546001600160a01b031633146109555760405162461bcd60e51b81526004016106c990611f46565b60405133904780156108fc02916000818181858888f1935050505061097957600080fd5b565b61082e83838360405180602001604052806000815250611205565b60006109a160025490565b82106109ef5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016106c9565b5090565b6005546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016106c990611f46565b8051610a3090600d906020840190611b23565b5050565b60008060028381548110610a4a57610a4a611fab565b6000918252602090912001546001600160a01b03169050806105c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c9565b6005546001600160a01b03163314610aea5760405162461bcd60e51b81526004016106c990611f46565b600755565b60006001600160a01b038216610b5a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c9565b600254600090815b81811015610bb85760028181548110610b7d57610b7d611fab565b6000918252602090912001546001600160a01b0386811691161415610ba857610ba583611fd7565b92505b610bb181611fd7565b9050610b62565b50909392505050565b6005546001600160a01b03163314610beb5760405162461bcd60e51b81526004016106c990611f46565b61097960006114a8565b60026006541415610c485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c9565b6002600655600c5460ff16610c945760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106c9565b60008111610ce45760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f73697469766560448201526064016106c9565b600954811115610d365760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d697460448201526064016106c9565b336000908152600b6020526040902054600a90610d54908390611ff2565b1115610da25760405162461bcd60e51b815260206004820152601b60248201527f596f75206861766520616c7265616479206d696e74656420313021000000000060448201526064016106c9565b6000610dad60025490565b9050610db8600a5490565b610dc28383611ff2565b1115610de05760405162461bcd60e51b81526004016106c99061200a565b336000908152600b602052604081208054849290610dff908490611ff2565b90915550600090505b82811015610e3557610e2333610e1e8385611ff2565b6114fa565b80610e2d81611fd7565b915050610e08565b5050600160065550565b6060610e4a82610aef565b600010610e695760405162461bcd60e51b81526004016106c990611f7b565b6000610e7483610aef565b905060008167ffffffffffffffff811115610e9157610e91611cec565b604051908082528060200260200182016040528015610eba578160200160208202803683370190505b50905060005b82811015610f0157610ed2858261083e565b828281518110610ee457610ee4611fab565b602090810291909101015280610ef981611fd7565b915050610ec0565b509392505050565b6005546001600160a01b03163314610f335760405162461bcd60e51b81526004016106c990611f46565b600855565b6060600180546105de90611f0b565b60026006541415610f9a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c9565b6002600655600c5460ff16610fe65760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106c9565b600081116110365760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f73697469766560448201526064016106c9565b6009548111156110885760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d697460448201526064016106c9565b600061109360025490565b905061109e60075490565b6110a88383611ff2565b11156110c65760405162461bcd60e51b81526004016106c99061200a565b816008546110d4919061205b565b3410156111155760405162461bcd60e51b815260206004820152600f60248201526e57726f6e67206d73672e76616c756560881b60448201526064016106c9565b60005b82811015610e355761112e33610e1e8385611ff2565b8061113881611fd7565b915050611118565b6001600160a01b0382163314156111995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c9565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121184848484611514565b50505050565b6060611222826113bf565b6112785760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016106c9565b6000611282611546565b905060008151116112a257604051806020016040528060008152506112cd565b806112ac84611555565b6040516020016112bd92919061207a565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146112fe5760405162461bcd60e51b81526004016106c990611f46565b6001600160a01b0381166113635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c9565b61136c816114a8565b50565b60006001600160e01b031982166380ac58cd60e01b14806113a057506001600160e01b03198216635b5e139f60e01b145b806105c957506301ffc9a760e01b6001600160e01b03198316146105c9565b600254600090821080156105c9575060006001600160a01b0316600283815481106113ec576113ec611fab565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143e82610a34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611481338261165b565b61149d5760405162461bcd60e51b81526004016106c9906120b9565b61082e838383611741565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a30828260405180602001604052806000815250611897565b61151e338361165b565b61153a5760405162461bcd60e51b81526004016106c9906120b9565b611211848484846118ca565b6060600d80546105de90611f0b565b6060816115795750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a3578061158d81611fd7565b915061159c9050600a83612120565b915061157d565b60008167ffffffffffffffff8111156115be576115be611cec565b6040519080825280601f01601f1916602001820160405280156115e8576020820181803683370190505b5090505b8415611653576115fd600183612134565b915061160a600a8661214b565b611615906030611ff2565b60f81b81838151811061162a5761162a611fab565b60200101906001600160f81b031916908160001a90535061164c600a86612120565b94506115ec565b949350505050565b6000611666826113bf565b6116c75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c9565b60006116d283610a34565b9050806001600160a01b0316846001600160a01b0316148061170d5750836001600160a01b031661170284610661565b6001600160a01b0316145b8061165357506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611653565b826001600160a01b031661175482610a34565b6001600160a01b0316146117bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c9565b6001600160a01b03821661181e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c9565b611829600082611409565b816002828154811061183d5761183d611fab565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6118a183836118fd565b6118ae6000848484611a25565b61082e5760405162461bcd60e51b81526004016106c99061215f565b6118d5848484611741565b6118e184848484611a25565b6112115760405162461bcd60e51b81526004016106c99061215f565b6001600160a01b0382166119535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c9565b61195c816113bf565b156119a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c9565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611b1857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a699033908990889088906004016121b1565b6020604051808303816000875af1925050508015611aa4575060408051601f3d908101601f19168201909252611aa1918101906121ee565b60015b611afe573d808015611ad2576040519150601f19603f3d011682016040523d82523d6000602084013e611ad7565b606091505b508051611af65760405162461bcd60e51b81526004016106c99061215f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611653565b506001949350505050565b828054611b2f90611f0b565b90600052602060002090601f016020900481019282611b515760008555611b97565b82601f10611b6a57805160ff1916838001178555611b97565b82800160010185558215611b97579182015b82811115611b97578251825591602001919060010190611b7c565b506109ef9291505b808211156109ef5760008155600101611b9f565b6001600160e01b03198116811461136c57600080fd5b600060208284031215611bdb57600080fd5b81356112cd81611bb3565b60005b83811015611c01578181015183820152602001611be9565b838111156112115750506000910152565b60008151808452611c2a816020860160208601611be6565b601f01601f19169290920160200192915050565b6020815260006112cd6020830184611c12565b600060208284031215611c6357600080fd5b5035919050565b80356001600160a01b0381168114611c8157600080fd5b919050565b60008060408385031215611c9957600080fd5b611ca283611c6a565b946020939093013593505050565b600080600060608486031215611cc557600080fd5b611cce84611c6a565b9250611cdc60208501611c6a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1d57611d1d611cec565b604051601f8501601f19908116603f01168101908282118183101715611d4557611d45611cec565b81604052809350858152868686011115611d5e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8a57600080fd5b813567ffffffffffffffff811115611da157600080fd5b8201601f81018413611db257600080fd5b61165384823560208401611d02565b600060208284031215611dd357600080fd5b6112cd82611c6a565b6020808252825182820181905260009190848201906040850190845b81811015611e1457835183529284019291840191600101611df8565b50909695505050505050565b60008060408385031215611e3357600080fd5b611e3c83611c6a565b915060208301358015158114611e5157600080fd5b809150509250929050565b60008060008060808587031215611e7257600080fd5b611e7b85611c6a565b9350611e8960208601611c6a565b925060408501359150606085013567ffffffffffffffff811115611eac57600080fd5b8501601f81018713611ebd57600080fd5b611ecc87823560208401611d02565b91505092959194509250565b60008060408385031215611eeb57600080fd5b611ef483611c6a565b9150611f0260208401611c6a565b90509250929050565b600181811c90821680611f1f57607f821691505b60208210811415611f4057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611feb57611feb611fc1565b5060010190565b6000821982111561200557612005611fc1565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b600081600019048311821515161561207557612075611fc1565b500290565b6000835161208c818460208801611be6565b8351908301906120a0818360208801611be6565b64173539b7b760d91b9101908152600501949350505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261212f5761212f61210a565b500490565b60008282101561214657612146611fc1565b500390565b60008261215a5761215a61210a565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e490830184611c12565b9695505050505050565b60006020828403121561220057600080fd5b81516112cd81611bb356fea2646970667358221220efbb5d151f27b1fae61a32e05b32395b170927dda874d18ce1069b30c00ec1e864736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f757806391b7f5ed11610095578063b88d4fde11610064578063b88d4fde146104fb578063c87b56dd1461051b578063e985e9c51461053b578063f2fde38b1461058457600080fd5b806391b7f5ed1461049357806395d89b41146104b3578063a0712d68146104c8578063a22cb465146104db57600080fd5b8063715018a6116100d1578063715018a6146104205780637c928fe9146104355780638462151c146104485780638da5cb5b1461047557600080fd5b80636352211e146103c05780636f8b44b0146103e057806370a082311461040057600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103465780634f6ccce71461036657806355f804b314610386578063564566a8146103a657600080fd5b806323b872dd146102dc5780632f745c59146102fc57806334918dfd1461031c5780633ccfd60b1461033157600080fd5b8063081812fc116101ab578063081812fc1461024d578063088a4ed014610285578063095ea7b3146102a757806318160ddd146102c757600080fd5b806301ffc9a7146101d257806302ddb65b1461020757806306fdde031461022b575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611bc9565b6105a4565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021d600a5481565b6040519081526020016101fe565b34801561023757600080fd5b506102406105cf565b6040516101fe9190611c3e565b34801561025957600080fd5b5061026d610268366004611c51565b610661565b6040516001600160a01b0390911681526020016101fe565b34801561029157600080fd5b506102a56102a0366004611c51565b6106ee565b005b3480156102b357600080fd5b506102a56102c2366004611c86565b61071d565b3480156102d357600080fd5b5060025461021d565b3480156102e857600080fd5b506102a56102f7366004611cb0565b610833565b34801561030857600080fd5b5061021d610317366004611c86565b61083e565b34801561032857600080fd5b506102a56108ed565b34801561033d57600080fd5b506102a561092b565b34801561035257600080fd5b506102a5610361366004611cb0565b61097b565b34801561037257600080fd5b5061021d610381366004611c51565b610996565b34801561039257600080fd5b506102a56103a1366004611d78565b6109f3565b3480156103b257600080fd5b50600c546101f29060ff1681565b3480156103cc57600080fd5b5061026d6103db366004611c51565b610a34565b3480156103ec57600080fd5b506102a56103fb366004611c51565b610ac0565b34801561040c57600080fd5b5061021d61041b366004611dc1565b610aef565b34801561042c57600080fd5b506102a5610bc1565b6102a5610443366004611c51565b610bf5565b34801561045457600080fd5b50610468610463366004611dc1565b610e3f565b6040516101fe9190611ddc565b34801561048157600080fd5b506005546001600160a01b031661026d565b34801561049f57600080fd5b506102a56104ae366004611c51565b610f09565b3480156104bf57600080fd5b50610240610f38565b6102a56104d6366004611c51565b610f47565b3480156104e757600080fd5b506102a56104f6366004611e20565b611140565b34801561050757600080fd5b506102a5610516366004611e5c565b611205565b34801561052757600080fd5b50610240610536366004611c51565b611217565b34801561054757600080fd5b506101f2610556366004611ed8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561059057600080fd5b506102a561059f366004611dc1565b6112d4565b60006001600160e01b0319821663780e9d6360e01b14806105c957506105c98261136f565b92915050565b6060600080546105de90611f0b565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90611f0b565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600061066c826113bf565b6106d25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146107185760405162461bcd60e51b81526004016106c990611f46565b600955565b600061072882610a34565b9050806001600160a01b0316836001600160a01b031614156107965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c9565b336001600160a01b03821614806107b257506107b28133610556565b6108245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c9565b61082e8383611409565b505050565b61082e838383611477565b600061084983610aef565b82106108675760405162461bcd60e51b81526004016106c990611f7b565b6000805b6002548110156108d4576002818154811061088857610888611fab565b6000918252602090912001546001600160a01b03868116911614156108c457838214156108b85791506105c99050565b6108c182611fd7565b91505b6108cd81611fd7565b905061086b565b5060405162461bcd60e51b81526004016106c990611f7b565b6005546001600160a01b031633146109175760405162461bcd60e51b81526004016106c990611f46565b600c805460ff19811660ff90911615179055565b6005546001600160a01b031633146109555760405162461bcd60e51b81526004016106c990611f46565b60405133904780156108fc02916000818181858888f1935050505061097957600080fd5b565b61082e83838360405180602001604052806000815250611205565b60006109a160025490565b82106109ef5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016106c9565b5090565b6005546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016106c990611f46565b8051610a3090600d906020840190611b23565b5050565b60008060028381548110610a4a57610a4a611fab565b6000918252602090912001546001600160a01b03169050806105c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c9565b6005546001600160a01b03163314610aea5760405162461bcd60e51b81526004016106c990611f46565b600755565b60006001600160a01b038216610b5a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c9565b600254600090815b81811015610bb85760028181548110610b7d57610b7d611fab565b6000918252602090912001546001600160a01b0386811691161415610ba857610ba583611fd7565b92505b610bb181611fd7565b9050610b62565b50909392505050565b6005546001600160a01b03163314610beb5760405162461bcd60e51b81526004016106c990611f46565b61097960006114a8565b60026006541415610c485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c9565b6002600655600c5460ff16610c945760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106c9565b60008111610ce45760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f73697469766560448201526064016106c9565b600954811115610d365760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d697460448201526064016106c9565b336000908152600b6020526040902054600a90610d54908390611ff2565b1115610da25760405162461bcd60e51b815260206004820152601b60248201527f596f75206861766520616c7265616479206d696e74656420313021000000000060448201526064016106c9565b6000610dad60025490565b9050610db8600a5490565b610dc28383611ff2565b1115610de05760405162461bcd60e51b81526004016106c99061200a565b336000908152600b602052604081208054849290610dff908490611ff2565b90915550600090505b82811015610e3557610e2333610e1e8385611ff2565b6114fa565b80610e2d81611fd7565b915050610e08565b5050600160065550565b6060610e4a82610aef565b600010610e695760405162461bcd60e51b81526004016106c990611f7b565b6000610e7483610aef565b905060008167ffffffffffffffff811115610e9157610e91611cec565b604051908082528060200260200182016040528015610eba578160200160208202803683370190505b50905060005b82811015610f0157610ed2858261083e565b828281518110610ee457610ee4611fab565b602090810291909101015280610ef981611fd7565b915050610ec0565b509392505050565b6005546001600160a01b03163314610f335760405162461bcd60e51b81526004016106c990611f46565b600855565b6060600180546105de90611f0b565b60026006541415610f9a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c9565b6002600655600c5460ff16610fe65760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106c9565b600081116110365760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f73697469766560448201526064016106c9565b6009548111156110885760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d697460448201526064016106c9565b600061109360025490565b905061109e60075490565b6110a88383611ff2565b11156110c65760405162461bcd60e51b81526004016106c99061200a565b816008546110d4919061205b565b3410156111155760405162461bcd60e51b815260206004820152600f60248201526e57726f6e67206d73672e76616c756560881b60448201526064016106c9565b60005b82811015610e355761112e33610e1e8385611ff2565b8061113881611fd7565b915050611118565b6001600160a01b0382163314156111995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c9565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121184848484611514565b50505050565b6060611222826113bf565b6112785760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016106c9565b6000611282611546565b905060008151116112a257604051806020016040528060008152506112cd565b806112ac84611555565b6040516020016112bd92919061207a565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146112fe5760405162461bcd60e51b81526004016106c990611f46565b6001600160a01b0381166113635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c9565b61136c816114a8565b50565b60006001600160e01b031982166380ac58cd60e01b14806113a057506001600160e01b03198216635b5e139f60e01b145b806105c957506301ffc9a760e01b6001600160e01b03198316146105c9565b600254600090821080156105c9575060006001600160a01b0316600283815481106113ec576113ec611fab565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143e82610a34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611481338261165b565b61149d5760405162461bcd60e51b81526004016106c9906120b9565b61082e838383611741565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a30828260405180602001604052806000815250611897565b61151e338361165b565b61153a5760405162461bcd60e51b81526004016106c9906120b9565b611211848484846118ca565b6060600d80546105de90611f0b565b6060816115795750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a3578061158d81611fd7565b915061159c9050600a83612120565b915061157d565b60008167ffffffffffffffff8111156115be576115be611cec565b6040519080825280601f01601f1916602001820160405280156115e8576020820181803683370190505b5090505b8415611653576115fd600183612134565b915061160a600a8661214b565b611615906030611ff2565b60f81b81838151811061162a5761162a611fab565b60200101906001600160f81b031916908160001a90535061164c600a86612120565b94506115ec565b949350505050565b6000611666826113bf565b6116c75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c9565b60006116d283610a34565b9050806001600160a01b0316846001600160a01b0316148061170d5750836001600160a01b031661170284610661565b6001600160a01b0316145b8061165357506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611653565b826001600160a01b031661175482610a34565b6001600160a01b0316146117bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c9565b6001600160a01b03821661181e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c9565b611829600082611409565b816002828154811061183d5761183d611fab565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6118a183836118fd565b6118ae6000848484611a25565b61082e5760405162461bcd60e51b81526004016106c99061215f565b6118d5848484611741565b6118e184848484611a25565b6112115760405162461bcd60e51b81526004016106c99061215f565b6001600160a01b0382166119535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c9565b61195c816113bf565b156119a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c9565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611b1857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a699033908990889088906004016121b1565b6020604051808303816000875af1925050508015611aa4575060408051601f3d908101601f19168201909252611aa1918101906121ee565b60015b611afe573d808015611ad2576040519150601f19603f3d011682016040523d82523d6000602084013e611ad7565b606091505b508051611af65760405162461bcd60e51b81526004016106c99061215f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611653565b506001949350505050565b828054611b2f90611f0b565b90600052602060002090601f016020900481019282611b515760008555611b97565b82601f10611b6a57805160ff1916838001178555611b97565b82800160010185558215611b97579182015b82811115611b97578251825591602001919060010190611b7c565b506109ef9291505b808211156109ef5760008155600101611b9f565b6001600160e01b03198116811461136c57600080fd5b600060208284031215611bdb57600080fd5b81356112cd81611bb3565b60005b83811015611c01578181015183820152602001611be9565b838111156112115750506000910152565b60008151808452611c2a816020860160208601611be6565b601f01601f19169290920160200192915050565b6020815260006112cd6020830184611c12565b600060208284031215611c6357600080fd5b5035919050565b80356001600160a01b0381168114611c8157600080fd5b919050565b60008060408385031215611c9957600080fd5b611ca283611c6a565b946020939093013593505050565b600080600060608486031215611cc557600080fd5b611cce84611c6a565b9250611cdc60208501611c6a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d1d57611d1d611cec565b604051601f8501601f19908116603f01168101908282118183101715611d4557611d45611cec565b81604052809350858152868686011115611d5e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d8a57600080fd5b813567ffffffffffffffff811115611da157600080fd5b8201601f81018413611db257600080fd5b61165384823560208401611d02565b600060208284031215611dd357600080fd5b6112cd82611c6a565b6020808252825182820181905260009190848201906040850190845b81811015611e1457835183529284019291840191600101611df8565b50909695505050505050565b60008060408385031215611e3357600080fd5b611e3c83611c6a565b915060208301358015158114611e5157600080fd5b809150509250929050565b60008060008060808587031215611e7257600080fd5b611e7b85611c6a565b9350611e8960208601611c6a565b925060408501359150606085013567ffffffffffffffff811115611eac57600080fd5b8501601f81018713611ebd57600080fd5b611ecc87823560208401611d02565b91505092959194509250565b60008060408385031215611eeb57600080fd5b611ef483611c6a565b9150611f0260208401611c6a565b90509250929050565b600181811c90821680611f1f57607f821691505b60208210811415611f4057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611feb57611feb611fc1565b5060010190565b6000821982111561200557612005611fc1565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b600081600019048311821515161561207557612075611fc1565b500290565b6000835161208c818460208801611be6565b8351908301906120a0818360208801611be6565b64173539b7b760d91b9101908152600501949350505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261212f5761212f61210a565b500490565b60008282101561214657612146611fc1565b500390565b60008261215a5761215a61210a565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e490830184611c12565b9695505050505050565b60006020828403121561220057600080fd5b81516112cd81611bb356fea2646970667358221220efbb5d151f27b1fae61a32e05b32395b170927dda874d18ce1069b30c00ec1e864736f6c634300080b0033

Deployed Bytecode Sourcemap

33223:3561:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31745:225;;;;;;;;;;-1:-1:-1;31745:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31745:225:0;;;;;;;;33445:33;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;33445:33:0;592:177:1;25860:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26494:221::-;;;;;;;;;;-1:-1:-1;26494:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;26494:221:0;1710:203:1;35732:124:0;;;;;;;;;;-1:-1:-1;35732:124:0;;;;;:::i;:::-;;:::i;:::-;;26076:412;;;;;;;;;;-1:-1:-1;26076:412:0;;;;;:::i;:::-;;:::i;32906:110::-;;;;;;;;;;-1:-1:-1;32994:7:0;:14;32906:110;;36448:145;;;;;;;;;;-1:-1:-1;36448:145:0;;;;;:::i;:::-;;:::i;31976:500::-;;;;;;;;;;-1:-1:-1;31976:500:0;;;;;:::i;:::-;;:::i;34020:91::-;;;;;;;;;;;;;:::i;35510:114::-;;;;;;;;;;;;;:::i;27537:185::-;;;;;;;;;;-1:-1:-1;27537:185:0;;;;;:::i;:::-;;:::i;33022:194::-;;;;;;;;;;-1:-1:-1;33022:194:0;;;;;:::i;:::-;;:::i;36336:104::-;;;;;;;;;;-1:-1:-1;36336:104:0;;;;;:::i;:::-;;:::i;33547:32::-;;;;;;;;;;-1:-1:-1;33547:32:0;;;;;;;;25615:239;;;;;;;;;;-1:-1:-1;25615:239:0;;;;;:::i;:::-;;:::i;35864:103::-;;;;;;;;;;-1:-1:-1;35864:103:0;;;;;:::i;:::-;;:::i;25187:422::-;;;;;;;;;;-1:-1:-1;25187:422:0;;;;;:::i;:::-;;:::i;2488:94::-;;;;;;;;;;;;;:::i;34770:732::-;;;;;;:::i;:::-;;:::i;32482:418::-;;;;;;;;;;-1:-1:-1;32482:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1837:87::-;;;;;;;;;;-1:-1:-1;1910:6:0;;-1:-1:-1;;;;;1910:6:0;1837:87;;35632:92;;;;;;;;;;-1:-1:-1;35632:92:0;;;;;:::i;:::-;;:::i;25966:104::-;;;;;;;;;;;;;:::i;34119:643::-;;;;;;:::i;:::-;;:::i;26721:295::-;;;;;;;;;;-1:-1:-1;26721:295:0;;;;;:::i;:::-;;:::i;36601:180::-;;;;;;;;;;-1:-1:-1;36601:180:0;;;;;:::i;:::-;;:::i;35975:353::-;;;;;;;;;;-1:-1:-1;35975:353:0;;;;;:::i;:::-;;:::i;27022:164::-;;;;;;;;;;-1:-1:-1;27022:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27143:25:0;;;27119:4;27143:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27022:164;2737:192;;;;;;;;;;-1:-1:-1;2737:192:0;;;;;:::i;:::-;;:::i;31745:225::-;31848:4;-1:-1:-1;;;;;;31872:50:0;;-1:-1:-1;;;31872:50:0;;:90;;;31926:36;31950:11;31926:23;:36::i;:::-;31865:97;31745:225;-1:-1:-1;;31745:225:0:o;25860:100::-;25914:13;25947:5;25940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25860:100;:::o;26494:221::-;26570:7;26598:16;26606:7;26598;:16::i;:::-;26590:73;;;;-1:-1:-1;;;26590:73:0;;6617:2:1;26590:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;26590:73:0;;;;;;;;;-1:-1:-1;26683:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26683:24:0;;26494:221::o;35732:124::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;35815:13:::1;:33:::0;35732:124::o;26076:412::-;26157:13;26173:24;26189:7;26173:15;:24::i;:::-;26157:40;;26222:5;-1:-1:-1;;;;;26216:11:0;:2;-1:-1:-1;;;;;26216:11:0;;;26208:57;;;;-1:-1:-1;;;26208:57:0;;7391:2:1;26208:57:0;;;7373:21:1;7430:2;7410:18;;;7403:30;7469:34;7449:18;;;7442:62;-1:-1:-1;;;7520:18:1;;;7513:31;7561:19;;26208:57:0;7189:397:1;26208:57:0;789:10;-1:-1:-1;;;;;26300:21:0;;;;:62;;-1:-1:-1;26325:37:0;26342:5;789:10;27022:164;:::i;26325:37::-;26278:168;;;;-1:-1:-1;;;26278:168:0;;7793:2:1;26278:168:0;;;7775:21:1;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;7942:26;7922:18;;;7915:54;7986:19;;26278:168:0;7591:420:1;26278:168:0;26459:21;26468:2;26472:7;26459:8;:21::i;:::-;26146:342;26076:412;;:::o;36448:145::-;36543:42;36564:5;36571:3;36576:8;36543:20;:42::i;31976:500::-;32065:15;32109:24;32127:5;32109:17;:24::i;:::-;32101:5;:32;32093:67;;;;-1:-1:-1;;;32093:67:0;;;;;;;:::i;:::-;32171:10;32197:6;32192:226;32209:7;:14;32205:18;;32192:226;;;32258:7;32266:1;32258:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32249:19:0;;;32258:10;;32249:19;32245:162;;;32302:5;32293;:14;32289:102;;;32338:1;-1:-1:-1;32331:8:0;;-1:-1:-1;32331:8:0;32289:102;32384:7;;;:::i;:::-;;;32289:102;32225:3;;;:::i;:::-;;;32192:226;;;-1:-1:-1;32428:40:0;;-1:-1:-1;;;32428:40:0;;;;;;;:::i;34020:91::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;34091:12:::1;::::0;;-1:-1:-1;;34075:28:0;::::1;34091:12;::::0;;::::1;34090:13;34075:28;::::0;;34020:91::o;35510:114::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;35568:47:::1;::::0;35576:10:::1;::::0;35593:21:::1;35568:47:::0;::::1;;;::::0;::::1;::::0;;;35593:21;35576:10;35568:47;::::1;;;;;;35560:56;;;::::0;::::1;;35510:114::o:0;27537:185::-;27675:39;27692:4;27698:2;27702:7;27675:39;;;;;;;;;;;;:16;:39::i;33022:194::-;33097:7;33133:24;32994:7;:14;;32906:110;33133:24;33125:5;:32;33117:68;;;;-1:-1:-1;;;33117:68:0;;8973:2:1;33117:68:0;;;8955:21:1;9012:2;8992:18;;;8985:30;9051:25;9031:18;;;9024:53;9094:18;;33117:68:0;8771:347:1;33117:68:0;-1:-1:-1;33203:5:0;33022:194::o;36336:104::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;36411:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;36336:104:::0;:::o;25615:239::-;25687:7;25707:13;25723:7;25731;25723:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25723:16:0;;-1:-1:-1;25758:19:0;25750:73;;;;-1:-1:-1;;;25750:73:0;;9325:2:1;25750:73:0;;;9307:21:1;9364:2;9344:18;;;9337:30;9403:34;9383:18;;;9376:62;-1:-1:-1;;;9454:18:1;;;9447:39;9503:19;;25750:73:0;9123:405:1;35864:103:0;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;35936:10:::1;:23:::0;35864:103::o;25187:422::-;25259:7;-1:-1:-1;;;;;25287:19:0;;25279:74;;;;-1:-1:-1;;;25279:74:0;;9735:2:1;25279:74:0;;;9717:21:1;9774:2;9754:18;;;9747:30;9813:34;9793:18;;;9786:62;-1:-1:-1;;;9864:18:1;;;9857:40;9914:19;;25279:74:0;9533:406:1;25279:74:0;25403:7;:14;25364:10;;;25428:127;25449:6;25445:1;:10;25428:127;;;25490:7;25498:1;25490:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25481:19:0;;;25490:10;;25481:19;25477:67;;;25521:7;;;:::i;:::-;;;25477:67;25457:3;;;:::i;:::-;;;25428:127;;;-1:-1:-1;25596:5:0;;25187:422;-1:-1:-1;;;25187:422:0:o;2488:94::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;2553:21:::1;2571:1;2553:9;:21::i;34770:732::-:0;6761:1;7357:7;;:19;;7349:63;;;;-1:-1:-1;;;7349:63:0;;10146:2:1;7349:63:0;;;10128:21:1;10185:2;10165:18;;;10158:30;10224:33;10204:18;;;10197:61;10275:18;;7349:63:0;9944:355:1;7349:63:0;6761:1;7490:7;:18;34858:12:::1;::::0;::::1;;34850:43;;;::::0;-1:-1:-1;;;34850:43:0;;10506:2:1;34850:43:0::1;::::0;::::1;10488:21:1::0;10545:2;10525:18;;;10518:30;-1:-1:-1;;;10564:18:1;;;10557:48;10622:18;;34850:43:0::1;10304:342:1::0;34850:43:0::1;34926:1;34912:11;:15;34904:61;;;::::0;-1:-1:-1;;;34904:61:0;;10853:2:1;34904:61:0::1;::::0;::::1;10835:21:1::0;;;10872:18;;;10865:30;10931:34;10911:18;;;10904:62;10983:18;;34904:61:0::1;10651:356:1::0;34904:61:0::1;34999:13;;34984:11;:28;;34976:74;;;::::0;-1:-1:-1;;;34976:74:0;;11214:2:1;34976:74:0::1;::::0;::::1;11196:21:1::0;;;11233:18;;;11226:30;11292:34;11272:18;;;11265:62;11344:18;;34976:74:0::1;11012:356:1::0;34976:74:0::1;35089:10;35069:31;::::0;;;:19:::1;:31;::::0;;;;;35118:2:::1;::::0;35069:45:::1;::::0;35103:11;;35069:45:::1;:::i;:::-;:51;;35061:91;;;::::0;-1:-1:-1;;;35061:91:0;;11708:2:1;35061:91:0::1;::::0;::::1;11690:21:1::0;11747:2;11727:18;;;11720:30;11786:29;11766:18;;;11759:57;11833:18;;35061:91:0::1;11506:351:1::0;35061:91:0::1;35165:19;35187:13;32994:7:::0;:14;;32906:110;35187:13:::1;35165:35;;35250:13;33989:15:::0;;;33908:104;35250:13:::1;35221:25;35235:11:::0;35221;:25:::1;:::i;:::-;:42;;35213:105;;;;-1:-1:-1::0;;;35213:105:0::1;;;;;;;:::i;:::-;35351:10;35331:31;::::0;;;:19:::1;:31;::::0;;;;:46;;35366:11;;35331:31;:46:::1;::::0;35366:11;;35331:46:::1;:::i;:::-;::::0;;;-1:-1:-1;35393:9:0::1;::::0;-1:-1:-1;35388:107:0::1;35412:11;35408:1;:15;35388:107;;;35445:38;35455:10;35467:15;35481:1:::0;35467:11;:15:::1;:::i;:::-;35445:9;:38::i;:::-;35425:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35388:107;;;-1:-1:-1::0;;6717:1:0;7669:7;:22;-1:-1:-1;34770:732:0:o;32482:418::-;32541:16;32582:24;32600:5;32582:17;:24::i;:::-;32578:1;:28;32570:63;;;;-1:-1:-1;;;32570:63:0;;;;;;;:::i;:::-;32644:18;32665:16;32675:5;32665:9;:16::i;:::-;32644:37;;32692:25;32734:10;32720:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32720:25:0;;32692:53;;32761:9;32756:111;32780:10;32776:1;:14;32756:111;;;32826:29;32846:5;32853:1;32826:19;:29::i;:::-;32812:8;32821:1;32812:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;32792:3;;;;:::i;:::-;;;;32756:111;;;-1:-1:-1;32884:8:0;32482:418;-1:-1:-1;;;32482:418:0:o;35632:92::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;35699:5:::1;:17:::0;35632:92::o;25966:104::-;26022:13;26055:7;26048:14;;;;;:::i;34119:643::-;6761:1;7357:7;;:19;;7349:63;;;;-1:-1:-1;;;7349:63:0;;10146:2:1;7349:63:0;;;10128:21:1;10185:2;10165:18;;;10158:30;10224:33;10204:18;;;10197:61;10275:18;;7349:63:0;9944:355:1;7349:63:0;6761:1;7490:7;:18;34203:12:::1;::::0;::::1;;34195:43;;;::::0;-1:-1:-1;;;34195:43:0;;10506:2:1;34195:43:0::1;::::0;::::1;10488:21:1::0;10545:2;10525:18;;;10518:30;-1:-1:-1;;;10564:18:1;;;10557:48;10622:18;;34195:43:0::1;10304:342:1::0;34195:43:0::1;34271:1;34257:11;:15;34249:61;;;::::0;-1:-1:-1;;;34249:61:0;;10853:2:1;34249:61:0::1;::::0;::::1;10835:21:1::0;;;10872:18;;;10865:30;10931:34;10911:18;;;10904:62;10983:18;;34249:61:0::1;10651:356:1::0;34249:61:0::1;34344:13;;34329:11;:28;;34321:74;;;::::0;-1:-1:-1;;;34321:74:0;;11214:2:1;34321:74:0::1;::::0;::::1;11196:21:1::0;;;11233:18;;;11226:30;11292:34;11272:18;;;11265:62;11344:18;;34321:74:0::1;11012:356:1::0;34321:74:0::1;34408:19;34430:13;32994:7:::0;:14;;32906:110;34430:13:::1;34408:35;;34493:15;33882:10:::0;;;33799:101;34493:15:::1;34464:25;34478:11:::0;34464;:25:::1;:::i;:::-;:44;;34456:107;;;;-1:-1:-1::0;;;34456:107:0::1;;;;;;;:::i;:::-;34603:11;34595:5;;:19;;;;:::i;:::-;34582:9;:32;;34574:61;;;::::0;-1:-1:-1;;;34574:61:0;;12655:2:1;34574:61:0::1;::::0;::::1;12637:21:1::0;12694:2;12674:18;;;12667:30;-1:-1:-1;;;12713:18:1;;;12706:45;12768:18;;34574:61:0::1;12453:339:1::0;34574:61:0::1;34653:9;34648:107;34672:11;34668:1;:15;34648:107;;;34705:38;34715:10;34727:15;34741:1:::0;34727:11;:15:::1;:::i;34705:38::-;34685:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34648:107;;26721:295:::0;-1:-1:-1;;;;;26824:24:0;;789:10;26824:24;;26816:62;;;;-1:-1:-1;;;26816:62:0;;12999:2:1;26816:62:0;;;12981:21:1;13038:2;13018:18;;;13011:30;13077:27;13057:18;;;13050:55;13122:18;;26816:62:0;12797:349:1;26816:62:0;789:10;26891:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26891:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26891:53:0;;;;;;;;;;26960:48;;540:41:1;;;26891:42:0;;789:10;26960:48;;513:18:1;26960:48:0;;;;;;;26721:295;;:::o;36601:180::-;36720:53;36745:5;36752:3;36757:8;36767:5;36720:24;:53::i;:::-;36601:180;;;;:::o;35975:353::-;36051:13;36085:17;36093:8;36085:7;:17::i;:::-;36077:63;;;;-1:-1:-1;;;36077:63:0;;13353:2:1;36077:63:0;;;13335:21:1;13392:2;13372:18;;;13365:30;13431:34;13411:18;;;13404:62;-1:-1:-1;;;13482:18:1;;;13475:31;13523:19;;36077:63:0;13151:397:1;36077:63:0;36151:28;36182:10;:8;:10::i;:::-;36151:41;;36241:1;36216:14;36210:28;:32;:110;;;;;;;;;;;;;;;;;36269:14;36285:19;:8;:17;:19::i;:::-;36252:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36210:110;36203:117;35975:353;-1:-1:-1;;;35975:353:0:o;2737:192::-;1910:6;;-1:-1:-1;;;;;1910:6:0;789:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2826:22:0;::::1;2818:73;;;::::0;-1:-1:-1;;;2818:73:0;;14397:2:1;2818:73:0::1;::::0;::::1;14379:21:1::0;14436:2;14416:18;;;14409:30;14475:34;14455:18;;;14448:62;-1:-1:-1;;;14526:18:1;;;14519:36;14572:19;;2818:73:0::1;14195:402:1::0;2818:73:0::1;2902:19;2912:8;2902:9;:19::i;:::-;2737:192:::0;:::o;24888:293::-;24990:4;-1:-1:-1;;;;;;25023:40:0;;-1:-1:-1;;;25023:40:0;;:101;;-1:-1:-1;;;;;;;25076:48:0;;-1:-1:-1;;;25076:48:0;25023:101;:150;;;-1:-1:-1;;;;;;;;;;24374:40:0;;;25137:36;24265:157;28383:155;28482:7;:14;28448:4;;28472:24;;:58;;;;;28528:1;-1:-1:-1;;;;;28500:30:0;:7;28508;28500:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28500:16:0;:30;;28465:65;28383:155;-1:-1:-1;;28383:155:0:o;30556:175::-;30631:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30631:29:0;-1:-1:-1;;;;;30631:29:0;;;;;;;;:24;;30685;30631;30685:15;:24::i;:::-;-1:-1:-1;;;;;30676:47:0;;;;;;;;;;;30556:175;;:::o;27192:339::-;27387:41;789:10;27420:7;27387:18;:41::i;:::-;27379:103;;;;-1:-1:-1;;;27379:103:0;;;;;;;:::i;:::-;27495:28;27505:4;27511:2;27515:7;27495:9;:28::i;2937:173::-;3012:6;;;-1:-1:-1;;;;;3029:17:0;;;-1:-1:-1;;;;;;3029:17:0;;;;;;;3062:40;;3012:6;;;3029:17;3012:6;;3062:40;;2993:16;;3062:40;2982:128;2937:173;:::o;28899:110::-;28975:26;28985:2;28989:7;28975:26;;;;;;;;;;;;:9;:26::i;27728:328::-;27903:41;789:10;27936:7;27903:18;:41::i;:::-;27895:103;;;;-1:-1:-1;;;27895:103:0;;;;;;;:::i;:::-;28009:39;28023:4;28029:2;28033:7;28042:5;28009:13;:39::i;33692:99::-;33743:13;33776:7;33769:14;;;;;:::i;3347:723::-;3403:13;3624:10;3620:53;;-1:-1:-1;;3651:10:0;;;;;;;;;;;;-1:-1:-1;;;3651:10:0;;;;;3347:723::o;3620:53::-;3698:5;3683:12;3739:78;3746:9;;3739:78;;3772:8;;;;:::i;:::-;;-1:-1:-1;3795:10:0;;-1:-1:-1;3803:2:0;3795:10;;:::i;:::-;;;3739:78;;;3827:19;3859:6;3849:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3849:17:0;;3827:39;;3877:154;3884:10;;3877:154;;3911:11;3921:1;3911:11;;:::i;:::-;;-1:-1:-1;3980:10:0;3988:2;3980:5;:10;:::i;:::-;3967:24;;:2;:24;:::i;:::-;3954:39;;3937:6;3944;3937:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3937:56:0;;;;;;;;-1:-1:-1;4008:11:0;4017:2;4008:11;;:::i;:::-;;;3877:154;;;4055:6;3347:723;-1:-1:-1;;;;3347:723:0:o;28544:349::-;28637:4;28662:16;28670:7;28662;:16::i;:::-;28654:73;;;;-1:-1:-1;;;28654:73:0;;15726:2:1;28654:73:0;;;15708:21:1;15765:2;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;-1:-1:-1;;;15855:18:1;;;15848:42;15907:19;;28654:73:0;15524:408:1;28654:73:0;28738:13;28754:24;28770:7;28754:15;:24::i;:::-;28738:40;;28808:5;-1:-1:-1;;;;;28797:16:0;:7;-1:-1:-1;;;;;28797:16:0;;:51;;;;28841:7;-1:-1:-1;;;;;28817:31:0;:20;28829:7;28817:11;:20::i;:::-;-1:-1:-1;;;;;28817:31:0;;28797:51;:87;;;-1:-1:-1;;;;;;27143:25:0;;;27119:4;27143:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28852:32;27022:164;30033:517;30193:4;-1:-1:-1;;;;;30165:32:0;:24;30181:7;30165:15;:24::i;:::-;-1:-1:-1;;;;;30165:32:0;;30157:86;;;;-1:-1:-1;;;30157:86:0;;16139:2:1;30157:86:0;;;16121:21:1;16178:2;16158:18;;;16151:30;16217:34;16197:18;;;16190:62;-1:-1:-1;;;16268:18:1;;;16261:39;16317:19;;30157:86:0;15937:405:1;30157:86:0;-1:-1:-1;;;;;30262:16:0;;30254:65;;;;-1:-1:-1;;;30254:65:0;;16549:2:1;30254:65:0;;;16531:21:1;16588:2;16568:18;;;16561:30;16627:34;16607:18;;;16600:62;-1:-1:-1;;;16678:18:1;;;16671:34;16722:19;;30254:65:0;16347:400:1;30254:65:0;30436:29;30453:1;30457:7;30436:8;:29::i;:::-;30495:2;30476:7;30484;30476:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;30476:21:0;-1:-1:-1;;;;;30476:21:0;;;;;;30515:27;;30534:7;;30515:27;;;;;;;;;;30476:16;30515:27;30033:517;;;:::o;29015:321::-;29145:18;29151:2;29155:7;29145:5;:18::i;:::-;29196:54;29227:1;29231:2;29235:7;29244:5;29196:22;:54::i;:::-;29174:154;;;;-1:-1:-1;;;29174:154:0;;;;;;;:::i;28062:315::-;28219:28;28229:4;28235:2;28239:7;28219:9;:28::i;:::-;28266:48;28289:4;28295:2;28299:7;28308:5;28266:22;:48::i;:::-;28258:111;;;;-1:-1:-1;;;28258:111:0;;;;;;;:::i;29342:346::-;-1:-1:-1;;;;;29422:16:0;;29414:61;;;;-1:-1:-1;;;29414:61:0;;17373:2:1;29414:61:0;;;17355:21:1;;;17392:18;;;17385:30;17451:34;17431:18;;;17424:62;17503:18;;29414:61:0;17171:356:1;29414:61:0;29495:16;29503:7;29495;:16::i;:::-;29494:17;29486:58;;;;-1:-1:-1;;;29486:58:0;;17734:2:1;29486:58:0;;;17716:21:1;17773:2;17753:18;;;17746:30;17812;17792:18;;;17785:58;17860:18;;29486:58:0;17532:352:1;29486:58:0;29613:7;:16;;;;;;;-1:-1:-1;29613:16:0;;;;;;;-1:-1:-1;;;;;;29613:16:0;-1:-1:-1;;;;;29613:16:0;;;;;;;;29647:33;;29672:7;;-1:-1:-1;29647:33:0;;-1:-1:-1;;29647:33:0;29342:346;;:::o;30737:799::-;30892:4;-1:-1:-1;;;;;30913:13:0;;16553:20;16601:8;30909:620;;30949:72;;-1:-1:-1;;;30949:72:0;;-1:-1:-1;;;;;30949:36:0;;;;;:72;;789:10;;31000:4;;31006:7;;31015:5;;30949:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30949:72:0;;;;;;;;-1:-1:-1;;30949:72:0;;;;;;;;;;;;:::i;:::-;;;30945:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31191:13:0;;31187:272;;31234:60;;-1:-1:-1;;;31234:60:0;;;;;;;:::i;31187:272::-;31409:6;31403:13;31394:6;31390:2;31386:15;31379:38;30945:529;-1:-1:-1;;;;;;31072:51:0;-1:-1:-1;;;31072:51:0;;-1:-1:-1;31065:58:0;;30909:620;-1:-1:-1;31513:4:0;30737:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;6828:356::-;7030:2;7012:21;;;7049:18;;;7042:30;7108:34;7103:2;7088:18;;7081:62;7175:2;7160:18;;6828:356::o;8016:346::-;8218:2;8200:21;;;8257:2;8237:18;;;8230:30;-1:-1:-1;;;8291:2:1;8276:18;;8269:52;8353:2;8338:18;;8016:346::o;8367:127::-;8428:10;8423:3;8419:20;8416:1;8409:31;8459:4;8456:1;8449:15;8483:4;8480:1;8473:15;8499:127;8560:10;8555:3;8551:20;8548:1;8541:31;8591:4;8588:1;8581:15;8615:4;8612:1;8605:15;8631:135;8670:3;-1:-1:-1;;8691:17:1;;8688:43;;;8711:18;;:::i;:::-;-1:-1:-1;8758:1:1;8747:13;;8631:135::o;11373:128::-;11413:3;11444:1;11440:6;11437:1;11434:13;11431:39;;;11450:18;;:::i;:::-;-1:-1:-1;11486:9:1;;11373:128::o;11862:413::-;12064:2;12046:21;;;12103:2;12083:18;;;12076:30;12142:34;12137:2;12122:18;;12115:62;-1:-1:-1;;;12208:2:1;12193:18;;12186:47;12265:3;12250:19;;11862:413::o;12280:168::-;12320:7;12386:1;12382;12378:6;12374:14;12371:1;12368:21;12363:1;12356:9;12349:17;12345:45;12342:71;;;12393:18;;:::i;:::-;-1:-1:-1;12433:9:1;;12280:168::o;13553:637::-;13833:3;13871:6;13865:13;13887:53;13933:6;13928:3;13921:4;13913:6;13909:17;13887:53;:::i;:::-;14003:13;;13962:16;;;;14025:57;14003:13;13962:16;14059:4;14047:17;;14025:57;:::i;:::-;-1:-1:-1;;;14104:20:1;;14133:22;;;14182:1;14171:13;;13553:637;-1:-1:-1;;;;13553:637:1:o;14602:413::-;14804:2;14786:21;;;14843:2;14823:18;;;14816:30;14882:34;14877:2;14862:18;;14855:62;-1:-1:-1;;;14948:2:1;14933:18;;14926:47;15005:3;14990:19;;14602:413::o;15020:127::-;15081:10;15076:3;15072:20;15069:1;15062:31;15112:4;15109:1;15102:15;15136:4;15133:1;15126:15;15152:120;15192:1;15218;15208:35;;15223:18;;:::i;:::-;-1:-1:-1;15257:9:1;;15152:120::o;15277:125::-;15317:4;15345:1;15342;15339:8;15336:34;;;15350:18;;:::i;:::-;-1:-1:-1;15387:9:1;;15277:125::o;15407:112::-;15439:1;15465;15455:35;;15470:18;;:::i;:::-;-1:-1:-1;15504:9:1;;15407:112::o;16752:414::-;16954:2;16936:21;;;16993:2;16973:18;;;16966:30;17032:34;17027:2;17012:18;;17005:62;-1:-1:-1;;;17098:2:1;17083:18;;17076:48;17156:3;17141:19;;16752:414::o;17889:489::-;-1:-1:-1;;;;;18158:15:1;;;18140:34;;18210:15;;18205:2;18190:18;;18183:43;18257:2;18242:18;;18235:34;;;18305:3;18300:2;18285:18;;18278:31;;;18083:4;;18326:46;;18352:19;;18344:6;18326:46;:::i;:::-;18318:54;17889:489;-1:-1:-1;;;;;;17889:489:1:o;18383:249::-;18452:6;18505:2;18493:9;18484:7;18480:23;18476:32;18473:52;;;18521:1;18518;18511:12;18473:52;18553:9;18547:16;18572:30;18596:5;18572:30;:::i

Swarm Source

ipfs://efbb5d151f27b1fae61a32e05b32395b170927dda874d18ce1069b30c00ec1e8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.