ETH Price: $3,386.36 (-1.76%)
Gas: 1 Gwei

Token

Quacky Ducks (QD)
 

Overview

Max Total Supply

8,888 QD

Holders

2,565

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 QD
0xaadf7e0654551fdbbf7a64c28b49aefb15bfec30
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:
QuackyDucksContract

Compiler Version
v0.8.12+commit.f00d7308

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-03-02
*/

// SPDX-License-Identifier: GPL-3.0

/**

 $$$$$$\                                $$\                       $$$$$$$\                      $$\                 
$$  __$$\                               $$ |                      $$  __$$\                     $$ |                
$$ /  $$ |$$\   $$\  $$$$$$\   $$$$$$$\ $$ |  $$\ $$\   $$\       $$ |  $$ |$$\   $$\  $$$$$$$\ $$ |  $$\  $$$$$$$\ 
$$ |  $$ |$$ |  $$ | \____$$\ $$  _____|$$ | $$  |$$ |  $$ |      $$ |  $$ |$$ |  $$ |$$  _____|$$ | $$  |$$  _____|
$$ |  $$ |$$ |  $$ | $$$$$$$ |$$ /      $$$$$$  / $$ |  $$ |      $$ |  $$ |$$ |  $$ |$$ /      $$$$$$  / \$$$$$$\  
$$ $$\$$ |$$ |  $$ |$$  __$$ |$$ |      $$  _$$<  $$ |  $$ |      $$ |  $$ |$$ |  $$ |$$ |      $$  _$$<   \____$$\ 
\$$$$$$ / \$$$$$$  |\$$$$$$$ |\$$$$$$$\ $$ | \$$\ \$$$$$$$ |      $$$$$$$  |\$$$$$$  |\$$$$$$$\ $$ | \$$\ $$$$$$$  |
 \___$$$\  \______/  \_______| \_______|\__|  \__| \____$$ |      \_______/  \______/  \_______|\__|  \__|\_______/ 
     \___|                                        $$\   $$ |                                                        
                                                  \$$$$$$  |                                                        
                                                   \______/                                                         

*/

/**
    !Disclaimer!
    Please review this code on your own before using any of
    the following code for production.
    
*/

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
pragma solidity >=0.7.0 <0.9.0;

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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.06 ether;
  uint256 public maxSupply = 8888;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 5;
  bool public paused = true;
  bool public revealed = false;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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


  // public
