ETH Price: $2,665.98 (+1.70%)
Gas: 1.14 Gwei

Token

Dogs Unleashed Minions (DUMNFT)
 

Overview

Max Total Supply

58 DUMNFT

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DUMNFT
0x00b6f8f1ee0241075799aa7474c70304d8fa0814
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:
DogsUnleashedMinions

Compiler Version
v0.8.0+commit.c7dfd78e

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

// SPDX-License-Identifier: GPL-3.0

// 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.8.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.06 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmount = 15;
  bool public paused = false;
  mapping(address => bool) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(msg.sender, 1);
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if(whitelisted[msg.sender] != true) {
          require(msg.value >= cost * _mintAmount);
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, 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"
    );

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

  //only owner
  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 pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
 }
 
  function withdraw() public payable onlyOwner {
        // This will pay addresses the % of the initial sale.
        address wallet1 = 0x2239aC96D697f0C6edb012b0A90f3156b6fA60Cc;
        address wallet2 = 0x0D4997109ef126027b2f195C9788cccecEE4fF69;
        // Just duplicate the line above to add more wallet addresses
        
        uint256 payment = address(this).balance * 10 / 100;
        uint256 payment2 = address(this).balance * 15 / 100;

        (bool p1, ) = payable(wallet1).call{value: payment }("");
        require(p1);

        (bool p2, ) = payable(wallet2).call{value: payment2}("");
        require(p2);

        (bool p3, ) = payable(owner()).call{value: address(this).balance}("");
        require(p3);
    
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"_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":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200085e565b5066d529ae9e860000600d55611388600e55600f80556010805460ff191690553480156200005557600080fd5b5060405162003413380380620034138339810160408190526200007891620009be565b825183908390620000919060009060208501906200085e565b508051620000a79060019060208401906200085e565b505050620000c4620000be620000e560201b60201c565b620000e9565b620000cf816200013b565b620000dc336001620001a3565b50505062000ceb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000145620000e5565b6001600160a01b03166200015862000296565b6001600160a01b0316146200018a5760405162461bcd60e51b8152600401620001819062000ba9565b60405180910390fd5b80516200019f90600b9060208401906200085e565b5050565b6000620001af620002a5565b60105490915060ff1615620001c357600080fd5b60008211620001d157600080fd5b600f54821115620001e157600080fd5b600e54620001f0838362000bde565b1115620001fc57600080fd5b6200020662000296565b6001600160a01b0316336001600160a01b03161462000259573360009081526011602052604090205460ff161515600114620002595781600d546200024c919062000bf9565b3410156200025957600080fd5b60015b82811162000290576200027b8462000275838562000bde565b620002ab565b80620002878162000ca1565b9150506200025c565b50505050565b600a546001600160a01b031690565b60085490565b6200019f828260405180602001604052806000815250620002cd60201b60201c565b620002d983836200030c565b620002e86000848484620003f7565b620003075760405162461bcd60e51b8152600401620001819062000aa1565b505050565b6001600160a01b038216620003355760405162461bcd60e51b8152600401620001819062000b74565b620003408162000530565b15620003605760405162461bcd60e51b8152600401620001819062000af3565b6200036e600083836200054d565b6001600160a01b03821660009081526003602052604081208054600192906200039990849062000bde565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000418846001600160a01b0316620005f160201b6200128d1760201c565b1562000524576001600160a01b03841663150b7a0262000437620000e5565b8786866040518563ffffffff1660e01b81526004016200045b949392919062000a4b565b602060405180830381600087803b1580156200047657600080fd5b505af1925050508015620004a9575060408051601f3d908101601f19168201909252620004a6918101906200098d565b60015b62000509573d808015620004da576040519150601f19603f3d011682016040523d82523d6000602084013e620004df565b606091505b508051620005015760405162461bcd60e51b8152600401620001819062000aa1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000528565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b620005658383836200030760201b620008321760201c565b6001600160a01b03831662000585576200057f81620005f7565b620005ab565b816001600160a01b0316836001600160a01b031614620005ab57620005ab83826200063b565b6001600160a01b038216620005cb57620005c581620006e8565b62000307565b826001600160a01b0316826001600160a01b0316146200030757620003078282620007c6565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600162000655846200081760201b62000ef61760201c565b62000661919062000c1b565b600083815260076020526040902054909150808214620006b5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620006fc9060019062000c1b565b600083815260096020526040812054600880549394509092849081106200073357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106200076357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620007aa57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000620007de836200081760201b62000ef61760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008425760405162461bcd60e51b8152600401620001819062000b2a565b506001600160a01b031660009081526003602052604090205490565b8280546200086c9062000c64565b90600052602060002090601f016020900481019282620008905760008555620008db565b82601f10620008ab57805160ff1916838001178555620008db565b82800160010185558215620008db579182015b82811115620008db578251825591602001919060010190620008be565b50620008e9929150620008ed565b5090565b5b80821115620008e95760008155600101620008ee565b600082601f83011262000915578081fd5b81516001600160401b038082111562000932576200093262000cd5565b604051601f8301601f19168101602001828111828210171562000959576200095962000cd5565b60405282815284830160200186101562000971578384fd5b6200098483602083016020880162000c35565b95945050505050565b6000602082840312156200099f578081fd5b81516001600160e01b031981168114620009b7578182fd5b9392505050565b600080600060608486031215620009d3578182fd5b83516001600160401b0380821115620009ea578384fd5b620009f88783880162000904565b9450602086015191508082111562000a0e578384fd5b62000a1c8783880162000904565b9350604086015191508082111562000a32578283fd5b5062000a418682870162000904565b9150509250925092565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a8a8160a085016020870162000c35565b601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111562000bf45762000bf462000cbf565b500190565b600081600019048311821515161562000c165762000c1662000cbf565b500290565b60008282101562000c305762000c3062000cbf565b500390565b60005b8381101562000c5257818101518382015260200162000c38565b83811115620002905750506000910152565b60028104600182168062000c7957607f821691505b6020821081141562000c9b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000cb85762000cb862000cbf565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6127188062000cfb6000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105ad578063d936547e146105c2578063da3ef23f146105e2578063e985e9c514610602578063f2fde38b146106225761020f565b8063a22cb46514610538578063b88d4fde14610558578063c668286214610578578063c87b56dd1461058d5761020f565b806370a08231116100e757806370a08231146104b9578063715018a6146104d95780637f00c7a6146104ee5780638da5cb5b1461050e57806395d89b41146105235761020f565b806355f804b31461044f5780635c975abb1461046f5780636352211e146104845780636c0360eb146104a45761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e146103a2578063438b6300146103c257806344a0d68a146103ef5780634a4c560d1461040f5780634f6ccce71461042f5761020f565b80632f745c591461034757806330cc7ae0146103675780633ccfd60b1461038757806340c10f191461038f5761020f565b8063095ea7b3116101e2578063095ea7b3146102bb57806313faede6146102db57806318160ddd146102fd578063239c70ae1461031257806323b872dd146103275761020f565b806301ffc9a71461021457806302329a291461024a57806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561022057600080fd5b5061023461022f366004611e46565b610642565b6040516102419190612062565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611e2c565b61066f565b005b34801561027857600080fd5b506102816106ca565b604051610241919061206d565b34801561029a57600080fd5b506102ae6102a9366004611ec4565b61075c565b6040516102419190611fcd565b3480156102c757600080fd5b5061026a6102d6366004611e03565b61079f565b3480156102e757600080fd5b506102f0610837565b604051610241919061257d565b34801561030957600080fd5b506102f061083d565b34801561031e57600080fd5b506102f0610843565b34801561033357600080fd5b5061026a610342366004611d26565b610849565b34801561035357600080fd5b506102f0610362366004611e03565b610881565b34801561037357600080fd5b5061026a610382366004611cda565b6108d3565b61026a610933565b61026a61039d366004611e03565b610b1d565b3480156103ae57600080fd5b5061026a6103bd366004611d26565b610bf9565b3480156103ce57600080fd5b506103e26103dd366004611cda565b610c14565b604051610241919061201e565b3480156103fb57600080fd5b5061026a61040a366004611ec4565b610cd2565b34801561041b57600080fd5b5061026a61042a366004611cda565b610d16565b34801561043b57600080fd5b506102f061044a366004611ec4565b610d79565b34801561045b57600080fd5b5061026a61046a366004611e7e565b610dd4565b34801561047b57600080fd5b50610234610e2a565b34801561049057600080fd5b506102ae61049f366004611ec4565b610e33565b3480156104b057600080fd5b50610281610e68565b3480156104c557600080fd5b506102f06104d4366004611cda565b610ef6565b3480156104e557600080fd5b5061026a610f3a565b3480156104fa57600080fd5b5061026a610509366004611ec4565b610f85565b34801561051a57600080fd5b506102ae610fc9565b34801561052f57600080fd5b50610281610fd8565b34801561054457600080fd5b5061026a610553366004611dda565b610fe7565b34801561056457600080fd5b5061026a610573366004611d61565b6110b5565b34801561058457600080fd5b506102816110ee565b34801561059957600080fd5b506102816105a8366004611ec4565b6110fb565b3480156105b957600080fd5b506102f0611181565b3480156105ce57600080fd5b506102346105dd366004611cda565b611187565b3480156105ee57600080fd5b5061026a6105fd366004611e7e565b61119c565b34801561060e57600080fd5b5061023461061d366004611cf4565b6111ee565b34801561062e57600080fd5b5061026a61063d366004611cda565b61121c565b60006001600160e01b0319821663780e9d6360e01b1480610667575061066782611293565b90505b919050565b6106776112d3565b6001600160a01b0316610688610fc9565b6001600160a01b0316146106b75760405162461bcd60e51b81526004016106ae906123d2565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106d990612620565b80601f016020809104026020016040519081016040528092919081815260200182805461070590612620565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b6000610767826112d7565b6107835760405162461bcd60e51b81526004016106ae90612386565b506000908152600460205260409020546001600160a01b031690565b60006107aa82610e33565b9050806001600160a01b0316836001600160a01b031614156107de5760405162461bcd60e51b81526004016106ae9061249f565b806001600160a01b03166107f06112d3565b6001600160a01b0316148061080c575061080c8161061d6112d3565b6108285760405162461bcd60e51b81526004016106ae90612261565b61083283836112f4565b505050565b600d5481565b60085490565b600f5481565b61085a6108546112d3565b82611362565b6108765760405162461bcd60e51b81526004016106ae906124e0565b6108328383836113e7565b600061088c83610ef6565b82106108aa5760405162461bcd60e51b81526004016106ae90612080565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108db6112d3565b6001600160a01b03166108ec610fc9565b6001600160a01b0316146109125760405162461bcd60e51b81526004016106ae906123d2565b6001600160a01b03166000908152601160205260409020805460ff19169055565b61093b6112d3565b6001600160a01b031661094c610fc9565b6001600160a01b0316146109725760405162461bcd60e51b81526004016106ae906123d2565b732239ac96d697f0c6edb012b0a90f3156b6fa60cc730d4997109ef126027b2f195c9788cccecee4ff69600060646109ab47600a6125be565b6109b591906125aa565b9050600060646109c647600f6125be565b6109d091906125aa565b90506000846001600160a01b0316836040516109eb90611fca565b60006040518083038185875af1925050503d8060008114610a28576040519150601f19603f3d011682016040523d82523d6000602084013e610a2d565b606091505b5050905080610a3b57600080fd5b6000846001600160a01b031683604051610a5490611fca565b60006040518083038185875af1925050503d8060008114610a91576040519150601f19603f3d011682016040523d82523d6000602084013e610a96565b606091505b5050905080610aa457600080fd5b6000610aae610fc9565b6001600160a01b031647604051610ac490611fca565b60006040518083038185875af1925050503d8060008114610b01576040519150601f19603f3d011682016040523d82523d6000602084013e610b06565b606091505b5050905080610b1457600080fd5b50505050505050565b6000610b2761083d565b60105490915060ff1615610b3a57600080fd5b60008211610b4757600080fd5b600f54821115610b5657600080fd5b600e54610b638383612592565b1115610b6e57600080fd5b610b76610fc9565b6001600160a01b0316336001600160a01b031614610bc4573360009081526011602052604090205460ff161515600114610bc45781600d54610bb891906125be565b341015610bc457600080fd5b60015b828111610bf357610be184610bdc8385612592565b611514565b80610beb8161265b565b915050610bc7565b50505050565b610832838383604051806020016040528060008152506110b5565b60606000610c2183610ef6565b905060008167ffffffffffffffff811115610c4c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c75578160200160208202803683370190505b50905060005b82811015610cca57610c8d8582610881565b828281518110610cad57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cc28161265b565b915050610c7b565b509392505050565b610cda6112d3565b6001600160a01b0316610ceb610fc9565b6001600160a01b031614610d115760405162461bcd60e51b81526004016106ae906123d2565b600d55565b610d1e6112d3565b6001600160a01b0316610d2f610fc9565b6001600160a01b031614610d555760405162461bcd60e51b81526004016106ae906123d2565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6000610d8361083d565b8210610da15760405162461bcd60e51b81526004016106ae90612531565b60088281548110610dc257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ddc6112d3565b6001600160a01b0316610ded610fc9565b6001600160a01b031614610e135760405162461bcd60e51b81526004016106ae906123d2565b8051610e2690600b906020840190611baa565b5050565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106675760405162461bcd60e51b81526004016106ae90612308565b600b8054610e7590612620565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea190612620565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b505050505081565b60006001600160a01b038216610f1e5760405162461bcd60e51b81526004016106ae906122be565b506001600160a01b031660009081526003602052604090205490565b610f426112d3565b6001600160a01b0316610f53610fc9565b6001600160a01b031614610f795760405162461bcd60e51b81526004016106ae906123d2565b610f83600061152e565b565b610f8d6112d3565b6001600160a01b0316610f9e610fc9565b6001600160a01b031614610fc45760405162461bcd60e51b81526004016106ae906123d2565b600f55565b600a546001600160a01b031690565b6060600180546106d990612620565b610fef6112d3565b6001600160a01b0316826001600160a01b031614156110205760405162461bcd60e51b81526004016106ae906121de565b806005600061102d6112d3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110716112d3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110a99190612062565b60405180910390a35050565b6110c66110c06112d3565b83611362565b6110e25760405162461bcd60e51b81526004016106ae906124e0565b610bf384848484611580565b600c8054610e7590612620565b6060611106826112d7565b6111225760405162461bcd60e51b81526004016106ae90612450565b600061112c6115b3565b9050600081511161114c576040518060200160405280600081525061117a565b80611156846115c2565b600c60405160200161116a93929190611f08565b6040516020818303038152906040525b9392505050565b600e5481565b60116020526000908152604090205460ff1681565b6111a46112d3565b6001600160a01b03166111b5610fc9565b6001600160a01b0316146111db5760405162461bcd60e51b81526004016106ae906123d2565b8051610e2690600c906020840190611baa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6112246112d3565b6001600160a01b0316611235610fc9565b6001600160a01b03161461125b5760405162461bcd60e51b81526004016106ae906123d2565b6001600160a01b0381166112815760405162461bcd60e51b81526004016106ae9061211d565b61128a8161152e565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806112c457506001600160e01b03198216635b5e139f60e01b145b806106675750610667826116dd565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061132982610e33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061136d826112d7565b6113895760405162461bcd60e51b81526004016106ae90612215565b600061139483610e33565b9050806001600160a01b0316846001600160a01b031614806113cf5750836001600160a01b03166113c48461075c565b6001600160a01b0316145b806113df57506113df81856111ee565b949350505050565b826001600160a01b03166113fa82610e33565b6001600160a01b0316146114205760405162461bcd60e51b81526004016106ae90612407565b6001600160a01b0382166114465760405162461bcd60e51b81526004016106ae9061219a565b6114518383836116f6565b61145c6000826112f4565b6001600160a01b03831660009081526003602052604081208054600192906114859084906125dd565b90915550506001600160a01b03821660009081526003602052604081208054600192906114b3908490612592565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e2682826040518060200160405280600081525061177f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61158b8484846113e7565b611597848484846117b2565b610bf35760405162461bcd60e51b81526004016106ae906120cb565b6060600b80546106d990612620565b6060816115e757506040805180820190915260018152600360fc1b602082015261066a565b8160005b811561161157806115fb8161265b565b915061160a9050600a836125aa565b91506115eb565b60008167ffffffffffffffff81111561163a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611664576020820181803683370190505b5090505b84156113df576116796001836125dd565b9150611686600a86612676565b611691906030612592565b60f81b8183815181106116b457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116d6600a866125aa565b9450611668565b6001600160e01b031981166301ffc9a760e01b14919050565b611701838383610832565b6001600160a01b03831661171d57611718816118cd565b611740565b816001600160a01b0316836001600160a01b031614611740576117408382611911565b6001600160a01b03821661175c57611757816119ae565b610832565b826001600160a01b0316826001600160a01b031614610832576108328282611a87565b6117898383611acb565b61179660008484846117b2565b6108325760405162461bcd60e51b81526004016106ae906120cb565b60006117c6846001600160a01b031661128d565b156118c257836001600160a01b031663150b7a026117e26112d3565b8786866040518563ffffffff1660e01b81526004016118049493929190611fe1565b602060405180830381600087803b15801561181e57600080fd5b505af192505050801561184e575060408051601f3d908101601f1916820190925261184b91810190611e62565b60015b6118a8573d80801561187c576040519150601f19603f3d011682016040523d82523d6000602084013e611881565b606091505b5080516118a05760405162461bcd60e51b81526004016106ae906120cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113df565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161191e84610ef6565b61192891906125dd565b60008381526007602052604090205490915080821461197b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119c0906001906125dd565b600083815260096020526040812054600880549394509092849081106119f657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a2557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a6b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a9283610ef6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611af15760405162461bcd60e51b81526004016106ae90612351565b611afa816112d7565b15611b175760405162461bcd60e51b81526004016106ae90612163565b611b23600083836116f6565b6001600160a01b0382166000908152600360205260408120805460019290611b4c908490612592565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bb690612620565b90600052602060002090601f016020900481019282611bd85760008555611c1e565b82601f10611bf157805160ff1916838001178555611c1e565b82800160010185558215611c1e579182015b82811115611c1e578251825591602001919060010190611c03565b50611c2a929150611c2e565b5090565b5b80821115611c2a5760008155600101611c2f565b600067ffffffffffffffff80841115611c5e57611c5e6126b6565b604051601f8501601f191681016020018281118282101715611c8257611c826126b6565b604052848152915081838501861015611c9a57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461066a57600080fd5b8035801515811461066a57600080fd5b600060208284031215611ceb578081fd5b61117a82611cb3565b60008060408385031215611d06578081fd5b611d0f83611cb3565b9150611d1d60208401611cb3565b90509250929050565b600080600060608486031215611d3a578081fd5b611d4384611cb3565b9250611d5160208501611cb3565b9150604084013590509250925092565b60008060008060808587031215611d76578081fd5b611d7f85611cb3565b9350611d8d60208601611cb3565b925060408501359150606085013567ffffffffffffffff811115611daf578182fd5b8501601f81018713611dbf578182fd5b611dce87823560208401611c43565b91505092959194509250565b60008060408385031215611dec578182fd5b611df583611cb3565b9150611d1d60208401611cca565b60008060408385031215611e15578182fd5b611e1e83611cb3565b946020939093013593505050565b600060208284031215611e3d578081fd5b61117a82611cca565b600060208284031215611e57578081fd5b813561117a816126cc565b600060208284031215611e73578081fd5b815161117a816126cc565b600060208284031215611e8f578081fd5b813567ffffffffffffffff811115611ea5578182fd5b8201601f81018413611eb5578182fd5b6113df84823560208401611c43565b600060208284031215611ed5578081fd5b5035919050565b60008151808452611ef48160208601602086016125f4565b601f01601f19169290920160200192915050565b600084516020611f1b8285838a016125f4565b855191840191611f2e8184848a016125f4565b8554920191839060028104600180831680611f4a57607f831692505b858310811415611f6857634e487b7160e01b88526022600452602488fd5b808015611f7c5760018114611f8d57611fb9565b60ff19851688528388019550611fb9565b611f968b612586565b895b85811015611fb15781548a820152908401908801611f98565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061201490830184611edc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120565783518352928401929184019160010161203a565b50909695505050505050565b901515815260200190565b60006020825261117a6020830184611edc565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156125a5576125a561268a565b500190565b6000826125b9576125b96126a0565b500490565b60008160001904831182151516156125d8576125d861268a565b500290565b6000828210156125ef576125ef61268a565b500390565b60005b8381101561260f5781810151838201526020016125f7565b83811115610bf35750506000910152565b60028104600182168061263457607f821691505b6020821081141561265557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266f5761266f61268a565b5060010190565b600082612685576126856126a0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461128a57600080fdfea264697066735822122018965564ff734cebb6f561cf2c0b14f213dfece9f63ef1b72cc5a9fdfccbdc9964736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016446f677320556e6c656173686564204d696e696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000644554d4e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52787751664b4272736450586765446178526d61736279384c4d537557416d455a36676465554731547850522f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105ad578063d936547e146105c2578063da3ef23f146105e2578063e985e9c514610602578063f2fde38b146106225761020f565b8063a22cb46514610538578063b88d4fde14610558578063c668286214610578578063c87b56dd1461058d5761020f565b806370a08231116100e757806370a08231146104b9578063715018a6146104d95780637f00c7a6146104ee5780638da5cb5b1461050e57806395d89b41146105235761020f565b806355f804b31461044f5780635c975abb1461046f5780636352211e146104845780636c0360eb146104a45761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e146103a2578063438b6300146103c257806344a0d68a146103ef5780634a4c560d1461040f5780634f6ccce71461042f5761020f565b80632f745c591461034757806330cc7ae0146103675780633ccfd60b1461038757806340c10f191461038f5761020f565b8063095ea7b3116101e2578063095ea7b3146102bb57806313faede6146102db57806318160ddd146102fd578063239c70ae1461031257806323b872dd146103275761020f565b806301ffc9a71461021457806302329a291461024a57806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561022057600080fd5b5061023461022f366004611e46565b610642565b6040516102419190612062565b60405180910390f35b34801561025657600080fd5b5061026a610265366004611e2c565b61066f565b005b34801561027857600080fd5b506102816106ca565b604051610241919061206d565b34801561029a57600080fd5b506102ae6102a9366004611ec4565b61075c565b6040516102419190611fcd565b3480156102c757600080fd5b5061026a6102d6366004611e03565b61079f565b3480156102e757600080fd5b506102f0610837565b604051610241919061257d565b34801561030957600080fd5b506102f061083d565b34801561031e57600080fd5b506102f0610843565b34801561033357600080fd5b5061026a610342366004611d26565b610849565b34801561035357600080fd5b506102f0610362366004611e03565b610881565b34801561037357600080fd5b5061026a610382366004611cda565b6108d3565b61026a610933565b61026a61039d366004611e03565b610b1d565b3480156103ae57600080fd5b5061026a6103bd366004611d26565b610bf9565b3480156103ce57600080fd5b506103e26103dd366004611cda565b610c14565b604051610241919061201e565b3480156103fb57600080fd5b5061026a61040a366004611ec4565b610cd2565b34801561041b57600080fd5b5061026a61042a366004611cda565b610d16565b34801561043b57600080fd5b506102f061044a366004611ec4565b610d79565b34801561045b57600080fd5b5061026a61046a366004611e7e565b610dd4565b34801561047b57600080fd5b50610234610e2a565b34801561049057600080fd5b506102ae61049f366004611ec4565b610e33565b3480156104b057600080fd5b50610281610e68565b3480156104c557600080fd5b506102f06104d4366004611cda565b610ef6565b3480156104e557600080fd5b5061026a610f3a565b3480156104fa57600080fd5b5061026a610509366004611ec4565b610f85565b34801561051a57600080fd5b506102ae610fc9565b34801561052f57600080fd5b50610281610fd8565b34801561054457600080fd5b5061026a610553366004611dda565b610fe7565b34801561056457600080fd5b5061026a610573366004611d61565b6110b5565b34801561058457600080fd5b506102816110ee565b34801561059957600080fd5b506102816105a8366004611ec4565b6110fb565b3480156105b957600080fd5b506102f0611181565b3480156105ce57600080fd5b506102346105dd366004611cda565b611187565b3480156105ee57600080fd5b5061026a6105fd366004611e7e565b61119c565b34801561060e57600080fd5b5061023461061d366004611cf4565b6111ee565b34801561062e57600080fd5b5061026a61063d366004611cda565b61121c565b60006001600160e01b0319821663780e9d6360e01b1480610667575061066782611293565b90505b919050565b6106776112d3565b6001600160a01b0316610688610fc9565b6001600160a01b0316146106b75760405162461bcd60e51b81526004016106ae906123d2565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106d990612620565b80601f016020809104026020016040519081016040528092919081815260200182805461070590612620565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b6000610767826112d7565b6107835760405162461bcd60e51b81526004016106ae90612386565b506000908152600460205260409020546001600160a01b031690565b60006107aa82610e33565b9050806001600160a01b0316836001600160a01b031614156107de5760405162461bcd60e51b81526004016106ae9061249f565b806001600160a01b03166107f06112d3565b6001600160a01b0316148061080c575061080c8161061d6112d3565b6108285760405162461bcd60e51b81526004016106ae90612261565b61083283836112f4565b505050565b600d5481565b60085490565b600f5481565b61085a6108546112d3565b82611362565b6108765760405162461bcd60e51b81526004016106ae906124e0565b6108328383836113e7565b600061088c83610ef6565b82106108aa5760405162461bcd60e51b81526004016106ae90612080565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108db6112d3565b6001600160a01b03166108ec610fc9565b6001600160a01b0316146109125760405162461bcd60e51b81526004016106ae906123d2565b6001600160a01b03166000908152601160205260409020805460ff19169055565b61093b6112d3565b6001600160a01b031661094c610fc9565b6001600160a01b0316146109725760405162461bcd60e51b81526004016106ae906123d2565b732239ac96d697f0c6edb012b0a90f3156b6fa60cc730d4997109ef126027b2f195c9788cccecee4ff69600060646109ab47600a6125be565b6109b591906125aa565b9050600060646109c647600f6125be565b6109d091906125aa565b90506000846001600160a01b0316836040516109eb90611fca565b60006040518083038185875af1925050503d8060008114610a28576040519150601f19603f3d011682016040523d82523d6000602084013e610a2d565b606091505b5050905080610a3b57600080fd5b6000846001600160a01b031683604051610a5490611fca565b60006040518083038185875af1925050503d8060008114610a91576040519150601f19603f3d011682016040523d82523d6000602084013e610a96565b606091505b5050905080610aa457600080fd5b6000610aae610fc9565b6001600160a01b031647604051610ac490611fca565b60006040518083038185875af1925050503d8060008114610b01576040519150601f19603f3d011682016040523d82523d6000602084013e610b06565b606091505b5050905080610b1457600080fd5b50505050505050565b6000610b2761083d565b60105490915060ff1615610b3a57600080fd5b60008211610b4757600080fd5b600f54821115610b5657600080fd5b600e54610b638383612592565b1115610b6e57600080fd5b610b76610fc9565b6001600160a01b0316336001600160a01b031614610bc4573360009081526011602052604090205460ff161515600114610bc45781600d54610bb891906125be565b341015610bc457600080fd5b60015b828111610bf357610be184610bdc8385612592565b611514565b80610beb8161265b565b915050610bc7565b50505050565b610832838383604051806020016040528060008152506110b5565b60606000610c2183610ef6565b905060008167ffffffffffffffff811115610c4c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c75578160200160208202803683370190505b50905060005b82811015610cca57610c8d8582610881565b828281518110610cad57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cc28161265b565b915050610c7b565b509392505050565b610cda6112d3565b6001600160a01b0316610ceb610fc9565b6001600160a01b031614610d115760405162461bcd60e51b81526004016106ae906123d2565b600d55565b610d1e6112d3565b6001600160a01b0316610d2f610fc9565b6001600160a01b031614610d555760405162461bcd60e51b81526004016106ae906123d2565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6000610d8361083d565b8210610da15760405162461bcd60e51b81526004016106ae90612531565b60088281548110610dc257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610ddc6112d3565b6001600160a01b0316610ded610fc9565b6001600160a01b031614610e135760405162461bcd60e51b81526004016106ae906123d2565b8051610e2690600b906020840190611baa565b5050565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106675760405162461bcd60e51b81526004016106ae90612308565b600b8054610e7590612620565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea190612620565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b505050505081565b60006001600160a01b038216610f1e5760405162461bcd60e51b81526004016106ae906122be565b506001600160a01b031660009081526003602052604090205490565b610f426112d3565b6001600160a01b0316610f53610fc9565b6001600160a01b031614610f795760405162461bcd60e51b81526004016106ae906123d2565b610f83600061152e565b565b610f8d6112d3565b6001600160a01b0316610f9e610fc9565b6001600160a01b031614610fc45760405162461bcd60e51b81526004016106ae906123d2565b600f55565b600a546001600160a01b031690565b6060600180546106d990612620565b610fef6112d3565b6001600160a01b0316826001600160a01b031614156110205760405162461bcd60e51b81526004016106ae906121de565b806005600061102d6112d3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110716112d3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110a99190612062565b60405180910390a35050565b6110c66110c06112d3565b83611362565b6110e25760405162461bcd60e51b81526004016106ae906124e0565b610bf384848484611580565b600c8054610e7590612620565b6060611106826112d7565b6111225760405162461bcd60e51b81526004016106ae90612450565b600061112c6115b3565b9050600081511161114c576040518060200160405280600081525061117a565b80611156846115c2565b600c60405160200161116a93929190611f08565b6040516020818303038152906040525b9392505050565b600e5481565b60116020526000908152604090205460ff1681565b6111a46112d3565b6001600160a01b03166111b5610fc9565b6001600160a01b0316146111db5760405162461bcd60e51b81526004016106ae906123d2565b8051610e2690600c906020840190611baa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6112246112d3565b6001600160a01b0316611235610fc9565b6001600160a01b03161461125b5760405162461bcd60e51b81526004016106ae906123d2565b6001600160a01b0381166112815760405162461bcd60e51b81526004016106ae9061211d565b61128a8161152e565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806112c457506001600160e01b03198216635b5e139f60e01b145b806106675750610667826116dd565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061132982610e33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061136d826112d7565b6113895760405162461bcd60e51b81526004016106ae90612215565b600061139483610e33565b9050806001600160a01b0316846001600160a01b031614806113cf5750836001600160a01b03166113c48461075c565b6001600160a01b0316145b806113df57506113df81856111ee565b949350505050565b826001600160a01b03166113fa82610e33565b6001600160a01b0316146114205760405162461bcd60e51b81526004016106ae90612407565b6001600160a01b0382166114465760405162461bcd60e51b81526004016106ae9061219a565b6114518383836116f6565b61145c6000826112f4565b6001600160a01b03831660009081526003602052604081208054600192906114859084906125dd565b90915550506001600160a01b03821660009081526003602052604081208054600192906114b3908490612592565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e2682826040518060200160405280600081525061177f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61158b8484846113e7565b611597848484846117b2565b610bf35760405162461bcd60e51b81526004016106ae906120cb565b6060600b80546106d990612620565b6060816115e757506040805180820190915260018152600360fc1b602082015261066a565b8160005b811561161157806115fb8161265b565b915061160a9050600a836125aa565b91506115eb565b60008167ffffffffffffffff81111561163a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611664576020820181803683370190505b5090505b84156113df576116796001836125dd565b9150611686600a86612676565b611691906030612592565b60f81b8183815181106116b457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116d6600a866125aa565b9450611668565b6001600160e01b031981166301ffc9a760e01b14919050565b611701838383610832565b6001600160a01b03831661171d57611718816118cd565b611740565b816001600160a01b0316836001600160a01b031614611740576117408382611911565b6001600160a01b03821661175c57611757816119ae565b610832565b826001600160a01b0316826001600160a01b031614610832576108328282611a87565b6117898383611acb565b61179660008484846117b2565b6108325760405162461bcd60e51b81526004016106ae906120cb565b60006117c6846001600160a01b031661128d565b156118c257836001600160a01b031663150b7a026117e26112d3565b8786866040518563ffffffff1660e01b81526004016118049493929190611fe1565b602060405180830381600087803b15801561181e57600080fd5b505af192505050801561184e575060408051601f3d908101601f1916820190925261184b91810190611e62565b60015b6118a8573d80801561187c576040519150601f19603f3d011682016040523d82523d6000602084013e611881565b606091505b5080516118a05760405162461bcd60e51b81526004016106ae906120cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113df565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161191e84610ef6565b61192891906125dd565b60008381526007602052604090205490915080821461197b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119c0906001906125dd565b600083815260096020526040812054600880549394509092849081106119f657634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611a2557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a6b57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611a9283610ef6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611af15760405162461bcd60e51b81526004016106ae90612351565b611afa816112d7565b15611b175760405162461bcd60e51b81526004016106ae90612163565b611b23600083836116f6565b6001600160a01b0382166000908152600360205260408120805460019290611b4c908490612592565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bb690612620565b90600052602060002090601f016020900481019282611bd85760008555611c1e565b82601f10611bf157805160ff1916838001178555611c1e565b82800160010185558215611c1e579182015b82811115611c1e578251825591602001919060010190611c03565b50611c2a929150611c2e565b5090565b5b80821115611c2a5760008155600101611c2f565b600067ffffffffffffffff80841115611c5e57611c5e6126b6565b604051601f8501601f191681016020018281118282101715611c8257611c826126b6565b604052848152915081838501861015611c9a57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461066a57600080fd5b8035801515811461066a57600080fd5b600060208284031215611ceb578081fd5b61117a82611cb3565b60008060408385031215611d06578081fd5b611d0f83611cb3565b9150611d1d60208401611cb3565b90509250929050565b600080600060608486031215611d3a578081fd5b611d4384611cb3565b9250611d5160208501611cb3565b9150604084013590509250925092565b60008060008060808587031215611d76578081fd5b611d7f85611cb3565b9350611d8d60208601611cb3565b925060408501359150606085013567ffffffffffffffff811115611daf578182fd5b8501601f81018713611dbf578182fd5b611dce87823560208401611c43565b91505092959194509250565b60008060408385031215611dec578182fd5b611df583611cb3565b9150611d1d60208401611cca565b60008060408385031215611e15578182fd5b611e1e83611cb3565b946020939093013593505050565b600060208284031215611e3d578081fd5b61117a82611cca565b600060208284031215611e57578081fd5b813561117a816126cc565b600060208284031215611e73578081fd5b815161117a816126cc565b600060208284031215611e8f578081fd5b813567ffffffffffffffff811115611ea5578182fd5b8201601f81018413611eb5578182fd5b6113df84823560208401611c43565b600060208284031215611ed5578081fd5b5035919050565b60008151808452611ef48160208601602086016125f4565b601f01601f19169290920160200192915050565b600084516020611f1b8285838a016125f4565b855191840191611f2e8184848a016125f4565b8554920191839060028104600180831680611f4a57607f831692505b858310811415611f6857634e487b7160e01b88526022600452602488fd5b808015611f7c5760018114611f8d57611fb9565b60ff19851688528388019550611fb9565b611f968b612586565b895b85811015611fb15781548a820152908401908801611f98565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061201490830184611edc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120565783518352928401929184019160010161203a565b50909695505050505050565b901515815260200190565b60006020825261117a6020830184611edc565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156125a5576125a561268a565b500190565b6000826125b9576125b96126a0565b500490565b60008160001904831182151516156125d8576125d861268a565b500290565b6000828210156125ef576125ef61268a565b500390565b60005b8381101561260f5781810151838201526020016125f7565b83811115610bf35750506000910152565b60028104600182168061263457607f821691505b6020821081141561265557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266f5761266f61268a565b5060010190565b600082612685576126856126a0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461128a57600080fdfea264697066735822122018965564ff734cebb6f561cf2c0b14f213dfece9f63ef1b72cc5a9fdfccbdc9964736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016446f677320556e6c656173686564204d696e696f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000644554d4e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52787751664b4272736450586765446178526d61736279384c4d537557416d455a36676465554731547850522f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dogs Unleashed Minions
Arg [1] : _symbol (string): DUMNFT
Arg [2] : _initBaseURI (string): ipfs://QmRxwQfKBrsdPXgeDaxRmasby8LMSuWAmEZ6gdeUG1TxPR/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 446f677320556e6c656173686564204d696e696f6e7300000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 44554d4e46540000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d52787751664b4272736450586765446178526d61736279
Arg [9] : 384c4d537557416d455a36676465554731547850522f00000000000000000000


Deployed Bytecode Sourcemap

43115:3480:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45553:73;;;;;;;;;;-1:-1:-1;45553:73:0;;;;;:::i;:::-;;:::i;:::-;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23640:411::-;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;43279:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35306:113::-;;;;;;;;;;;;;:::i;43352:33::-;;;;;;;;;;;;;:::i;25007:339::-;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;34974:256::-;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;45732:99::-;;;;;;;;;;-1:-1:-1;45732:99:0;;;;;:::i;:::-;;:::i;45838:754::-;;;:::i;43803:501::-;;;;;;:::i;:::-;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;44310:348::-;;;;;;;;;;-1:-1:-1;44310:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45109:82::-;;;;;;;;;;-1:-1:-1;45109:82:0;;;;;:::i;:::-;;:::i;45632:93::-;;;;;;;;;;-1:-1:-1;45632:93:0;;;;;:::i;:::-;;:::i;35496:233::-;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;45321:98::-;;;;;;;;;;-1:-1:-1;45321:98:0;;;;;:::i;:::-;;:::i;43390:26::-;;;;;;;;;;;;;:::i;22252:239::-;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;43211:21::-;;;;;;;;;;;;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;45197:118::-;;;;;;;;;;-1:-1:-1;45197:118:0;;;;;:::i;:::-;;:::i;41804:87::-;;;;;;;;;;;;;:::i;22727:104::-;;;;;;;;;;;;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;25673:328::-;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;43237:37::-;;;;;;;;;;;;;:::i;44664:423::-;;;;;;;;;;-1:-1:-1;44664:423:0;;;;;:::i;:::-;;:::i;43316:31::-;;;;;;;;;;;;;:::i;43421:43::-;;;;;;;;;;-1:-1:-1;43421:43:0;;;;;:::i;:::-;;:::i;45425:122::-;;;;;;;;;;-1:-1:-1;45425:122:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;;:::i;42704:192::-;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;;34666:224;;;;:::o;45553:73::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;45605:6:::1;:15:::0;;-1:-1:-1;;45605:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45553:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;24221:16;24229:7;24221;:16::i;:::-;24213:73;;;;-1:-1:-1;;;24213:73:0;;;;;;;:::i;:::-;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;;;;;;:::i;:::-;23879:5;-1:-1:-1;;;;;23863:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23863:21:0;;:62;;;;23888:37;23905:5;23912:12;:10;:12::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;;;;;;:::i;:::-;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23640:411;;;:::o;43279:32::-;;;;:::o;35306:113::-;35394:10;:17;35306:113;:::o;43352:33::-;;;;:::o;25007:339::-;25202:41;25221:12;:10;:12::i;:::-;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;45732:99::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45800:18:0::1;45821:5;45800:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;45800:26:0::1;::::0;;45732:99::o;45838:754::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;45975:42:::1;46046;45957:15;46227:3;46198:26;:21;46222:2;46198:26;:::i;:::-;:32;;;;:::i;:::-;46180:50:::0;-1:-1:-1;46241:16:0::1;46289:3;46260:26;:21;46284:2;46260:26;:::i;:::-;:32;;;;:::i;:::-;46241:51;;46306:7;46327;-1:-1:-1::0;;;;;46319:21:0::1;46348:7;46319:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46305:56;;;46380:2;46372:11;;;::::0;::::1;;46397:7;46418;-1:-1:-1::0;;;;;46410:21:0::1;46439:8;46410:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46396:56;;;46471:2;46463:11;;;::::0;::::1;;46488:7;46509;:5;:7::i;:::-;-1:-1:-1::0;;;;;46501:21:0::1;46530;46501:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46487:69;;;46575:2;46567:11;;;::::0;::::1;;42095:1;;;;;;;45838:754::o:0;43803:501::-;43873:14;43890:13;:11;:13::i;:::-;43919:6;;43873:30;;-1:-1:-1;43919:6:0;;43918:7;43910:16;;;;;;43955:1;43941:11;:15;43933:24;;;;;;43987:13;;43972:11;:28;;43964:37;;;;;;44040:9;;44016:20;44025:11;44016:6;:20;:::i;:::-;:33;;44008:42;;;;;;44077:7;:5;:7::i;:::-;-1:-1:-1;;;;;44063:21:0;:10;-1:-1:-1;;;;;44063:21:0;;44059:146;;44112:10;44100:23;;;;:11;:23;;;;;;;;:31;;:23;:31;44097:101;;44174:11;44167:4;;:18;;;;:::i;:::-;44154:9;:31;;44146:40;;;;;;44230:1;44213:86;44238:11;44233:1;:16;44213:86;;44265:26;44275:3;44280:10;44289:1;44280:6;:10;:::i;:::-;44265:9;:26::i;:::-;44251:3;;;;:::i;:::-;;;;44213:86;;;;43803:501;;;:::o;25417:185::-;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;44310:348::-;44385:16;44413:23;44439:17;44449:6;44439:9;:17::i;:::-;44413:43;;44463:25;44505:15;44491:30;;;;;;-1:-1:-1;;;44491:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44491:30:0;;44463:58;;44533:9;44528:103;44548:15;44544:1;:19;44528:103;;;44593:30;44613:6;44621:1;44593:19;:30::i;:::-;44579:8;44588:1;44579:11;;;;;;-1:-1:-1;;;44579:11:0;;;;;;;;;;;;;;;;;;:44;44565:3;;;;:::i;:::-;;;;44528:103;;;-1:-1:-1;44644:8:0;44310:348;-1:-1:-1;;;44310:348:0:o;45109:82::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;45170:4:::1;:15:::0;45109:82::o;45632:93::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45694:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;45694:25:0::1;45715:4;45694:25;::::0;;45632:93::o;35496:233::-;35571:7;35607:30;:28;:30::i;:::-;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;;;;;;:::i;:::-;35704:10;35715:5;35704:17;;;;;;-1:-1:-1;;;35704:17:0;;;;;;;;;;;;;;;;;35697:24;;35496:233;;;:::o;45321:98::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;45392:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45321:98:::0;:::o;43390:26::-;;;;;;:::o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;;;;;;:::i;43211:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21982:208::-;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;:::-;42455:94::o:0;45197:118::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;45276:13:::1;:33:::0;45197:118::o;41804:87::-;41877:6;;-1:-1:-1;;;;;41877:6:0;41804:87;:::o;22727:104::-;22783:13;22816:7;22809:14;;;;;:::i;24410:295::-;24525:12;:10;:12::i;:::-;-1:-1:-1;;;;;24513:24:0;:8;-1:-1:-1;;;;;24513:24:0;;;24505:62;;;;-1:-1:-1;;;24505:62:0;;;;;;;:::i;:::-;24625:8;24580:18;:32;24599:12;:10;:12::i;:::-;-1:-1:-1;;;;;24580:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24580:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;;24664:12;:10;:12::i;:::-;-1:-1:-1;;;;;24649:48:0;;24688:8;24649:48;;;;;;:::i;:::-;;;;;;;;24410:295;;:::o;25673:328::-;25848:41;25867:12;:10;:12::i;:::-;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;43237:37::-;;;;;;;:::i;44664:423::-;44762:13;44803:16;44811:7;44803;:16::i;:::-;44787:97;;;;-1:-1:-1;;;44787:97:0;;;;;;;:::i;:::-;44893:28;44924:10;:8;:10::i;:::-;44893:41;;44979:1;44954:14;44948:28;:32;:133;;;;;;;;;;;;;;;;;45016:14;45032:18;:7;:16;:18::i;:::-;45052:13;44999:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44948:133;44941:140;44664:423;-1:-1:-1;;;44664:423:0:o;43316:31::-;;;;:::o;43421:43::-;;;;;;;;;;;;;;;:::o;45425:122::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;45508:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;24776:164::-:0;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164::o;42704:192::-;42035:12;:10;:12::i;:::-;-1:-1:-1;;;;;42024:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42024:23:0;;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;;-1:-1:-1::0;;;42785:73:0::1;;;;;;;:::i;:::-;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;10444:387::-;10767:20;10815:8;;;10444:387::o;21613:305::-;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;;21874:36;21898:11;21874:23;:36::i;20087:98::-;20167:10;20087:98;:::o;27511:127::-;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;;;27511:127::o;31493:174::-;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27923:16;27931:7;27923;:16::i;:::-;27915:73;;;;-1:-1:-1;;;27915:73:0;;;;;;;:::i;:::-;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;;28112:32;28129:5;28136:7;28112:16;:32::i;:::-;28049:96;27805:348;-1:-1:-1;;;;27805:348:0:o;30797:578::-;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;;;;;;:::i;:::-;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42904:173;;:::o;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;43682:102::-;43742:13;43771:7;43764:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;;8192:53;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;-1:-1:-1;;;8421:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;-1:-1:-1;;;8509:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;7444:157;-1:-1:-1;;;;;;7553:40:0;;-1:-1:-1;;;7553:40:0;7444:157;;;:::o;36342:589::-;36486:45;36513:4;36519:2;36523:7;36486:26;:45::i;:::-;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;36583:31;:40::i;:::-;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;:::-;36741:183;;;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;32408:15;:2;-1:-1:-1;;;;;32408:13:0;;:15::i;:::-;32404:620;;;32460:2;-1:-1:-1;;;;;32444:36:0;;32481:12;:10;:12::i;:::-;32495:4;32501:7;32510:5;32444:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;37654:164::-;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;-1:-1:-1;;;40432:26:0;;;;;;;;;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;-1:-1:-1;;;40471:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;-1:-1:-1;;;40783:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39728:1079;;;;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;29489:382::-;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;;;;;;:::i;:::-;29642:16;29650:7;29642;:16::i;:::-;29641:17;29633:58;;;;-1:-1:-1;;;29633:58:0;;;;;;;:::i;:::-;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:1;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:1;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:1;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:1;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:1:o;6261:205::-;6461:3;6452:14::o;6471:203::-;-1:-1:-1;;;;;6635:32:1;;;;6617:51;;6605:2;6590:18;;6572:102::o;6679:490::-;-1:-1:-1;;;;;6948:15:1;;;6930:34;;7000:15;;6995:2;6980:18;;6973:43;7047:2;7032:18;;7025:34;;;7095:3;7090:2;7075:18;;7068:31;;;6679:490;;7116:47;;7143:19;;7135:6;7116:47;:::i;:::-;7108:55;6882:287;-1:-1:-1;;;;;;6882:287:1:o;7174:635::-;7345:2;7397:21;;;7467:13;;7370:18;;;7489:22;;;7174:635;;7345:2;7568:15;;;;7542:2;7527:18;;;7174:635;7614:169;7628:6;7625:1;7622:13;7614:169;;;7689:13;;7677:26;;7758:15;;;;7723:12;;;;7650:1;7643:9;7614:169;;;-1:-1:-1;7800:3:1;;7325:484;-1:-1:-1;;;;;;7325:484:1:o;7814:187::-;7979:14;;7972:22;7954:41;;7942:2;7927:18;;7909:92::o;8006:221::-;;8155:2;8144:9;8137:21;8175:46;8217:2;8206:9;8202:18;8194:6;8175:46;:::i;8232:407::-;8434:2;8416:21;;;8473:2;8453:18;;;8446:30;8512:34;8507:2;8492:18;;8485:62;-1:-1:-1;;;8578:2:1;8563:18;;8556:41;8629:3;8614:19;;8406:233::o;8644:414::-;8846:2;8828:21;;;8885:2;8865:18;;;8858:30;8924:34;8919:2;8904:18;;8897:62;-1:-1:-1;;;8990:2:1;8975:18;;8968:48;9048:3;9033:19;;8818:240::o;9063:402::-;9265:2;9247:21;;;9304:2;9284:18;;;9277:30;9343:34;9338:2;9323:18;;9316:62;-1:-1:-1;;;9409:2:1;9394:18;;9387:36;9455:3;9440:19;;9237:228::o;9470:352::-;9672:2;9654:21;;;9711:2;9691:18;;;9684:30;9750;9745:2;9730:18;;9723:58;9813:2;9798:18;;9644:178::o;9827:400::-;10029:2;10011:21;;;10068:2;10048:18;;;10041:30;10107:34;10102:2;10087:18;;10080:62;-1:-1:-1;;;10173:2:1;10158:18;;10151:34;10217:3;10202:19;;10001:226::o;10232:349::-;10434:2;10416:21;;;10473:2;10453:18;;;10446:30;10512:27;10507:2;10492:18;;10485:55;10572:2;10557:18;;10406:175::o;10586:408::-;10788:2;10770:21;;;10827:2;10807:18;;;10800:30;10866:34;10861:2;10846:18;;10839:62;-1:-1:-1;;;10932:2:1;10917:18;;10910:42;10984:3;10969:19;;10760:234::o;10999:420::-;11201:2;11183:21;;;11240:2;11220:18;;;11213:30;11279:34;11274:2;11259:18;;11252:62;11350:26;11345:2;11330:18;;11323:54;11409:3;11394:19;;11173:246::o;11424:406::-;11626:2;11608:21;;;11665:2;11645:18;;;11638:30;11704:34;11699:2;11684:18;;11677:62;-1:-1:-1;;;11770:2:1;11755:18;;11748:40;11820:3;11805:19;;11598:232::o;11835:405::-;12037:2;12019:21;;;12076:2;12056:18;;;12049:30;12115:34;12110:2;12095:18;;12088:62;-1:-1:-1;;;12181:2:1;12166:18;;12159:39;12230:3;12215:19;;12009:231::o;12245:356::-;12447:2;12429:21;;;12466:18;;;12459:30;12525:34;12520:2;12505:18;;12498:62;12592:2;12577:18;;12419:182::o;12606:408::-;12808:2;12790:21;;;12847:2;12827:18;;;12820:30;12886:34;12881:2;12866:18;;12859:62;-1:-1:-1;;;12952:2:1;12937:18;;12930:42;13004:3;12989:19;;12780:234::o;13019:356::-;13221:2;13203:21;;;13240:18;;;13233:30;13299:34;13294:2;13279:18;;13272:62;13366:2;13351:18;;13193:182::o;13380:405::-;13582:2;13564:21;;;13621:2;13601:18;;;13594:30;13660:34;13655:2;13640:18;;13633:62;-1:-1:-1;;;13726:2:1;13711:18;;13704:39;13775:3;13760:19;;13554:231::o;13790:411::-;13992:2;13974:21;;;14031:2;14011:18;;;14004:30;14070:34;14065:2;14050:18;;14043:62;-1:-1:-1;;;14136:2:1;14121:18;;14114:45;14191:3;14176:19;;13964:237::o;14206:397::-;14408:2;14390:21;;;14447:2;14427:18;;;14420:30;14486:34;14481:2;14466:18;;14459:62;-1:-1:-1;;;14552:2:1;14537:18;;14530:31;14593:3;14578:19;;14380:223::o;14608:413::-;14810:2;14792:21;;;14849:2;14829:18;;;14822:30;14888:34;14883:2;14868:18;;14861:62;-1:-1:-1;;;14954:2:1;14939:18;;14932:47;15011:3;14996:19;;14782:239::o;15026:408::-;15228:2;15210:21;;;15267:2;15247:18;;;15240:30;15306:34;15301:2;15286:18;;15279:62;-1:-1:-1;;;15372:2:1;15357:18;;15350:42;15424:3;15409:19;;15200:234::o;15439:177::-;15585:25;;;15573:2;15558:18;;15540:76::o;15621:129::-;;15689:17;;;15739:4;15723:21;;;15679:71::o;15755:128::-;;15826:1;15822:6;15819:1;15816:13;15813:2;;;15832:18;;:::i;:::-;-1:-1:-1;15868:9:1;;15803:80::o;15888:120::-;;15954:1;15944:2;;15959:18;;:::i;:::-;-1:-1:-1;15993:9:1;;15934:74::o;16013:168::-;;16119:1;16115;16111:6;16107:14;16104:1;16101:21;16096:1;16089:9;16082:17;16078:45;16075:2;;;16126:18;;:::i;:::-;-1:-1:-1;16166:9:1;;16065:116::o;16186:125::-;;16254:1;16251;16248:8;16245:2;;;16259:18;;:::i;:::-;-1:-1:-1;16296:9:1;;16235:76::o;16316:258::-;16388:1;16398:113;16412:6;16409:1;16406:13;16398:113;;;16488:11;;;16482:18;16469:11;;;16462:39;16434:2;16427:10;16398:113;;;16529:6;16526:1;16523:13;16520:2;;;-1:-1:-1;;16564:1:1;16546:16;;16539:27;16369:205::o;16579:380::-;16664:1;16654:12;;16711:1;16701:12;;;16722:2;;16776:4;16768:6;16764:17;16754:27;;16722:2;16829;16821:6;16818:14;16798:18;16795:38;16792:2;;;16875:10;16870:3;16866:20;16863:1;16856:31;16910:4;16907:1;16900:15;16938:4;16935:1;16928:15;16792:2;;16634:325;;;:::o;16964:135::-;;-1:-1:-1;;17024:17:1;;17021:2;;;17044:18;;:::i;:::-;-1:-1:-1;17091:1:1;17080:13;;17011:88::o;17104:112::-;;17162:1;17152:2;;17167:18;;:::i;:::-;-1:-1:-1;17201:9:1;;17142:74::o;17221:127::-;17282:10;17277:3;17273:20;17270:1;17263:31;17313:4;17310:1;17303:15;17337:4;17334:1;17327:15;17353:127;17414:10;17409:3;17405:20;17402:1;17395:31;17445:4;17442:1;17435:15;17469:4;17466:1;17459:15;17485:127;17546:10;17541:3;17537:20;17534:1;17527:31;17577:4;17574:1;17567:15;17601:4;17598:1;17591:15;17617:133;-1:-1:-1;;;;;;17693:32:1;;17683:43;;17673:2;;17740:1;17737;17730:12

Swarm Source

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