function mint(uint256 _mintAmount ) public payable {

    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT"); 

    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
     if (msg.sender != owner()) {
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
 
  function withdraw() public payable onlyOwner {
    
    // This will payout the owner the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000207565b5066d529ae9e860000600e556122b8600f55600560108190556011556012805461ffff191660011790553480156200005f57600080fd5b5060405162002b4d38038062002b4d83398101604081905262000082916200037a565b8351849084906200009b90600090602085019062000207565b508051620000b190600190602084019062000207565b505050620000ce620000c8620000ee60201b60201c565b620000f2565b620000d98262000144565b620000e481620001ac565b5050505062000470565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001935760405162461bcd60e51b8152602060048201819052602482015260008051602062002b2d83398151915260448201526064015b60405180910390fd5b8051620001a890600b90602084019062000207565b5050565b600a546001600160a01b03163314620001f75760405162461bcd60e51b8152602060048201819052602482015260008051602062002b2d83398151915260448201526064016200018a565b8051620001a890600d9060208401905b828054620002159062000433565b90600052602060002090601f01602090048101928262000239576000855562000284565b82601f106200025457805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028457825182559160200191906001019062000267565b506200029292915062000296565b5090565b5b8082111562000292576000815560010162000297565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002d557600080fd5b81516001600160401b0380821115620002f257620002f2620002ad565b604051601f8301601f19908116603f011681019082821181831017156200031d576200031d620002ad565b816040528381526020925086838588010111156200033a57600080fd5b600091505b838210156200035e57858201830151818301840152908201906200033f565b83821115620003705760008385830101525b9695505050505050565b600080600080608085870312156200039157600080fd5b84516001600160401b0380821115620003a957600080fd5b620003b788838901620002c3565b95506020870151915080821115620003ce57600080fd5b620003dc88838901620002c3565b94506040870151915080821115620003f357600080fd5b6200040188838901620002c3565b935060608701519150808211156200041857600080fd5b506200042787828801620002c3565b91505092959194509250565b600181811c908216806200044857607f821691505b602082108114156200046a57634e487b7160e01b600052602260045260246000fd5b50919050565b6126ad80620004806000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610660578063da3ef23f14610676578063e985e9c514610696578063f2c4ce1e146106df578063f2fde38b146106ff57600080fd5b8063b88d4fde146105d5578063ba7d2c76146105f5578063c66828621461060b578063c87b56dd14610620578063d0eb26b01461064057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055a57806395d89b4114610578578063a0712d681461058d578063a22cb465146105a0578063a475b5dd146105c057600080fd5b80636352211e146104d05780636c0360eb146104f057806370a0823114610505578063715018a6146105255780637f00c7a61461053a57600080fd5b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104375780634f6ccce714610457578063518302271461047757806355f804b3146104965780635c975abb146104b657600080fd5b806323b872dd146103a25780632f745c59146103c25780633ccfd60b146103e257806342842e0e146103ea578063438b63001461040a57600080fd5b8063095ea7b311610203578063095ea7b31461030657806313faede61461032657806318160ddd1461034a57806318cae2691461035f578063239c70ae1461038c57600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612002565b61071f565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612034565b61074a565b005b3480156102a357600080fd5b506102ac610790565b60405161026c91906120a7565b3480156102c557600080fd5b506102d96102d43660046120ba565b610822565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b506102ac6108b7565b34801561031257600080fd5b506102956103213660046120ea565b610945565b34801561033257600080fd5b5061033c600e5481565b60405190815260200161026c565b34801561035657600080fd5b5060085461033c565b34801561036b57600080fd5b5061033c61037a366004612114565b60136020526000908152604090205481565b34801561039857600080fd5b5061033c60105481565b3480156103ae57600080fd5b506102956103bd36600461212f565b610a5b565b3480156103ce57600080fd5b5061033c6103dd3660046120ea565b610a8c565b610295610b22565b3480156103f657600080fd5b5061029561040536600461212f565b610bc0565b34801561041657600080fd5b5061042a610425366004612114565b610bdb565b60405161026c919061216b565b34801561044357600080fd5b506102956104523660046120ba565b610c7d565b34801561046357600080fd5b5061033c6104723660046120ba565b610cac565b34801561048357600080fd5b5060125461026090610100900460ff1681565b3480156104a257600080fd5b506102956104b136600461223b565b610d3f565b3480156104c257600080fd5b506012546102609060ff1681565b3480156104dc57600080fd5b506102d96104eb3660046120ba565b610d80565b3480156104fc57600080fd5b506102ac610df7565b34801561051157600080fd5b5061033c610520366004612114565b610e04565b34801561053157600080fd5b50610295610e8b565b34801561054657600080fd5b506102956105553660046120ba565b610ec1565b34801561056657600080fd5b50600a546001600160a01b03166102d9565b34801561058457600080fd5b506102ac610ef0565b61029561059b3660046120ba565b610eff565b3480156105ac57600080fd5b506102956105bb366004612284565b61117b565b3480156105cc57600080fd5b50610295611240565b3480156105e157600080fd5b506102956105f03660046122b7565b61127b565b34801561060157600080fd5b5061033c60115481565b34801561061757600080fd5b506102ac6112b3565b34801561062c57600080fd5b506102ac61063b3660046120ba565b6112c0565b34801561064c57600080fd5b5061029561065b3660046120ba565b61143f565b34801561066c57600080fd5b5061033c600f5481565b34801561068257600080fd5b5061029561069136600461223b565b61146e565b3480156106a257600080fd5b506102606106b1366004612333565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106eb57600080fd5b506102956106fa36600461223b565b6114ab565b34801561070b57600080fd5b5061029561071a366004612114565b6114e8565b60006001600160e01b0319821663780e9d6360e01b1480610744575061074482611580565b92915050565b600a546001600160a01b0316331461077d5760405162461bcd60e51b81526004016107749061235d565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461079f90612392565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90612392565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b506000908152600460205260409020546001600160a01b031690565b600d80546108c490612392565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090612392565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b600061095082610d80565b9050806001600160a01b0316836001600160a01b031614156109be5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610774565b336001600160a01b03821614806109da57506109da81336106b1565b610a4c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610774565b610a5683836115d0565b505050565b610a65338261163e565b610a815760405162461bcd60e51b8152600401610774906123cd565b610a56838383611735565b6000610a9783610e04565b8210610af95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610774565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b4c5760405162461bcd60e51b81526004016107749061235d565b6000610b60600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bbd57600080fd5b50565b610a568383836040518060200160405280600081525061127b565b60606000610be883610e04565b905060008167ffffffffffffffff811115610c0557610c056121af565b604051908082528060200260200182016040528015610c2e578160200160208202803683370190505b50905060005b82811015610c7557610c468582610a8c565b828281518110610c5857610c5861241e565b602090810291909101015280610c6d8161244a565b915050610c34565b509392505050565b600a546001600160a01b03163314610ca75760405162461bcd60e51b81526004016107749061235d565b600e55565b6000610cb760085490565b8210610d1a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610774565b60088281548110610d2d57610d2d61241e565b90600052602060002001549050919050565b600a546001600160a01b03163314610d695760405162461bcd60e51b81526004016107749061235d565b8051610d7c90600b906020840190611f53565b5050565b6000818152600260205260408120546001600160a01b0316806107445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610774565b600b80546108c490612392565b60006001600160a01b038216610e6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610774565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610eb55760405162461bcd60e51b81526004016107749061235d565b610ebf60006118e0565b565b600a546001600160a01b03163314610eeb5760405162461bcd60e51b81526004016107749061235d565b601055565b60606001805461079f90612392565b60125460ff1615610f4b5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610774565b6000610f5660085490565b905060008211610fa85760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610774565b600f54610fb58383612465565b1115610ffc5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610774565b600a546001600160a01b0316331461112b5760105482111561106c5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610774565b336000908152601360205260409020546011546110898483612465565b11156110d75760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610774565b82600e546110e5919061247d565b3410156111295760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610774565b505b60015b828111610a56573360009081526013602052604081208054916111508361244a565b909155506111699050336111648385612465565b611932565b806111738161244a565b91505061112e565b6001600160a01b0382163314156111d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610774565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461126a5760405162461bcd60e51b81526004016107749061235d565b6012805461ff001916610100179055565b611285338361163e565b6112a15760405162461bcd60e51b8152600401610774906123cd565b6112ad8484848461194c565b50505050565b600c80546108c490612392565b6000818152600260205260409020546060906001600160a01b031661133f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610774565b601254610100900460ff166113e057600d805461135b90612392565b80601f016020809104026020016040519081016040528092919081815260200182805461138790612392565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b50505050509050919050565b60006113ea61197f565b9050600081511161140a5760405180602001604052806000815250611438565b806114148461198e565b600c6040516020016114289392919061249c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114695760405162461bcd60e51b81526004016107749061235d565b601155565b600a546001600160a01b031633146114985760405162461bcd60e51b81526004016107749061235d565b8051610d7c90600c906020840190611f53565b600a546001600160a01b031633146114d55760405162461bcd60e51b81526004016107749061235d565b8051610d7c90600d906020840190611f53565b600a546001600160a01b031633146115125760405162461bcd60e51b81526004016107749061235d565b6001600160a01b0381166115775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610774565b610bbd816118e0565b60006001600160e01b031982166380ac58cd60e01b14806115b157506001600160e01b03198216635b5e139f60e01b145b8061074457506301ffc9a760e01b6001600160e01b0319831614610744565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160582610d80565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b60006116c283610d80565b9050806001600160a01b0316846001600160a01b031614806116fd5750836001600160a01b03166116f284610822565b6001600160a01b0316145b8061172d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661174882610d80565b6001600160a01b0316146117b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610774565b6001600160a01b0382166118125760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610774565b61181d838383611a8c565b6118286000826115d0565b6001600160a01b0383166000908152600360205260408120805460019290611851908490612560565b90915550506001600160a01b038216600090815260036020526040812080546001929061187f908490612465565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d7c828260405180602001604052806000815250611b44565b611957848484611735565b61196384848484611b77565b6112ad5760405162461bcd60e51b815260040161077490612577565b6060600b805461079f90612392565b6060816119b25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119dc57806119c68161244a565b91506119d59050600a836125df565b91506119b6565b60008167ffffffffffffffff8111156119f7576119f76121af565b6040519080825280601f01601f191660200182016040528015611a21576020820181803683370190505b5090505b841561172d57611a36600183612560565b9150611a43600a866125f3565b611a4e906030612465565b60f81b818381518110611a6357611a6361241e565b60200101906001600160f81b031916908160001a905350611a85600a866125df565b9450611a25565b6001600160a01b038316611ae757611ae281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b0a565b816001600160a01b0316836001600160a01b031614611b0a57611b0a8382611c75565b6001600160a01b038216611b2157610a5681611d12565b826001600160a01b0316826001600160a01b031614610a5657610a568282611dc1565b611b4e8383611e05565b611b5b6000848484611b77565b610a565760405162461bcd60e51b815260040161077490612577565b60006001600160a01b0384163b15611c6a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bbb903390899088908890600401612607565b6020604051808303816000875af1925050508015611bf6575060408051601f3d908101601f19168201909252611bf391810190612644565b60015b611c50573d808015611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b508051611c485760405162461bcd60e51b815260040161077490612577565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061172d565b506001949350505050565b60006001611c8284610e04565b611c8c9190612560565b600083815260076020526040902054909150808214611cdf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d2490600190612560565b60008381526009602052604081205460088054939450909284908110611d4c57611d4c61241e565b906000526020600020015490508060088381548110611d6d57611d6d61241e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611da557611da5612661565b6001900381819060005260206000200160009055905550505050565b6000611dcc83610e04565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e5b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610774565b6000818152600260205260409020546001600160a01b031615611ec05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610774565b611ecc60008383611a8c565b6001600160a01b0382166000908152600360205260408120805460019290611ef5908490612465565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f5f90612392565b90600052602060002090601f016020900481019282611f815760008555611fc7565b82601f10611f9a57805160ff1916838001178555611fc7565b82800160010185558215611fc7579182015b82811115611fc7578251825591602001919060010190611fac565b50611fd3929150611fd7565b5090565b5b80821115611fd35760008155600101611fd8565b6001600160e01b031981168114610bbd57600080fd5b60006020828403121561201457600080fd5b813561143881611fec565b8035801515811461202f57600080fd5b919050565b60006020828403121561204657600080fd5b6114388261201f565b60005b8381101561206a578181015183820152602001612052565b838111156112ad5750506000910152565b6000815180845261209381602086016020860161204f565b601f01601f19169290920160200192915050565b602081526000611438602083018461207b565b6000602082840312156120cc57600080fd5b5035919050565b80356001600160a01b038116811461202f57600080fd5b600080604083850312156120fd57600080fd5b612106836120d3565b946020939093013593505050565b60006020828403121561212657600080fd5b611438826120d3565b60008060006060848603121561214457600080fd5b61214d846120d3565b925061215b602085016120d3565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156121a357835183529284019291840191600101612187565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121e0576121e06121af565b604051601f8501601f19908116603f01168101908282118183101715612208576122086121af565b8160405280935085815286868601111561222157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561224d57600080fd5b813567ffffffffffffffff81111561226457600080fd5b8201601f8101841361227557600080fd5b61172d848235602084016121c5565b6000806040838503121561229757600080fd5b6122a0836120d3565b91506122ae6020840161201f565b90509250929050565b600080600080608085870312156122cd57600080fd5b6122d6856120d3565b93506122e4602086016120d3565b925060408501359150606085013567ffffffffffffffff81111561230757600080fd5b8501601f8101871361231857600080fd5b612327878235602084016121c5565b91505092959194509250565b6000806040838503121561234657600080fd5b61234f836120d3565b91506122ae602084016120d3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123a657607f821691505b602082108114156123c757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561245e5761245e612434565b5060010190565b6000821982111561247857612478612434565b500190565b600081600019048311821515161561249757612497612434565b500290565b6000845160206124af8285838a0161204f565b8551918401916124c28184848a0161204f565b8554920191600090600181811c90808316806124df57607f831692505b8583108114156124fd57634e487b7160e01b85526022600452602485fd5b80801561251157600181146125225761254f565b60ff1985168852838801955061254f565b60008b81526020902060005b858110156125475781548a82015290840190880161252e565b505083880195505b50939b9a5050505050505050505050565b60008282101561257257612572612434565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826125ee576125ee6125c9565b500490565b600082612602576126026125c9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263a9083018461207b565b9695505050505050565b60006020828403121561265657600080fd5b815161143881611fec565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220909158c00eba4b83fec4d1dd8aff7f093519335946f26ea7c5f0fb264217fa7364736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c517561636b79204475636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000251440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d504159506e775146733935756177484261645265415a485a467465703170685145435542643336324a454b462f000000000000000000000000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d5053516f6f585a4a66357942383442596a5442397a747346707a347736536876594566756a5558385a6e52382f517561636b7948696464656e2e6a736f6e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610660578063da3ef23f14610676578063e985e9c514610696578063f2c4ce1e146106df578063f2fde38b146106ff57600080fd5b8063b88d4fde146105d5578063ba7d2c76146105f5578063c66828621461060b578063c87b56dd14610620578063d0eb26b01461064057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055a57806395d89b4114610578578063a0712d681461058d578063a22cb465146105a0578063a475b5dd146105c057600080fd5b80636352211e146104d05780636c0360eb146104f057806370a0823114610505578063715018a6146105255780637f00c7a61461053a57600080fd5b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146104375780634f6ccce714610457578063518302271461047757806355f804b3146104965780635c975abb146104b657600080fd5b806323b872dd146103a25780632f745c59146103c25780633ccfd60b146103e257806342842e0e146103ea578063438b63001461040a57600080fd5b8063095ea7b311610203578063095ea7b31461030657806313faede61461032657806318160ddd1461034a57806318cae2691461035f578063239c70ae1461038c57600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612002565b61071f565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612034565b61074a565b005b3480156102a357600080fd5b506102ac610790565b60405161026c91906120a7565b3480156102c557600080fd5b506102d96102d43660046120ba565b610822565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b506102ac6108b7565b34801561031257600080fd5b506102956103213660046120ea565b610945565b34801561033257600080fd5b5061033c600e5481565b60405190815260200161026c565b34801561035657600080fd5b5060085461033c565b34801561036b57600080fd5b5061033c61037a366004612114565b60136020526000908152604090205481565b34801561039857600080fd5b5061033c60105481565b3480156103ae57600080fd5b506102956103bd36600461212f565b610a5b565b3480156103ce57600080fd5b5061033c6103dd3660046120ea565b610a8c565b610295610b22565b3480156103f657600080fd5b5061029561040536600461212f565b610bc0565b34801561041657600080fd5b5061042a610425366004612114565b610bdb565b60405161026c919061216b565b34801561044357600080fd5b506102956104523660046120ba565b610c7d565b34801561046357600080fd5b5061033c6104723660046120ba565b610cac565b34801561048357600080fd5b5060125461026090610100900460ff1681565b3480156104a257600080fd5b506102956104b136600461223b565b610d3f565b3480156104c257600080fd5b506012546102609060ff1681565b3480156104dc57600080fd5b506102d96104eb3660046120ba565b610d80565b3480156104fc57600080fd5b506102ac610df7565b34801561051157600080fd5b5061033c610520366004612114565b610e04565b34801561053157600080fd5b50610295610e8b565b34801561054657600080fd5b506102956105553660046120ba565b610ec1565b34801561056657600080fd5b50600a546001600160a01b03166102d9565b34801561058457600080fd5b506102ac610ef0565b61029561059b3660046120ba565b610eff565b3480156105ac57600080fd5b506102956105bb366004612284565b61117b565b3480156105cc57600080fd5b50610295611240565b3480156105e157600080fd5b506102956105f03660046122b7565b61127b565b34801561060157600080fd5b5061033c60115481565b34801561061757600080fd5b506102ac6112b3565b34801561062c57600080fd5b506102ac61063b3660046120ba565b6112c0565b34801561064c57600080fd5b5061029561065b3660046120ba565b61143f565b34801561066c57600080fd5b5061033c600f5481565b34801561068257600080fd5b5061029561069136600461223b565b61146e565b3480156106a257600080fd5b506102606106b1366004612333565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106eb57600080fd5b506102956106fa36600461223b565b6114ab565b34801561070b57600080fd5b5061029561071a366004612114565b6114e8565b60006001600160e01b0319821663780e9d6360e01b1480610744575061074482611580565b92915050565b600a546001600160a01b0316331461077d5760405162461bcd60e51b81526004016107749061235d565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461079f90612392565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90612392565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b506000908152600460205260409020546001600160a01b031690565b600d80546108c490612392565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090612392565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b600061095082610d80565b9050806001600160a01b0316836001600160a01b031614156109be5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610774565b336001600160a01b03821614806109da57506109da81336106b1565b610a4c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610774565b610a5683836115d0565b505050565b610a65338261163e565b610a815760405162461bcd60e51b8152600401610774906123cd565b610a56838383611735565b6000610a9783610e04565b8210610af95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610774565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b4c5760405162461bcd60e51b81526004016107749061235d565b6000610b60600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bbd57600080fd5b50565b610a568383836040518060200160405280600081525061127b565b60606000610be883610e04565b905060008167ffffffffffffffff811115610c0557610c056121af565b604051908082528060200260200182016040528015610c2e578160200160208202803683370190505b50905060005b82811015610c7557610c468582610a8c565b828281518110610c5857610c5861241e565b602090810291909101015280610c6d8161244a565b915050610c34565b509392505050565b600a546001600160a01b03163314610ca75760405162461bcd60e51b81526004016107749061235d565b600e55565b6000610cb760085490565b8210610d1a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610774565b60088281548110610d2d57610d2d61241e565b90600052602060002001549050919050565b600a546001600160a01b03163314610d695760405162461bcd60e51b81526004016107749061235d565b8051610d7c90600b906020840190611f53565b5050565b6000818152600260205260408120546001600160a01b0316806107445760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610774565b600b80546108c490612392565b60006001600160a01b038216610e6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610774565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610eb55760405162461bcd60e51b81526004016107749061235d565b610ebf60006118e0565b565b600a546001600160a01b03163314610eeb5760405162461bcd60e51b81526004016107749061235d565b601055565b60606001805461079f90612392565b60125460ff1615610f4b5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610774565b6000610f5660085490565b905060008211610fa85760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610774565b600f54610fb58383612465565b1115610ffc5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610774565b600a546001600160a01b0316331461112b5760105482111561106c5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610774565b336000908152601360205260409020546011546110898483612465565b11156110d75760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610774565b82600e546110e5919061247d565b3410156111295760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610774565b505b60015b828111610a56573360009081526013602052604081208054916111508361244a565b909155506111699050336111648385612465565b611932565b806111738161244a565b91505061112e565b6001600160a01b0382163314156111d45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610774565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461126a5760405162461bcd60e51b81526004016107749061235d565b6012805461ff001916610100179055565b611285338361163e565b6112a15760405162461bcd60e51b8152600401610774906123cd565b6112ad8484848461194c565b50505050565b600c80546108c490612392565b6000818152600260205260409020546060906001600160a01b031661133f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610774565b601254610100900460ff166113e057600d805461135b90612392565b80601f016020809104026020016040519081016040528092919081815260200182805461138790612392565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b50505050509050919050565b60006113ea61197f565b9050600081511161140a5760405180602001604052806000815250611438565b806114148461198e565b600c6040516020016114289392919061249c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114695760405162461bcd60e51b81526004016107749061235d565b601155565b600a546001600160a01b031633146114985760405162461bcd60e51b81526004016107749061235d565b8051610d7c90600c906020840190611f53565b600a546001600160a01b031633146114d55760405162461bcd60e51b81526004016107749061235d565b8051610d7c90600d906020840190611f53565b600a546001600160a01b031633146115125760405162461bcd60e51b81526004016107749061235d565b6001600160a01b0381166115775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610774565b610bbd816118e0565b60006001600160e01b031982166380ac58cd60e01b14806115b157506001600160e01b03198216635b5e139f60e01b145b8061074457506301ffc9a760e01b6001600160e01b0319831614610744565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160582610d80565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610774565b60006116c283610d80565b9050806001600160a01b0316846001600160a01b031614806116fd5750836001600160a01b03166116f284610822565b6001600160a01b0316145b8061172d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661174882610d80565b6001600160a01b0316146117b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610774565b6001600160a01b0382166118125760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610774565b61181d838383611a8c565b6118286000826115d0565b6001600160a01b0383166000908152600360205260408120805460019290611851908490612560565b90915550506001600160a01b038216600090815260036020526040812080546001929061187f908490612465565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d7c828260405180602001604052806000815250611b44565b611957848484611735565b61196384848484611b77565b6112ad5760405162461bcd60e51b815260040161077490612577565b6060600b805461079f90612392565b6060816119b25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119dc57806119c68161244a565b91506119d59050600a836125df565b91506119b6565b60008167ffffffffffffffff8111156119f7576119f76121af565b6040519080825280601f01601f191660200182016040528015611a21576020820181803683370190505b5090505b841561172d57611a36600183612560565b9150611a43600a866125f3565b611a4e906030612465565b60f81b818381518110611a6357611a6361241e565b60200101906001600160f81b031916908160001a905350611a85600a866125df565b9450611a25565b6001600160a01b038316611ae757611ae281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b0a565b816001600160a01b0316836001600160a01b031614611b0a57611b0a8382611c75565b6001600160a01b038216611b2157610a5681611d12565b826001600160a01b0316826001600160a01b031614610a5657610a568282611dc1565b611b4e8383611e05565b611b5b6000848484611b77565b610a565760405162461bcd60e51b815260040161077490612577565b60006001600160a01b0384163b15611c6a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bbb903390899088908890600401612607565b6020604051808303816000875af1925050508015611bf6575060408051601f3d908101601f19168201909252611bf391810190612644565b60015b611c50573d808015611c24576040519150601f19603f3d011682016040523d82523d6000602084013e611c29565b606091505b508051611c485760405162461bcd60e51b815260040161077490612577565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061172d565b506001949350505050565b60006001611c8284610e04565b611c8c9190612560565b600083815260076020526040902054909150808214611cdf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d2490600190612560565b60008381526009602052604081205460088054939450909284908110611d4c57611d4c61241e565b906000526020600020015490508060088381548110611d6d57611d6d61241e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611da557611da5612661565b6001900381819060005260206000200160009055905550505050565b6000611dcc83610e04565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e5b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610774565b6000818152600260205260409020546001600160a01b031615611ec05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610774565b611ecc60008383611a8c565b6001600160a01b0382166000908152600360205260408120805460019290611ef5908490612465565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f5f90612392565b90600052602060002090601f016020900481019282611f815760008555611fc7565b82601f10611f9a57805160ff1916838001178555611fc7565b82800160010185558215611fc7579182015b82811115611fc7578251825591602001919060010190611fac565b50611fd3929150611fd7565b5090565b5b80821115611fd35760008155600101611fd8565b6001600160e01b031981168114610bbd57600080fd5b60006020828403121561201457600080fd5b813561143881611fec565b8035801515811461202f57600080fd5b919050565b60006020828403121561204657600080fd5b6114388261201f565b60005b8381101561206a578181015183820152602001612052565b838111156112ad5750506000910152565b6000815180845261209381602086016020860161204f565b601f01601f19169290920160200192915050565b602081526000611438602083018461207b565b6000602082840312156120cc57600080fd5b5035919050565b80356001600160a01b038116811461202f57600080fd5b600080604083850312156120fd57600080fd5b612106836120d3565b946020939093013593505050565b60006020828403121561212657600080fd5b611438826120d3565b60008060006060848603121561214457600080fd5b61214d846120d3565b925061215b602085016120d3565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156121a357835183529284019291840191600101612187565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121e0576121e06121af565b604051601f8501601f19908116603f01168101908282118183101715612208576122086121af565b8160405280935085815286868601111561222157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561224d57600080fd5b813567ffffffffffffffff81111561226457600080fd5b8201601f8101841361227557600080fd5b61172d848235602084016121c5565b6000806040838503121561229757600080fd5b6122a0836120d3565b91506122ae6020840161201f565b90509250929050565b600080600080608085870312156122cd57600080fd5b6122d6856120d3565b93506122e4602086016120d3565b925060408501359150606085013567ffffffffffffffff81111561230757600080fd5b8501601f8101871361231857600080fd5b612327878235602084016121c5565b91505092959194509250565b6000806040838503121561234657600080fd5b61234f836120d3565b91506122ae602084016120d3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123a657607f821691505b602082108114156123c757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561245e5761245e612434565b5060010190565b6000821982111561247857612478612434565b500190565b600081600019048311821515161561249757612497612434565b500290565b6000845160206124af8285838a0161204f565b8551918401916124c28184848a0161204f565b8554920191600090600181811c90808316806124df57607f831692505b8583108114156124fd57634e487b7160e01b85526022600452602485fd5b80801561251157600181146125225761254f565b60ff1985168852838801955061254f565b60008b81526020902060005b858110156125475781548a82015290840190880161252e565b505083880195505b50939b9a5050505050505050505050565b60008282101561257257612572612434565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826125ee576125ee6125c9565b500490565b600082612602576126026125c9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263a9083018461207b565b9695505050505050565b60006020828403121561265657600080fd5b815161143881611fec565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220909158c00eba4b83fec4d1dd8aff7f093519335946f26ea7c5f0fb264217fa7364736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c517561636b79204475636b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000251440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d504159506e775146733935756177484261645265415a485a467465703170685145435542643336324a454b462f000000000000000000000000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d5053516f6f585a4a66357942383442596a5442397a747346707a347736536876594566756a5558385a6e52382f517561636b7948696464656e2e6a736f6e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Quacky Ducks
Arg [1] : _symbol (string): QD
Arg [2] : _initBaseURI (string): ipfs://QmPAYPnwQFs95uawHBadReAZHZFtep1phQECUBd362JEKF/
Arg [3] : _initNotRevealedUri (string): ipfs://QmPSQooXZJf5yB84BYjTB9ztsFpz4w6ShvYEfujUX8ZnR8/QuackyHidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 517561636b79204475636b730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5144000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d504159506e775146733935756177484261645265415a48
Arg [10] : 5a467465703170685145435542643336324a454b462f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [12] : 697066733a2f2f516d5053516f6f585a4a66357942383442596a5442397a7473
Arg [13] : 46707a347736536876594566756a5558385a6e52382f517561636b7948696464
Arg [14] : 656e2e6a736f6e00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44566:3856:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36115:224;;;;;;;;;;-1:-1:-1;36115:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36115:224:0;;;;;;;;47874:73;;;;;;;;;;-1:-1:-1;47874:73:0;;;;;:::i;:::-;;:::i;:::-;;24007:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25566:221::-;;;;;;;;;;-1:-1:-1;25566:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;25566:221:0;1878:203:1;44729:28:0;;;;;;;;;;;;;:::i;25089:411::-;;;;;;;;;;-1:-1:-1;25089:411:0;;;;;:::i;:::-;;:::i;44762:32::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;44762:32:0;2523:177:1;36755:113:0;;;;;;;;;;-1:-1:-1;36843:10:0;:17;36755:113;;44977:55;;;;;;;;;;-1:-1:-1;44977:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;44835:32;;;;;;;;;;;;;;;;26456:339;;;;;;;;;;-1:-1:-1;26456:339:0;;;;;:::i;:::-;;:::i;36423:256::-;;;;;;;;;;-1:-1:-1;36423:256:0;;;;;:::i;:::-;;:::i;47958:461::-;;;:::i;26866:185::-;;;;;;;;;;-1:-1:-1;26866:185:0;;;;;:::i;:::-;;:::i;46248:348::-;;;;;;;;;;-1:-1:-1;46248:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47306:80::-;;;;;;;;;;-1:-1:-1;47306:80:0;;;;;:::i;:::-;;:::i;36945:233::-;;;;;;;;;;-1:-1:-1;36945:233:0;;;;;:::i;:::-;;:::i;44944:28::-;;;;;;;;;;-1:-1:-1;44944:28:0;;;;;;;;;;;47514:98;;;;;;;;;;-1:-1:-1;47514:98:0;;;;;:::i;:::-;;:::i;44914:25::-;;;;;;;;;;-1:-1:-1;44914:25:0;;;;;;;;23701:239;;;;;;;;;;-1:-1:-1;23701:239:0;;;;;:::i;:::-;;:::i;44661:21::-;;;;;;;;;;;;;:::i;23431:208::-;;;;;;;;;;-1:-1:-1;23431:208:0;;;;;:::i;:::-;;:::i;43904:94::-;;;;;;;;;;;;;:::i;47392:116::-;;;;;;;;;;-1:-1:-1;47392:116:0;;;;;:::i;:::-;;:::i;43253:87::-;;;;;;;;;;-1:-1:-1;43326:6:0;;-1:-1:-1;;;;;43326:6:0;43253:87;;24176:104;;;;;;;;;;;;;:::i;45426:810::-;;;;;;:::i;:::-;;:::i;25859:295::-;;;;;;;;;;-1:-1:-1;25859:295:0;;;;;:::i;:::-;;:::i;47121:65::-;;;;;;;;;;;;;:::i;27122:328::-;;;;;;;;;;-1:-1:-1;27122:328:0;;;;;:::i;:::-;;:::i;44872:37::-;;;;;;;;;;;;;;;;44687;;;;;;;;;;;;;:::i;46602:497::-;;;;;;;;;;-1:-1:-1;46602:497:0;;;;;:::i;:::-;;:::i;47194:104::-;;;;;;;;;;-1:-1:-1;47194:104:0;;;;;:::i;:::-;;:::i;44799:31::-;;;;;;;;;;;;;;;;47618:122;;;;;;;;;;-1:-1:-1;47618:122:0;;;;;:::i;:::-;;:::i;26225:164::-;;;;;;;;;;-1:-1:-1;26225:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26346:25:0;;;26322:4;26346:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26225:164;47748:120;;;;;;;;;;-1:-1:-1;47748:120:0;;;;;:::i;:::-;;:::i;44153:192::-;;;;;;;;;;-1:-1:-1;44153:192:0;;;;;:::i;:::-;;:::i;36115:224::-;36217:4;-1:-1:-1;;;;;;36241:50:0;;-1:-1:-1;;;36241:50:0;;:90;;;36295:36;36319:11;36295:23;:36::i;:::-;36234:97;36115:224;-1:-1:-1;;36115:224:0:o;47874:73::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;;;;;;;;;47926:6:::1;:15:::0;;-1:-1:-1;;47926:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47874:73::o;24007:100::-;24061:13;24094:5;24087:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24007:100;:::o;25566:221::-;25642:7;29049:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29049:16:0;25662:73;;;;-1:-1:-1;;;25662:73:0;;7235:2:1;25662:73:0;;;7217:21:1;7274:2;7254:18;;;7247:30;7313:34;7293:18;;;7286:62;-1:-1:-1;;;7364:18:1;;;7357:42;7416:19;;25662:73:0;7033:408:1;25662:73:0;-1:-1:-1;25755:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25755:24:0;;25566:221::o;44729:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25089:411::-;25170:13;25186:23;25201:7;25186:14;:23::i;:::-;25170:39;;25234:5;-1:-1:-1;;;;;25228:11:0;:2;-1:-1:-1;;;;;25228:11:0;;;25220:57;;;;-1:-1:-1;;;25220:57:0;;7648:2:1;25220:57:0;;;7630:21:1;7687:2;7667:18;;;7660:30;7726:34;7706:18;;;7699:62;-1:-1:-1;;;7777:18:1;;;7770:31;7818:19;;25220:57:0;7446:397:1;25220:57:0;21616:10;-1:-1:-1;;;;;25312:21:0;;;;:62;;-1:-1:-1;25337:37:0;25354:5;21616:10;26225:164;:::i;25337:37::-;25290:168;;;;-1:-1:-1;;;25290:168:0;;8050:2:1;25290:168:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;8199:26;8179:18;;;8172:54;8243:19;;25290:168:0;7848:420:1;25290:168:0;25471:21;25480:2;25484:7;25471:8;:21::i;:::-;25159:341;25089:411;;:::o;26456:339::-;26651:41;21616:10;26684:7;26651:18;:41::i;:::-;26643:103;;;;-1:-1:-1;;;26643:103:0;;;;;;;:::i;:::-;26759:28;26769:4;26775:2;26779:7;26759:9;:28::i;36423:256::-;36520:7;36556:23;36573:5;36556:16;:23::i;:::-;36548:5;:31;36540:87;;;;-1:-1:-1;;;36540:87:0;;8893:2:1;36540:87:0;;;8875:21:1;8932:2;8912:18;;;8905:30;8971:34;8951:18;;;8944:62;-1:-1:-1;;;9022:18:1;;;9015:41;9073:19;;36540:87:0;8691:407:1;36540:87:0;-1:-1:-1;;;;;;36645:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36423:256::o;47958:461::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;48241:7:::1;48262;43326:6:::0;;-1:-1:-1;;;;;43326:6:0;;43253:87;48262:7:::1;-1:-1:-1::0;;;;;48254:21:0::1;48283;48254:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48240:69;;;48324:2;48316:11;;;::::0;::::1;;48003:416;47958:461::o:0;26866:185::-;27004:39;27021:4;27027:2;27031:7;27004:39;;;;;;;;;;;;:16;:39::i;46248:348::-;46323:16;46351:23;46377:17;46387:6;46377:9;:17::i;:::-;46351:43;;46401:25;46443:15;46429:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46429:30:0;;46401:58;;46471:9;46466:103;46486:15;46482:1;:19;46466:103;;;46531:30;46551:6;46559:1;46531:19;:30::i;:::-;46517:8;46526:1;46517:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46503:3;;;;:::i;:::-;;;;46466:103;;;-1:-1:-1;46582:8:0;46248:348;-1:-1:-1;;;46248:348:0:o;47306:80::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47365:4:::1;:15:::0;47306:80::o;36945:233::-;37020:7;37056:30;36843:10;:17;;36755:113;37056:30;37048:5;:38;37040:95;;;;-1:-1:-1;;;37040:95:0;;9919:2:1;37040:95:0;;;9901:21:1;9958:2;9938:18;;;9931:30;9997:34;9977:18;;;9970:62;-1:-1:-1;;;10048:18:1;;;10041:42;10100:19;;37040:95:0;9717:408:1;37040:95:0;37153:10;37164:5;37153:17;;;;;;;;:::i;:::-;;;;;;;;;37146:24;;36945:233;;;:::o;47514:98::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47585:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47514:98:::0;:::o;23701:239::-;23773:7;23809:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23809:16:0;23844:19;23836:73;;;;-1:-1:-1;;;23836:73:0;;10332:2:1;23836:73:0;;;10314:21:1;10371:2;10351:18;;;10344:30;10410:34;10390:18;;;10383:62;-1:-1:-1;;;10461:18:1;;;10454:39;10510:19;;23836:73:0;10130:405:1;44661:21:0;;;;;;;:::i;23431:208::-;23503:7;-1:-1:-1;;;;;23531:19:0;;23523:74;;;;-1:-1:-1;;;23523:74:0;;10742:2:1;23523:74:0;;;10724:21:1;10781:2;10761:18;;;10754:30;10820:34;10800:18;;;10793:62;-1:-1:-1;;;10871:18:1;;;10864:40;10921:19;;23523:74:0;10540:406:1;23523:74:0;-1:-1:-1;;;;;;23615:16:0;;;;;:9;:16;;;;;;;23431:208::o;43904:94::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;43969:21:::1;43987:1;43969:9;:21::i;:::-;43904:94::o:0;47392:116::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47469:13:::1;:33:::0;47392:116::o;24176:104::-;24232:13;24265:7;24258:14;;;;;:::i;45426:810::-;45495:6;;;;45494:7;45486:42;;;;-1:-1:-1;;;45486:42:0;;11153:2:1;45486:42:0;;;11135:21:1;11192:2;11172:18;;;11165:30;-1:-1:-1;;;11211:18:1;;;11204:52;11273:18;;45486:42:0;10951:346:1;45486:42:0;45535:14;45552:13;36843:10;:17;;36755:113;45552:13;45535:30;;45594:1;45580:11;:15;45572:55;;;;-1:-1:-1;;;45572:55:0;;11504:2:1;45572:55:0;;;11486:21:1;11543:2;11523:18;;;11516:30;11582:29;11562:18;;;11555:57;11629:18;;45572:55:0;11302:351:1;45572:55:0;45669:9;;45645:20;45654:11;45645:6;:20;:::i;:::-;:33;;45637:68;;;;-1:-1:-1;;;45637:68:0;;11993:2:1;45637:68:0;;;11975:21:1;12032:2;12012:18;;;12005:30;-1:-1:-1;;;12051:18:1;;;12044:52;12113:18;;45637:68:0;11791:346:1;45637:68:0;43326:6;;-1:-1:-1;;;;;43326:6:0;45717:10;:21;45713:376;;45774:13;;45759:11;:28;;45751:77;;;;-1:-1:-1;;;45751:77:0;;12344:2:1;45751:77:0;;;12326:21:1;12383:2;12363:18;;;12356:30;12422:34;12402:18;;;12395:62;-1:-1:-1;;;12473:18:1;;;12466:34;12517:19;;45751:77:0;12142:400:1;45751:77:0;45893:10;45845:24;45872:32;;;:20;:32;;;;;;45957:18;;45923:30;45942:11;45872:32;45923:30;:::i;:::-;:52;;45915:93;;;;-1:-1:-1;;;45915:93:0;;12749:2:1;45915:93:0;;;12731:21:1;12788:2;12768:18;;;12761:30;12827;12807:18;;;12800:58;12875:18;;45915:93:0;12547:352:1;45915:93:0;46047:11;46040:4;;:18;;;;:::i;:::-;46027:9;:31;;46019:62;;;;-1:-1:-1;;;46019:62:0;;13279:2:1;46019:62:0;;;13261:21:1;13318:2;13298:18;;;13291:30;-1:-1:-1;;;13337:18:1;;;13330:48;13395:18;;46019:62:0;13077:342:1;46019:62:0;45740:349;45713:376;46112:1;46095:136;46120:11;46115:1;:16;46095:136;;46168:10;46147:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;46190:33:0;;-1:-1:-1;46200:10:0;46212;46221:1;46212:6;:10;:::i;:::-;46190:9;:33::i;:::-;46133:3;;;;:::i;:::-;;;;46095:136;;25859:295;-1:-1:-1;;;;;25962:24:0;;21616:10;25962:24;;25954:62;;;;-1:-1:-1;;;25954:62:0;;13626:2:1;25954:62:0;;;13608:21:1;13665:2;13645:18;;;13638:30;13704:27;13684:18;;;13677:55;13749:18;;25954:62:0;13424:349:1;25954:62:0;21616:10;26029:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26029:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26029:53:0;;;;;;;;;;26098:48;;540:41:1;;;26029:42:0;;21616:10;26098:48;;513:18:1;26098:48:0;;;;;;;25859:295;;:::o;47121:65::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47165:8:::1;:15:::0;;-1:-1:-1;;47165:15:0::1;;;::::0;;47121:65::o;27122:328::-;27297:41;21616:10;27330:7;27297:18;:41::i;:::-;27289:103;;;;-1:-1:-1;;;27289:103:0;;;;;;;:::i;:::-;27403:39;27417:4;27423:2;27427:7;27436:5;27403:13;:39::i;:::-;27122:328;;;;:::o;44687:37::-;;;;;;;:::i;46602:497::-;29025:4;29049:16;;;:7;:16;;;;;;46700:13;;-1:-1:-1;;;;;29049:16:0;46725:97;;;;-1:-1:-1;;;46725:97:0;;13980:2:1;46725:97:0;;;13962:21:1;14019:2;13999:18;;;13992:30;14058:34;14038:18;;;14031:62;-1:-1:-1;;;14109:18:1;;;14102:45;14164:19;;46725:97:0;13778:411:1;46725:97:0;46838:8;;;;;;;46835:62;;46875:14;46868:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46602:497;;;:::o;46835:62::-;46905:28;46936:10;:8;:10::i;:::-;46905:41;;46991:1;46966:14;46960:28;:32;:133;;;;;;;;;;;;;;;;;47028:14;47044:18;:7;:16;:18::i;:::-;47064:13;47011:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46960:133;46953:140;46602:497;-1:-1:-1;;;46602:497:0:o;47194:104::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47265:18:::1;:27:::0;47194:104::o;47618:122::-;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47701:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47748:120::-:0;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;47830:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;44153:192::-:0;43326:6;;-1:-1:-1;;;;;43326:6:0;21616:10;43473:23;43465:68;;;;-1:-1:-1;;;43465:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44242:22:0;::::1;44234:73;;;::::0;-1:-1:-1;;;44234:73:0;;16054:2:1;44234:73:0::1;::::0;::::1;16036:21:1::0;16093:2;16073:18;;;16066:30;16132:34;16112:18;;;16105:62;-1:-1:-1;;;16183:18:1;;;16176:36;16229:19;;44234:73:0::1;15852:402:1::0;44234:73:0::1;44318:19;44328:8;44318:9;:19::i;23062:305::-:0;23164:4;-1:-1:-1;;;;;;23201:40:0;;-1:-1:-1;;;23201:40:0;;:105;;-1:-1:-1;;;;;;;23258:48:0;;-1:-1:-1;;;23258:48:0;23201:105;:158;;;-1:-1:-1;;;;;;;;;;9002:40:0;;;23323:36;8893:157;32942:174;33017:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33017:29:0;-1:-1:-1;;;;;33017:29:0;;;;;;;;:24;;33071:23;33017:24;33071:14;:23::i;:::-;-1:-1:-1;;;;;33062:46:0;;;;;;;;;;;32942:174;;:::o;29254:348::-;29347:4;29049:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29049:16:0;29364:73;;;;-1:-1:-1;;;29364:73:0;;16461:2:1;29364:73:0;;;16443:21:1;16500:2;16480:18;;;16473:30;16539:34;16519:18;;;16512:62;-1:-1:-1;;;16590:18:1;;;16583:42;16642:19;;29364:73:0;16259:408:1;29364:73:0;29448:13;29464:23;29479:7;29464:14;:23::i;:::-;29448:39;;29517:5;-1:-1:-1;;;;;29506:16:0;:7;-1:-1:-1;;;;;29506:16:0;;:51;;;;29550:7;-1:-1:-1;;;;;29526:31:0;:20;29538:7;29526:11;:20::i;:::-;-1:-1:-1;;;;;29526:31:0;;29506:51;:87;;;-1:-1:-1;;;;;;26346:25:0;;;26322:4;26346:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29561:32;29498:96;29254:348;-1:-1:-1;;;;29254:348:0:o;32246:578::-;32405:4;-1:-1:-1;;;;;32378:31:0;:23;32393:7;32378:14;:23::i;:::-;-1:-1:-1;;;;;32378:31:0;;32370:85;;;;-1:-1:-1;;;32370:85:0;;16874:2:1;32370:85:0;;;16856:21:1;16913:2;16893:18;;;16886:30;16952:34;16932:18;;;16925:62;-1:-1:-1;;;17003:18:1;;;16996:39;17052:19;;32370:85:0;16672:405:1;32370:85:0;-1:-1:-1;;;;;32474:16:0;;32466:65;;;;-1:-1:-1;;;32466:65:0;;17284:2:1;32466:65:0;;;17266:21:1;17323:2;17303:18;;;17296:30;17362:34;17342:18;;;17335:62;-1:-1:-1;;;17413:18:1;;;17406:34;17457:19;;32466:65:0;17082:400:1;32466:65:0;32544:39;32565:4;32571:2;32575:7;32544:20;:39::i;:::-;32648:29;32665:1;32669:7;32648:8;:29::i;:::-;-1:-1:-1;;;;;32690:15:0;;;;;;:9;:15;;;;;:20;;32709:1;;32690:15;:20;;32709:1;;32690:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32721:13:0;;;;;;:9;:13;;;;;:18;;32738:1;;32721:13;:18;;32738:1;;32721:18;:::i;:::-;;;;-1:-1:-1;;32750:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32750:21:0;-1:-1:-1;;;;;32750:21:0;;;;;;;;;32789:27;;32750:16;;32789:27;;;;;;;32246:578;;;:::o;44353:173::-;44428:6;;;-1:-1:-1;;;;;44445:17:0;;;-1:-1:-1;;;;;;44445:17:0;;;;;;;44478:40;;44428:6;;;44445:17;44428:6;;44478:40;;44409:16;;44478:40;44398:128;44353:173;:::o;29944:110::-;30020:26;30030:2;30034:7;30020:26;;;;;;;;;;;;:9;:26::i;28332:315::-;28489:28;28499:4;28505:2;28509:7;28489:9;:28::i;:::-;28536:48;28559:4;28565:2;28569:7;28578:5;28536:22;:48::i;:::-;28528:111;;;;-1:-1:-1;;;28528:111:0;;;;;;;:::i;45305:102::-;45365:13;45394:7;45387:14;;;;;:::i;9368:723::-;9424:13;9645:10;9641:53;;-1:-1:-1;;9672:10:0;;;;;;;;;;;;-1:-1:-1;;;9672:10:0;;;;;9368:723::o;9641:53::-;9719:5;9704:12;9760:78;9767:9;;9760:78;;9793:8;;;;:::i;:::-;;-1:-1:-1;9816:10:0;;-1:-1:-1;9824:2:0;9816:10;;:::i;:::-;;;9760:78;;;9848:19;9880:6;9870:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9870:17:0;;9848:39;;9898:154;9905:10;;9898:154;;9932:11;9942:1;9932:11;;:::i;:::-;;-1:-1:-1;10001:10:0;10009:2;10001:5;:10;:::i;:::-;9988:24;;:2;:24;:::i;:::-;9975:39;;9958:6;9965;9958:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9958:56:0;;;;;;;;-1:-1:-1;10029:11:0;10038:2;10029:11;;:::i;:::-;;;9898:154;;37791:589;-1:-1:-1;;;;;37997:18:0;;37993:187;;38032:40;38064:7;39207:10;:17;;39180:24;;;;:15;:24;;;;;:44;;;39235:24;;;;;;;;;;;;39103:164;38032:40;37993:187;;;38102:2;-1:-1:-1;;;;;38094:10:0;:4;-1:-1:-1;;;;;38094:10:0;;38090:90;;38121:47;38154:4;38160:7;38121:32;:47::i;:::-;-1:-1:-1;;;;;38194:16:0;;38190:183;;38227:45;38264:7;38227:36;:45::i;38190:183::-;38300:4;-1:-1:-1;;;;;38294:10:0;:2;-1:-1:-1;;;;;38294:10:0;;38290:83;;38321:40;38349:2;38353:7;38321:27;:40::i;30281:321::-;30411:18;30417:2;30421:7;30411:5;:18::i;:::-;30462:54;30493:1;30497:2;30501:7;30510:5;30462:22;:54::i;:::-;30440:154;;;;-1:-1:-1;;;30440:154:0;;;;;;;:::i;33681:799::-;33836:4;-1:-1:-1;;;;;33857:13:0;;12216:20;12264:8;33853:620;;33893:72;;-1:-1:-1;;;33893:72:0;;-1:-1:-1;;;;;33893:36:0;;;;;:72;;21616:10;;33944:4;;33950:7;;33959:5;;33893:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33893:72:0;;;;;;;;-1:-1:-1;;33893:72:0;;;;;;;;;;;;:::i;:::-;;;33889:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34135:13:0;;34131:272;;34178:60;;-1:-1:-1;;;34178:60:0;;;;;;;:::i;34131:272::-;34353:6;34347:13;34338:6;34334:2;34330:15;34323:38;33889:529;-1:-1:-1;;;;;;34016:51:0;-1:-1:-1;;;34016:51:0;;-1:-1:-1;34009:58:0;;33853:620;-1:-1:-1;34457:4:0;33681:799;;;;;;:::o;39894:988::-;40160:22;40210:1;40185:22;40202:4;40185:16;:22::i;:::-;:26;;;;:::i;:::-;40222:18;40243:26;;;:17;:26;;;;;;40160:51;;-1:-1:-1;40376:28:0;;;40372:328;;-1:-1:-1;;;;;40443:18:0;;40421:19;40443:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40494:30;;;;;;:44;;;40611:30;;:17;:30;;;;;:43;;;40372:328;-1:-1:-1;40796:26:0;;;;:17;:26;;;;;;;;40789:33;;;-1:-1:-1;;;;;40840:18:0;;;;;:12;:18;;;;;:34;;;;;;;40833:41;39894:988::o;41177:1079::-;41455:10;:17;41430:22;;41455:21;;41475:1;;41455:21;:::i;:::-;41487:18;41508:24;;;:15;:24;;;;;;41881:10;:26;;41430:46;;-1:-1:-1;41508:24:0;;41430:46;;41881:26;;;;;;:::i;:::-;;;;;;;;;41859:48;;41945:11;41920:10;41931;41920:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42025:28;;;:15;:28;;;;;;;:41;;;42197:24;;;;;42190:31;42232:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41248:1008;;;41177:1079;:::o;38681:221::-;38766:14;38783:20;38800:2;38783:16;:20::i;:::-;-1:-1:-1;;;;;38814:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38859:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38681:221:0:o;30938:382::-;-1:-1:-1;;;;;31018:16:0;;31010:61;;;;-1:-1:-1;;;31010:61:0;;19492:2:1;31010:61:0;;;19474:21:1;;;19511:18;;;19504:30;19570:34;19550:18;;;19543:62;19622:18;;31010:61:0;19290:356:1;31010:61:0;29025:4;29049:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29049:16:0;:30;31082:58;;;;-1:-1:-1;;;31082:58:0;;19853:2:1;31082:58:0;;;19835:21:1;19892:2;19872:18;;;19865:30;19931;19911:18;;;19904:58;19979:18;;31082:58:0;19651:352:1;31082:58:0;31153:45;31182:1;31186:2;31190:7;31153:20;:45::i;:::-;-1:-1:-1;;;;;31211:13:0;;;;;;:9;:13;;;;;:18;;31228:1;;31211:13;:18;;31228:1;;31211:18;:::i;:::-;;;;-1:-1:-1;;31240:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31240:21:0;-1:-1:-1;;;;;31240:21:0;;;;;;;;31279:33;;31240:16;;;31279:33;;31240:16;;31279:33;30938:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:356::-;6489:2;6471:21;;;6508:18;;;6501:30;6567:34;6562:2;6547:18;;6540:62;6634:2;6619:18;;6287:356::o;6648:380::-;6727:1;6723:12;;;;6770;;;6791:61;;6845:4;6837:6;6833:17;6823:27;;6791:61;6898:2;6890:6;6887:14;6867:18;6864:38;6861:161;;;6944:10;6939:3;6935:20;6932:1;6925:31;6979:4;6976:1;6969:15;7007:4;7004:1;6997:15;6861:161;;6648:380;;;:::o;8273:413::-;8475:2;8457:21;;;8514:2;8494:18;;;8487:30;8553:34;8548:2;8533:18;;8526:62;-1:-1:-1;;;8619:2:1;8604:18;;8597:47;8676:3;8661:19;;8273:413::o;9313:127::-;9374:10;9369:3;9365:20;9362:1;9355:31;9405:4;9402:1;9395:15;9429:4;9426:1;9419:15;9445:127;9506:10;9501:3;9497:20;9494:1;9487:31;9537:4;9534:1;9527:15;9561:4;9558:1;9551:15;9577:135;9616:3;-1:-1:-1;;9637:17:1;;9634:43;;;9657:18;;:::i;:::-;-1:-1:-1;9704:1:1;9693:13;;9577:135::o;11658:128::-;11698:3;11729:1;11725:6;11722:1;11719:13;11716:39;;;11735:18;;:::i;:::-;-1:-1:-1;11771:9:1;;11658:128::o;12904:168::-;12944:7;13010:1;13006;13002:6;12998:14;12995:1;12992:21;12987:1;12980:9;12973:17;12969:45;12966:71;;;13017:18;;:::i;:::-;-1:-1:-1;13057:9:1;;12904:168::o;14320:1527::-;14544:3;14582:6;14576:13;14608:4;14621:51;14665:6;14660:3;14655:2;14647:6;14643:15;14621:51;:::i;:::-;14735:13;;14694:16;;;;14757:55;14735:13;14694:16;14779:15;;;14757:55;:::i;:::-;14901:13;;14834:20;;;14874:1;;14961;14983:18;;;;15036;;;;15063:93;;15141:4;15131:8;15127:19;15115:31;;15063:93;15204:2;15194:8;15191:16;15171:18;15168:40;15165:167;;;-1:-1:-1;;;15231:33:1;;15287:4;15284:1;15277:15;15317:4;15238:3;15305:17;15165:167;15348:18;15375:110;;;;15499:1;15494:328;;;;15341:481;;15375:110;-1:-1:-1;;15410:24:1;;15396:39;;15455:20;;;;-1:-1:-1;15375:110:1;;15494:328;14267:1;14260:14;;;14304:4;14291:18;;15589:1;15603:169;15617:8;15614:1;15611:15;15603:169;;;15699:14;;15684:13;;;15677:37;15742:16;;;;15634:10;;15603:169;;;15607:3;;15803:8;15796:5;15792:20;15785:27;;15341:481;-1:-1:-1;15838:3:1;;14320:1527;-1:-1:-1;;;;;;;;;;;14320:1527:1:o;17487:125::-;17527:4;17555:1;17552;17549:8;17546:34;;;17560:18;;:::i;:::-;-1:-1:-1;17597:9:1;;17487:125::o;17617:414::-;17819:2;17801:21;;;17858:2;17838:18;;;17831:30;17897:34;17892:2;17877:18;;17870:62;-1:-1:-1;;;17963:2:1;17948:18;;17941:48;18021:3;18006:19;;17617:414::o;18036:127::-;18097:10;18092:3;18088:20;18085:1;18078:31;18128:4;18125:1;18118:15;18152:4;18149:1;18142:15;18168:120;18208:1;18234;18224:35;;18239:18;;:::i;:::-;-1:-1:-1;18273:9:1;;18168:120::o;18293:112::-;18325:1;18351;18341:35;;18356:18;;:::i;:::-;-1:-1:-1;18390:9:1;;18293:112::o;18410:489::-;-1:-1:-1;;;;;18679:15:1;;;18661:34;;18731:15;;18726:2;18711:18;;18704:43;18778:2;18763:18;;18756:34;;;18826:3;18821:2;18806:18;;18799:31;;;18604:4;;18847:46;;18873:19;;18865:6;18847:46;:::i;:::-;18839:54;18410:489;-1:-1:-1;;;;;;18410:489:1:o;18904:249::-;18973:6;19026:2;19014:9;19005:7;19001:23;18997:32;18994:52;;;19042:1;19039;19032:12;18994:52;19074:9;19068:16;19093:30;19117:5;19093:30;:::i;19158:127::-;19219:10;19214:3;19210:20;19207:1;19200:31;19250:4;19247:1;19240:15;19274:4;19271:1;19264:15

Swarm Source

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