ETH Price: $3,106.43 (+0.81%)
Gas: 4 Gwei

Token

DooDoodles (DOO)
 

Overview

Max Total Supply

692 DOO

Holders

421

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DOO
0xe6e0bb92b40d0ba7292643126aafac2f4c5d86de
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:
DooDoodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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/Context.sol



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

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



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/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/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: contracts/DooDoodles.sol



pragma solidity 0.8.7;




contract DooDoodles is ERC721Enumerable, Ownable {
    
    using SafeMath for uint256;
    
    string public baseTokenURI; 
    uint256 public price = 0.02 ether;
    uint256 public saleState = 0;  // 0 = paused, 1 = live
    uint256 public max_doods = 7000;
    
    // withdraw address
    address public a1;

    bool public rainbowMode = false;
    
    //constructor takes in baseTokenURI, withdrawAddress
    constructor(string memory _baseTokenURI, address _withdrawAddress) ERC721("DooDoodles","DOO") {
        setBaseURI(_baseTokenURI);
        setWithdrawAddress(_withdrawAddress);
    }
    
    //mint function
    function mintDoods(uint256 num) public payable{
        uint256 supply = totalSupply();
        require( saleState > 0,             "Main sale is not active" );
        require( supply + num <= max_doods, "Requested mints exceed remaining supply" );
        if(rainbowMode && num > 1){
            require( msg.value >= price * (num-1),  "Ether sent is insufficient" );
        }
        else{
            require( msg.value >= price * num,  "Ether sent is insufficient" );
        }
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
    }
    
    
    //views
    
    //override boiler plate code
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    //setters
    
    //in-case eth spikes
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    // 0 = paused, 1 = live 
    function setSaleState(uint256 _saleState) public onlyOwner {
        saleState = _saleState;
    }

    function setMaxDoods(uint256 _newMax) public onlyOwner{
        max_doods = _newMax;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
    
    function setWithdrawAddress(address _a) public onlyOwner {
        a1 = _a;  
    }

    function setRainbowMode(bool _mode) public onlyOwner {
        rainbowMode = _mode;
    }
    
    //creator utils
    
    function giveAway(address _to, uint256 _count) external onlyOwner() {
        uint256 supply = totalSupply();
        require( supply + _count <= max_doods,  "Requested mints exceed remaining supply" );
        for(uint256 i; i < _count; i++){
            _safeMint( _to, supply + i );
        }
    }
    
    function withdrawBalance() public payable onlyOwner {
        uint256 _payment = address(this).balance;
        
        (bool success, ) = payable(a1).call{value: _payment}("");
        require(success, "Transfer failed to a1.");

    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"address","name":"_withdrawAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"max_doods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintDoods","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rainbowMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxDoods","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mode","type":"bool"}],"name":"setRainbowMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266470de4df820000600c556000600d55611b58600e55600f805460ff60a01b191690553480156200003457600080fd5b50604051620028d2380380620028d28339810160408190526200005791620002e3565b604080518082018252600a815269446f6f446f6f646c657360b01b602080830191825283518085019094526003845262444f4f60e81b908401528151919291620000a49160009162000220565b508051620000ba90600190602084019062000220565b505050620000d7620000d1620000f560201b60201c565b620000f9565b620000e2826200014b565b620000ed81620001b3565b505062000427565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200019a5760405162461bcd60e51b81526020600482018190526024820152600080516020620028b283398151915260448201526064015b60405180910390fd5b8051620001af90600b90602084019062000220565b5050565b600a546001600160a01b03163314620001fe5760405162461bcd60e51b81526020600482018190526024820152600080516020620028b2833981519152604482015260640162000191565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b8280546200022e90620003d4565b90600052602060002090601f0160209004810192826200025257600085556200029d565b82601f106200026d57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029d57825182559160200191906001019062000280565b50620002ab929150620002af565b5090565b5b80821115620002ab5760008155600101620002b0565b80516001600160a01b0381168114620002de57600080fd5b919050565b60008060408385031215620002f757600080fd5b82516001600160401b03808211156200030f57600080fd5b818501915085601f8301126200032457600080fd5b81518181111562000339576200033962000411565b604051601f8201601f19908116603f0116810190838211818310171562000364576200036462000411565b816040528281526020935088848487010111156200038157600080fd5b600091505b82821015620003a5578482018401518183018501529083019062000386565b82821115620003b75760008484830101525b9550620003c9915050858201620002c6565b925050509250929050565b600181811c90821680620003e957607f821691505b602082108114156200040b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61247b80620004376000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb7146105b9578063d6dfe8b4146105ce578063e985e9c5146105e1578063f2fde38b1461062a578063fe3180a81461064a57600080fd5b8063b88d4fde14610538578063b8bac08114610558578063c87b56dd14610579578063ca8001441461059957600080fd5b80638da5cb5b116100e75780638da5cb5b146104af57806391b7f5ed146104cd57806395d89b41146104ed578063a035b1fe14610502578063a22cb4651461051857600080fd5b80636352211e1461043a57806370a082311461045a578063715018a61461047a57806387b3f8291461048f57600080fd5b80632f745c591161019b578063438b63001161016a578063438b6300146103af5780634f6ccce7146103dc57806355f804b3146103fc5780635fd8c7101461041c578063603f4d521461042457600080fd5b80632f745c59146103395780633ab1a494146103595780633ebda3b31461037957806342842e0e1461038f57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba578063119552a1146102da57806318160ddd146102fa57806323b872dd1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063084c408814610298575b600080fd5b34801561021557600080fd5b5061022961022436600461201f565b61066a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610695565b6040516102359190612197565b34801561026c57600080fd5b5061028061027b3660046120a2565b610727565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b33660046120a2565b6107c1565b005b3480156102c657600080fd5b506102b86102d5366004611fda565b6107f0565b3480156102e657600080fd5b50600f54610280906001600160a01b031681565b34801561030657600080fd5b506008545b604051908152602001610235565b34801561032557600080fd5b506102b8610334366004611ef8565b610906565b34801561034557600080fd5b5061030b610354366004611fda565b610937565b34801561036557600080fd5b506102b8610374366004611eaa565b6109cd565b34801561038557600080fd5b5061030b600e5481565b34801561039b57600080fd5b506102b86103aa366004611ef8565b610a19565b3480156103bb57600080fd5b506103cf6103ca366004611eaa565b610a34565b6040516102359190612153565b3480156103e857600080fd5b5061030b6103f73660046120a2565b610ad6565b34801561040857600080fd5b506102b8610417366004612059565b610b69565b6102b8610baa565b34801561043057600080fd5b5061030b600d5481565b34801561044657600080fd5b506102806104553660046120a2565b610c74565b34801561046657600080fd5b5061030b610475366004611eaa565b610ceb565b34801561048657600080fd5b506102b8610d72565b34801561049b57600080fd5b506102b86104aa3660046120a2565b610da8565b3480156104bb57600080fd5b50600a546001600160a01b0316610280565b3480156104d957600080fd5b506102b86104e83660046120a2565b610dd7565b3480156104f957600080fd5b50610253610e06565b34801561050e57600080fd5b5061030b600c5481565b34801561052457600080fd5b506102b8610533366004611fb0565b610e15565b34801561054457600080fd5b506102b8610553366004611f34565b610eda565b34801561056457600080fd5b50600f5461022990600160a01b900460ff1681565b34801561058557600080fd5b506102536105943660046120a2565b610f12565b3480156105a557600080fd5b506102b86105b4366004611fda565b610fed565b3480156105c557600080fd5b50610253611080565b6102b86105dc3660046120a2565b61110e565b3480156105ed57600080fd5b506102296105fc366004611ec5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063657600080fd5b506102b8610645366004611eaa565b6112aa565b34801561065657600080fd5b506102b8610665366004612004565b611345565b60006001600160e01b0319821663780e9d6360e01b148061068f575061068f8261138d565b92915050565b6060600080546106a490612357565b80601f01602080910402602001604051908101604052809291908181526020018280546106d090612357565b801561071d5780601f106106f25761010080835404028352916020019161071d565b820191906000526020600020905b81548152906001019060200180831161070057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146107eb5760405162461bcd60e51b815260040161079c90612243565b600d55565b60006107fb82610c74565b9050806001600160a01b0316836001600160a01b031614156108695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161079c565b336001600160a01b0382161480610885575061088581336105fc565b6108f75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079c565b61090183836113dd565b505050565b610910338261144b565b61092c5760405162461bcd60e51b815260040161079c90612278565b610901838383611542565b600061094283610ceb565b82106109a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161079c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109f75760405162461bcd60e51b815260040161079c90612243565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b61090183838360405180602001604052806000815250610eda565b60606000610a4183610ceb565b905060008167ffffffffffffffff811115610a5e57610a5e612419565b604051908082528060200260200182016040528015610a87578160200160208202803683370190505b50905060005b82811015610ace57610a9f8582610937565b828281518110610ab157610ab1612403565b602090810291909101015280610ac681612392565b915050610a8d565b509392505050565b6000610ae160085490565b8210610b445760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161079c565b60088281548110610b5757610b57612403565b90600052602060002001549050919050565b600a546001600160a01b03163314610b935760405162461bcd60e51b815260040161079c90612243565b8051610ba690600b906020840190611d6f565b5050565b600a546001600160a01b03163314610bd45760405162461bcd60e51b815260040161079c90612243565b600f5460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610c25576040519150601f19603f3d011682016040523d82523d6000602084013e610c2a565b606091505b5050905080610ba65760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b604482015260640161079c565b6000818152600260205260408120546001600160a01b03168061068f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161079c565b60006001600160a01b038216610d565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161079c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d9c5760405162461bcd60e51b815260040161079c90612243565b610da660006116ed565b565b600a546001600160a01b03163314610dd25760405162461bcd60e51b815260040161079c90612243565b600e55565b600a546001600160a01b03163314610e015760405162461bcd60e51b815260040161079c90612243565b600c55565b6060600180546106a490612357565b6001600160a01b038216331415610e6e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ee4338361144b565b610f005760405162461bcd60e51b815260040161079c90612278565b610f0c8484848461173f565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079c565b6000610f9b611772565b90506000815111610fbb5760405180602001604052806000815250610fe6565b80610fc584611781565b604051602001610fd69291906120e7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110175760405162461bcd60e51b815260040161079c90612243565b600061102260085490565b600e5490915061103283836122c9565b11156110505760405162461bcd60e51b815260040161079c906121fc565b60005b82811015610f0c5761106e8461106983856122c9565b61187f565b8061107881612392565b915050611053565b600b805461108d90612357565b80601f01602080910402602001604051908101604052809291908181526020018280546110b990612357565b80156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b505050505081565b600061111960085490565b90506000600d541161116d5760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f7420616374697665000000000000000000604482015260640161079c565b600e5461117a83836122c9565b11156111985760405162461bcd60e51b815260040161079c906121fc565b600f54600160a01b900460ff1680156111b15750600182115b15611222576111c1600183612314565b600c546111ce91906122f5565b34101561121d5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161079c565b61127f565b81600c5461123091906122f5565b34101561127f5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161079c565b60005b82811015610901576112983361106983856122c9565b806112a281612392565b915050611282565b600a546001600160a01b031633146112d45760405162461bcd60e51b815260040161079c90612243565b6001600160a01b0381166113395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b611342816116ed565b50565b600a546001600160a01b0316331461136f5760405162461bcd60e51b815260040161079c90612243565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806113be57506001600160e01b03198216635b5e139f60e01b145b8061068f57506301ffc9a760e01b6001600160e01b031983161461068f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061141282610c74565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079c565b60006114cf83610c74565b9050806001600160a01b0316846001600160a01b0316148061150a5750836001600160a01b03166114ff84610727565b6001600160a01b0316145b8061153a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661155582610c74565b6001600160a01b0316146115bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161079c565b6001600160a01b03821661161f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161079c565b61162a838383611899565b6116356000826113dd565b6001600160a01b038316600090815260036020526040812080546001929061165e908490612314565b90915550506001600160a01b038216600090815260036020526040812080546001929061168c9084906122c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61174a848484611542565b61175684848484611951565b610f0c5760405162461bcd60e51b815260040161079c906121aa565b6060600b80546106a490612357565b6060816117a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117cf57806117b981612392565b91506117c89050600a836122e1565b91506117a9565b60008167ffffffffffffffff8111156117ea576117ea612419565b6040519080825280601f01601f191660200182016040528015611814576020820181803683370190505b5090505b841561153a57611829600183612314565b9150611836600a866123ad565b6118419060306122c9565b60f81b81838151811061185657611856612403565b60200101906001600160f81b031916908160001a905350611878600a866122e1565b9450611818565b610ba6828260405180602001604052806000815250611a5e565b6001600160a01b0383166118f4576118ef81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611917565b816001600160a01b0316836001600160a01b031614611917576119178382611a91565b6001600160a01b03821661192e5761090181611b2e565b826001600160a01b0316826001600160a01b031614610901576109018282611bdd565b60006001600160a01b0384163b15611a5357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611995903390899088908890600401612116565b602060405180830381600087803b1580156119af57600080fd5b505af19250505080156119df575060408051601f3d908101601f191682019092526119dc9181019061203c565b60015b611a39573d808015611a0d576040519150601f19603f3d011682016040523d82523d6000602084013e611a12565b606091505b508051611a315760405162461bcd60e51b815260040161079c906121aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061153a565b506001949350505050565b611a688383611c21565b611a756000848484611951565b6109015760405162461bcd60e51b815260040161079c906121aa565b60006001611a9e84610ceb565b611aa89190612314565b600083815260076020526040902054909150808214611afb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b4090600190612314565b60008381526009602052604081205460088054939450909284908110611b6857611b68612403565b906000526020600020015490508060088381548110611b8957611b89612403565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bc157611bc16123ed565b6001900381819060005260206000200160009055905550505050565b6000611be883610ceb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079c565b6000818152600260205260409020546001600160a01b031615611cdc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079c565b611ce860008383611899565b6001600160a01b0382166000908152600360205260408120805460019290611d119084906122c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d7b90612357565b90600052602060002090601f016020900481019282611d9d5760008555611de3565b82601f10611db657805160ff1916838001178555611de3565b82800160010185558215611de3579182015b82811115611de3578251825591602001919060010190611dc8565b50611def929150611df3565b5090565b5b80821115611def5760008155600101611df4565b600067ffffffffffffffff80841115611e2357611e23612419565b604051601f8501601f19908116603f01168101908282118183101715611e4b57611e4b612419565b81604052809350858152868686011115611e6457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e9557600080fd5b919050565b80358015158114611e9557600080fd5b600060208284031215611ebc57600080fd5b610fe682611e7e565b60008060408385031215611ed857600080fd5b611ee183611e7e565b9150611eef60208401611e7e565b90509250929050565b600080600060608486031215611f0d57600080fd5b611f1684611e7e565b9250611f2460208501611e7e565b9150604084013590509250925092565b60008060008060808587031215611f4a57600080fd5b611f5385611e7e565b9350611f6160208601611e7e565b925060408501359150606085013567ffffffffffffffff811115611f8457600080fd5b8501601f81018713611f9557600080fd5b611fa487823560208401611e08565b91505092959194509250565b60008060408385031215611fc357600080fd5b611fcc83611e7e565b9150611eef60208401611e9a565b60008060408385031215611fed57600080fd5b611ff683611e7e565b946020939093013593505050565b60006020828403121561201657600080fd5b610fe682611e9a565b60006020828403121561203157600080fd5b8135610fe68161242f565b60006020828403121561204e57600080fd5b8151610fe68161242f565b60006020828403121561206b57600080fd5b813567ffffffffffffffff81111561208257600080fd5b8201601f8101841361209357600080fd5b61153a84823560208401611e08565b6000602082840312156120b457600080fd5b5035919050565b600081518084526120d381602086016020860161232b565b601f01601f19169290920160200192915050565b600083516120f981846020880161232b565b83519083019061210d81836020880161232b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612149908301846120bb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561218b5783518352928401929184019160010161216f565b50909695505050505050565b602081526000610fe660208301846120bb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122dc576122dc6123c1565b500190565b6000826122f0576122f06123d7565b500490565b600081600019048311821515161561230f5761230f6123c1565b500290565b600082821015612326576123266123c1565b500390565b60005b8381101561234657818101518382015260200161232e565b83811115610f0c5750506000910152565b600181811c9082168061236b57607f821691505b6020821081141561238c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123a6576123a66123c1565b5060010190565b6000826123bc576123bc6123d7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134257600080fdfea26469706673582212207d8f0a6e6e3e90b76a3012f26ac202048f77f980f144eae6e7ca59dbc8c081d064736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000040000000000000000000000000daf291532680bf4d79589226652e2541109172ad0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55787575346a517a704d7848764c625844357a6f446e6e7a686b6132555162707974514d653459795551354a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb7146105b9578063d6dfe8b4146105ce578063e985e9c5146105e1578063f2fde38b1461062a578063fe3180a81461064a57600080fd5b8063b88d4fde14610538578063b8bac08114610558578063c87b56dd14610579578063ca8001441461059957600080fd5b80638da5cb5b116100e75780638da5cb5b146104af57806391b7f5ed146104cd57806395d89b41146104ed578063a035b1fe14610502578063a22cb4651461051857600080fd5b80636352211e1461043a57806370a082311461045a578063715018a61461047a57806387b3f8291461048f57600080fd5b80632f745c591161019b578063438b63001161016a578063438b6300146103af5780634f6ccce7146103dc57806355f804b3146103fc5780635fd8c7101461041c578063603f4d521461042457600080fd5b80632f745c59146103395780633ab1a494146103595780633ebda3b31461037957806342842e0e1461038f57600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba578063119552a1146102da57806318160ddd146102fa57806323b872dd1461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063084c408814610298575b600080fd5b34801561021557600080fd5b5061022961022436600461201f565b61066a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610695565b6040516102359190612197565b34801561026c57600080fd5b5061028061027b3660046120a2565b610727565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b33660046120a2565b6107c1565b005b3480156102c657600080fd5b506102b86102d5366004611fda565b6107f0565b3480156102e657600080fd5b50600f54610280906001600160a01b031681565b34801561030657600080fd5b506008545b604051908152602001610235565b34801561032557600080fd5b506102b8610334366004611ef8565b610906565b34801561034557600080fd5b5061030b610354366004611fda565b610937565b34801561036557600080fd5b506102b8610374366004611eaa565b6109cd565b34801561038557600080fd5b5061030b600e5481565b34801561039b57600080fd5b506102b86103aa366004611ef8565b610a19565b3480156103bb57600080fd5b506103cf6103ca366004611eaa565b610a34565b6040516102359190612153565b3480156103e857600080fd5b5061030b6103f73660046120a2565b610ad6565b34801561040857600080fd5b506102b8610417366004612059565b610b69565b6102b8610baa565b34801561043057600080fd5b5061030b600d5481565b34801561044657600080fd5b506102806104553660046120a2565b610c74565b34801561046657600080fd5b5061030b610475366004611eaa565b610ceb565b34801561048657600080fd5b506102b8610d72565b34801561049b57600080fd5b506102b86104aa3660046120a2565b610da8565b3480156104bb57600080fd5b50600a546001600160a01b0316610280565b3480156104d957600080fd5b506102b86104e83660046120a2565b610dd7565b3480156104f957600080fd5b50610253610e06565b34801561050e57600080fd5b5061030b600c5481565b34801561052457600080fd5b506102b8610533366004611fb0565b610e15565b34801561054457600080fd5b506102b8610553366004611f34565b610eda565b34801561056457600080fd5b50600f5461022990600160a01b900460ff1681565b34801561058557600080fd5b506102536105943660046120a2565b610f12565b3480156105a557600080fd5b506102b86105b4366004611fda565b610fed565b3480156105c557600080fd5b50610253611080565b6102b86105dc3660046120a2565b61110e565b3480156105ed57600080fd5b506102296105fc366004611ec5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063657600080fd5b506102b8610645366004611eaa565b6112aa565b34801561065657600080fd5b506102b8610665366004612004565b611345565b60006001600160e01b0319821663780e9d6360e01b148061068f575061068f8261138d565b92915050565b6060600080546106a490612357565b80601f01602080910402602001604051908101604052809291908181526020018280546106d090612357565b801561071d5780601f106106f25761010080835404028352916020019161071d565b820191906000526020600020905b81548152906001019060200180831161070057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146107eb5760405162461bcd60e51b815260040161079c90612243565b600d55565b60006107fb82610c74565b9050806001600160a01b0316836001600160a01b031614156108695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161079c565b336001600160a01b0382161480610885575061088581336105fc565b6108f75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079c565b61090183836113dd565b505050565b610910338261144b565b61092c5760405162461bcd60e51b815260040161079c90612278565b610901838383611542565b600061094283610ceb565b82106109a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161079c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109f75760405162461bcd60e51b815260040161079c90612243565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b61090183838360405180602001604052806000815250610eda565b60606000610a4183610ceb565b905060008167ffffffffffffffff811115610a5e57610a5e612419565b604051908082528060200260200182016040528015610a87578160200160208202803683370190505b50905060005b82811015610ace57610a9f8582610937565b828281518110610ab157610ab1612403565b602090810291909101015280610ac681612392565b915050610a8d565b509392505050565b6000610ae160085490565b8210610b445760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161079c565b60088281548110610b5757610b57612403565b90600052602060002001549050919050565b600a546001600160a01b03163314610b935760405162461bcd60e51b815260040161079c90612243565b8051610ba690600b906020840190611d6f565b5050565b600a546001600160a01b03163314610bd45760405162461bcd60e51b815260040161079c90612243565b600f5460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610c25576040519150601f19603f3d011682016040523d82523d6000602084013e610c2a565b606091505b5050905080610ba65760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b9103330b4b632b2103a379030989760511b604482015260640161079c565b6000818152600260205260408120546001600160a01b03168061068f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161079c565b60006001600160a01b038216610d565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161079c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d9c5760405162461bcd60e51b815260040161079c90612243565b610da660006116ed565b565b600a546001600160a01b03163314610dd25760405162461bcd60e51b815260040161079c90612243565b600e55565b600a546001600160a01b03163314610e015760405162461bcd60e51b815260040161079c90612243565b600c55565b6060600180546106a490612357565b6001600160a01b038216331415610e6e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ee4338361144b565b610f005760405162461bcd60e51b815260040161079c90612278565b610f0c8484848461173f565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079c565b6000610f9b611772565b90506000815111610fbb5760405180602001604052806000815250610fe6565b80610fc584611781565b604051602001610fd69291906120e7565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110175760405162461bcd60e51b815260040161079c90612243565b600061102260085490565b600e5490915061103283836122c9565b11156110505760405162461bcd60e51b815260040161079c906121fc565b60005b82811015610f0c5761106e8461106983856122c9565b61187f565b8061107881612392565b915050611053565b600b805461108d90612357565b80601f01602080910402602001604051908101604052809291908181526020018280546110b990612357565b80156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b505050505081565b600061111960085490565b90506000600d541161116d5760405162461bcd60e51b815260206004820152601760248201527f4d61696e2073616c65206973206e6f7420616374697665000000000000000000604482015260640161079c565b600e5461117a83836122c9565b11156111985760405162461bcd60e51b815260040161079c906121fc565b600f54600160a01b900460ff1680156111b15750600182115b15611222576111c1600183612314565b600c546111ce91906122f5565b34101561121d5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161079c565b61127f565b81600c5461123091906122f5565b34101561127f5760405162461bcd60e51b815260206004820152601a60248201527f45746865722073656e7420697320696e73756666696369656e74000000000000604482015260640161079c565b60005b82811015610901576112983361106983856122c9565b806112a281612392565b915050611282565b600a546001600160a01b031633146112d45760405162461bcd60e51b815260040161079c90612243565b6001600160a01b0381166113395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b611342816116ed565b50565b600a546001600160a01b0316331461136f5760405162461bcd60e51b815260040161079c90612243565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806113be57506001600160e01b03198216635b5e139f60e01b145b8061068f57506301ffc9a760e01b6001600160e01b031983161461068f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061141282610c74565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079c565b60006114cf83610c74565b9050806001600160a01b0316846001600160a01b0316148061150a5750836001600160a01b03166114ff84610727565b6001600160a01b0316145b8061153a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661155582610c74565b6001600160a01b0316146115bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161079c565b6001600160a01b03821661161f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161079c565b61162a838383611899565b6116356000826113dd565b6001600160a01b038316600090815260036020526040812080546001929061165e908490612314565b90915550506001600160a01b038216600090815260036020526040812080546001929061168c9084906122c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61174a848484611542565b61175684848484611951565b610f0c5760405162461bcd60e51b815260040161079c906121aa565b6060600b80546106a490612357565b6060816117a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117cf57806117b981612392565b91506117c89050600a836122e1565b91506117a9565b60008167ffffffffffffffff8111156117ea576117ea612419565b6040519080825280601f01601f191660200182016040528015611814576020820181803683370190505b5090505b841561153a57611829600183612314565b9150611836600a866123ad565b6118419060306122c9565b60f81b81838151811061185657611856612403565b60200101906001600160f81b031916908160001a905350611878600a866122e1565b9450611818565b610ba6828260405180602001604052806000815250611a5e565b6001600160a01b0383166118f4576118ef81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611917565b816001600160a01b0316836001600160a01b031614611917576119178382611a91565b6001600160a01b03821661192e5761090181611b2e565b826001600160a01b0316826001600160a01b031614610901576109018282611bdd565b60006001600160a01b0384163b15611a5357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611995903390899088908890600401612116565b602060405180830381600087803b1580156119af57600080fd5b505af19250505080156119df575060408051601f3d908101601f191682019092526119dc9181019061203c565b60015b611a39573d808015611a0d576040519150601f19603f3d011682016040523d82523d6000602084013e611a12565b606091505b508051611a315760405162461bcd60e51b815260040161079c906121aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061153a565b506001949350505050565b611a688383611c21565b611a756000848484611951565b6109015760405162461bcd60e51b815260040161079c906121aa565b60006001611a9e84610ceb565b611aa89190612314565b600083815260076020526040902054909150808214611afb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b4090600190612314565b60008381526009602052604081205460088054939450909284908110611b6857611b68612403565b906000526020600020015490508060088381548110611b8957611b89612403565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bc157611bc16123ed565b6001900381819060005260206000200160009055905550505050565b6000611be883610ceb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079c565b6000818152600260205260409020546001600160a01b031615611cdc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079c565b611ce860008383611899565b6001600160a01b0382166000908152600360205260408120805460019290611d119084906122c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d7b90612357565b90600052602060002090601f016020900481019282611d9d5760008555611de3565b82601f10611db657805160ff1916838001178555611de3565b82800160010185558215611de3579182015b82811115611de3578251825591602001919060010190611dc8565b50611def929150611df3565b5090565b5b80821115611def5760008155600101611df4565b600067ffffffffffffffff80841115611e2357611e23612419565b604051601f8501601f19908116603f01168101908282118183101715611e4b57611e4b612419565b81604052809350858152868686011115611e6457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e9557600080fd5b919050565b80358015158114611e9557600080fd5b600060208284031215611ebc57600080fd5b610fe682611e7e565b60008060408385031215611ed857600080fd5b611ee183611e7e565b9150611eef60208401611e7e565b90509250929050565b600080600060608486031215611f0d57600080fd5b611f1684611e7e565b9250611f2460208501611e7e565b9150604084013590509250925092565b60008060008060808587031215611f4a57600080fd5b611f5385611e7e565b9350611f6160208601611e7e565b925060408501359150606085013567ffffffffffffffff811115611f8457600080fd5b8501601f81018713611f9557600080fd5b611fa487823560208401611e08565b91505092959194509250565b60008060408385031215611fc357600080fd5b611fcc83611e7e565b9150611eef60208401611e9a565b60008060408385031215611fed57600080fd5b611ff683611e7e565b946020939093013593505050565b60006020828403121561201657600080fd5b610fe682611e9a565b60006020828403121561203157600080fd5b8135610fe68161242f565b60006020828403121561204e57600080fd5b8151610fe68161242f565b60006020828403121561206b57600080fd5b813567ffffffffffffffff81111561208257600080fd5b8201601f8101841361209357600080fd5b61153a84823560208401611e08565b6000602082840312156120b457600080fd5b5035919050565b600081518084526120d381602086016020860161232b565b601f01601f19169290920160200192915050565b600083516120f981846020880161232b565b83519083019061210d81836020880161232b565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612149908301846120bb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561218b5783518352928401929184019160010161216f565b50909695505050505050565b602081526000610fe660208301846120bb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f526571756573746564206d696e7473206578636565642072656d61696e696e6760408201526620737570706c7960c81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122dc576122dc6123c1565b500190565b6000826122f0576122f06123d7565b500490565b600081600019048311821515161561230f5761230f6123c1565b500290565b600082821015612326576123266123c1565b500390565b60005b8381101561234657818101518382015260200161232e565b83811115610f0c5750506000910152565b600181811c9082168061236b57607f821691505b6020821081141561238c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123a6576123a66123c1565b5060010190565b6000826123bc576123bc6123d7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461134257600080fdfea26469706673582212207d8f0a6e6e3e90b76a3012f26ac202048f77f980f144eae6e7ca59dbc8c081d064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000daf291532680bf4d79589226652e2541109172ad0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55787575346a517a704d7848764c625844357a6f446e6e7a686b6132555162707974514d653459795551354a2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmUxuu4jQzpMxHvLbXD5zoDnnzhka2UQbpytQMe4YyUQ5J/
Arg [1] : _withdrawAddress (address): 0xDaF291532680bF4d79589226652e2541109172Ad

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000daf291532680bf4d79589226652e2541109172ad
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d55787575346a517a704d7848764c625844357a6f446e6e
Arg [4] : 7a686b6132555162707974514d653459795551354a2f00000000000000000000


Deployed Bytecode Sourcemap

50145:3105:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43924:224;;;;;;;;;;-1:-1:-1;43924:224:0;;;;;:::i;:::-;;:::i;:::-;;;6750:14:1;;6743:22;6725:41;;6713:2;6698:18;43924:224:0;;;;;;;;31816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33375:221::-;;;;;;;;;;-1:-1:-1;33375:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;33375:221:0;5247:203:1;52125:100:0;;;;;;;;;;-1:-1:-1;52125:100:0;;;;;:::i;:::-;;:::i;:::-;;32898:411;;;;;;;;;;-1:-1:-1;32898:411:0;;;;;:::i;:::-;;:::i;50449:17::-;;;;;;;;;;-1:-1:-1;50449:17:0;;;;-1:-1:-1;;;;;50449:17:0;;;44564:113;;;;;;;;;;-1:-1:-1;44652:10:0;:17;44564:113;;;15820:25:1;;;15808:2;15793:18;44564:113:0;15674:177:1;34265:339:0;;;;;;;;;;-1:-1:-1;34265:339:0;;;;;:::i;:::-;;:::i;44232:256::-;;;;;;;;;;-1:-1:-1;44232:256:0;;;;;:::i;:::-;;:::i;52450:85::-;;;;;;;;;;-1:-1:-1;52450:85:0;;;;;:::i;:::-;;:::i;50380:31::-;;;;;;;;;;;;;;;;34675:185;;;;;;;;;;-1:-1:-1;34675:185:0;;;;;:::i;:::-;;:::i;51590:342::-;;;;;;;;;;-1:-1:-1;51590:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44754:233::-;;;;;;;;;;-1:-1:-1;44754:233:0;;;;;:::i;:::-;;:::i;52337:101::-;;;;;;;;;;-1:-1:-1;52337:101:0;;;;;:::i;:::-;;:::i;52992:243::-;;;:::i;50320:28::-;;;;;;;;;;;;;;;;31510:239;;;;;;;;;;-1:-1:-1;31510:239:0;;;;;:::i;:::-;;:::i;31240:208::-;;;;;;;;;;-1:-1:-1;31240:208:0;;;;;:::i;:::-;;:::i;11515:94::-;;;;;;;;;;;;;:::i;52233:92::-;;;;;;;;;;-1:-1:-1;52233:92:0;;;;;:::i;:::-;;:::i;10864:87::-;;;;;;;;;;-1:-1:-1;10937:6:0;;-1:-1:-1;;;;;10937:6:0;10864:87;;51991:92;;;;;;;;;;-1:-1:-1;51991:92:0;;;;;:::i;:::-;;:::i;31985:104::-;;;;;;;;;;;;;:::i;50280:33::-;;;;;;;;;;;;;;;;33668:295;;;;;;;;;;-1:-1:-1;33668:295:0;;;;;:::i;:::-;;:::i;34931:328::-;;;;;;;;;;-1:-1:-1;34931:328:0;;;;;:::i;:::-;;:::i;50475:31::-;;;;;;;;;;-1:-1:-1;50475:31:0;;;;-1:-1:-1;;;50475:31:0;;;;;;32160:334;;;;;;;;;;-1:-1:-1;32160:334:0;;;;;:::i;:::-;;:::i;52673:307::-;;;;;;;;;;-1:-1:-1;52673:307:0;;;;;:::i;:::-;;:::i;50246:26::-;;;;;;;;;;;;;:::i;50795:599::-;;;;;;:::i;:::-;;:::i;34034:164::-;;;;;;;;;;-1:-1:-1;34034:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34155:25:0;;;34131:4;34155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34034:164;11764:192;;;;;;;;;;-1:-1:-1;11764:192:0;;;;;:::i;:::-;;:::i;52543:91::-;;;;;;;;;;-1:-1:-1;52543:91:0;;;;;:::i;:::-;;:::i;43924:224::-;44026:4;-1:-1:-1;;;;;;44050:50:0;;-1:-1:-1;;;44050:50:0;;:90;;;44104:36;44128:11;44104:23;:36::i;:::-;44043:97;43924:224;-1:-1:-1;;43924:224:0:o;31816:100::-;31870:13;31903:5;31896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31816:100;:::o;33375:221::-;33451:7;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;33471:73;;;;-1:-1:-1;;;33471:73:0;;13043:2:1;33471:73:0;;;13025:21:1;13082:2;13062:18;;;13055:30;13121:34;13101:18;;;13094:62;-1:-1:-1;;;13172:18:1;;;13165:42;13224:19;;33471:73:0;;;;;;;;;-1:-1:-1;33564:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33564:24:0;;33375:221::o;52125:100::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52195:9:::1;:22:::0;52125:100::o;32898:411::-;32979:13;32995:23;33010:7;32995:14;:23::i;:::-;32979:39;;33043:5;-1:-1:-1;;;;;33037:11:0;:2;-1:-1:-1;;;;;33037:11:0;;;33029:57;;;;-1:-1:-1;;;33029:57:0;;14643:2:1;33029:57:0;;;14625:21:1;14682:2;14662:18;;;14655:30;14721:34;14701:18;;;14694:62;-1:-1:-1;;;14772:18:1;;;14765:31;14813:19;;33029:57:0;14441:397:1;33029:57:0;9732:10;-1:-1:-1;;;;;33121:21:0;;;;:62;;-1:-1:-1;33146:37:0;33163:5;9732:10;34034:164;:::i;33146:37::-;33099:168;;;;-1:-1:-1;;;33099:168:0;;10676:2:1;33099:168:0;;;10658:21:1;10715:2;10695:18;;;10688:30;10754:34;10734:18;;;10727:62;10825:26;10805:18;;;10798:54;10869:19;;33099:168:0;10474:420:1;33099:168:0;33280:21;33289:2;33293:7;33280:8;:21::i;:::-;32968:341;32898:411;;:::o;34265:339::-;34460:41;9732:10;34493:7;34460:18;:41::i;:::-;34452:103;;;;-1:-1:-1;;;34452:103:0;;;;;;;:::i;:::-;34568:28;34578:4;34584:2;34588:7;34568:9;:28::i;44232:256::-;44329:7;44365:23;44382:5;44365:16;:23::i;:::-;44357:5;:31;44349:87;;;;-1:-1:-1;;;44349:87:0;;7203:2:1;44349:87:0;;;7185:21:1;7242:2;7222:18;;;7215:30;7281:34;7261:18;;;7254:62;-1:-1:-1;;;7332:18:1;;;7325:41;7383:19;;44349:87:0;7001:407:1;44349:87:0;-1:-1:-1;;;;;;44454:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44232:256::o;52450:85::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52518:2:::1;:7:::0;;-1:-1:-1;;;;;;52518:7:0::1;-1:-1:-1::0;;;;;52518:7:0;;;::::1;::::0;;;::::1;::::0;;52450:85::o;34675:185::-;34813:39;34830:4;34836:2;34840:7;34813:39;;;;;;;;;;;;:16;:39::i;51590:342::-;51649:16;51678:18;51699:17;51709:6;51699:9;:17::i;:::-;51678:38;;51729:25;51771:10;51757:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51757:25:0;;51729:53;;51797:9;51793:106;51812:10;51808:1;:14;51793:106;;;51857:30;51877:6;51885:1;51857:19;:30::i;:::-;51843:8;51852:1;51843:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51824:3;;;;:::i;:::-;;;;51793:106;;;-1:-1:-1;51916:8:0;51590:342;-1:-1:-1;;;51590:342:0:o;44754:233::-;44829:7;44865:30;44652:10;:17;;44564:113;44865:30;44857:5;:38;44849:95;;;;-1:-1:-1;;;44849:95:0;;15463:2:1;44849:95:0;;;15445:21:1;15502:2;15482:18;;;15475:30;15541:34;15521:18;;;15514:62;-1:-1:-1;;;15592:18:1;;;15585:42;15644:19;;44849:95:0;15261:408:1;44849:95:0;44962:10;44973:5;44962:17;;;;;;;;:::i;:::-;;;;;;;;;44955:24;;44754:233;;;:::o;52337:101::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52408:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52337:101:::0;:::o;52992:243::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;53143:2:::1;::::0;53135:37:::1;::::0;53074:21:::1;::::0;53055:16:::1;::::0;-1:-1:-1;;;;;53143:2:0;;::::1;::::0;53074:21;;53055:16;53135:37;53055:16;53135:37;53074:21;53143:2;53135:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53116:56;;;53191:7;53183:42;;;::::0;-1:-1:-1;;;53183:42:0;;8798:2:1;53183:42:0::1;::::0;::::1;8780:21:1::0;8837:2;8817:18;;;8810:30;-1:-1:-1;;;8856:18:1;;;8849:52;8918:18;;53183:42:0::1;8596:346:1::0;31510:239:0;31582:7;31618:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31618:16:0;31653:19;31645:73;;;;-1:-1:-1;;;31645:73:0;;11864:2:1;31645:73:0;;;11846:21:1;11903:2;11883:18;;;11876:30;11942:34;11922:18;;;11915:62;-1:-1:-1;;;11993:18:1;;;11986:39;12042:19;;31645:73:0;11662:405:1;31240:208:0;31312:7;-1:-1:-1;;;;;31340:19:0;;31332:74;;;;-1:-1:-1;;;31332:74:0;;11453:2:1;31332:74:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:40;11632:19;;31332:74:0;11251:406:1;31332:74:0;-1:-1:-1;;;;;;31424:16:0;;;;;:9;:16;;;;;;;31240:208::o;11515:94::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;11580:21:::1;11598:1;11580:9;:21::i;:::-;11515:94::o:0;52233:92::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52298:9:::1;:19:::0;52233:92::o;51991:::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52058:5:::1;:17:::0;51991:92::o;31985:104::-;32041:13;32074:7;32067:14;;;;;:::i;33668:295::-;-1:-1:-1;;;;;33771:24:0;;9732:10;33771:24;;33763:62;;;;-1:-1:-1;;;33763:62:0;;9554:2:1;33763:62:0;;;9536:21:1;9593:2;9573:18;;;9566:30;9632:27;9612:18;;;9605:55;9677:18;;33763:62:0;9352:349:1;33763:62:0;9732:10;33838:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33838:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33838:53:0;;;;;;;;;;33907:48;;6725:41:1;;;33838:42:0;;9732:10;33907:48;;6698:18:1;33907:48:0;;;;;;;33668:295;;:::o;34931:328::-;35106:41;9732:10;35139:7;35106:18;:41::i;:::-;35098:103;;;;-1:-1:-1;;;35098:103:0;;;;;;;:::i;:::-;35212:39;35226:4;35232:2;35236:7;35245:5;35212:13;:39::i;:::-;34931:328;;;;:::o;32160:334::-;36834:4;36858:16;;;:7;:16;;;;;;32233:13;;-1:-1:-1;;;;;36858:16:0;32259:76;;;;-1:-1:-1;;;32259:76:0;;14227:2:1;32259:76:0;;;14209:21:1;14266:2;14246:18;;;14239:30;14305:34;14285:18;;;14278:62;-1:-1:-1;;;14356:18:1;;;14349:45;14411:19;;32259:76:0;14025:411:1;32259:76:0;32348:21;32372:10;:8;:10::i;:::-;32348:34;;32424:1;32406:7;32400:21;:25;:86;;;;;;;;;;;;;;;;;32452:7;32461:18;:7;:16;:18::i;:::-;32435:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32400:86;32393:93;32160:334;-1:-1:-1;;;32160:334:0:o;52673:307::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52752:14:::1;52769:13;44652:10:::0;:17;;44564:113;52769:13:::1;52821:9;::::0;52752:30;;-1:-1:-1;52802:15:0::1;52811:6:::0;52752:30;52802:15:::1;:::i;:::-;:28;;52793:83;;;;-1:-1:-1::0;;;52793:83:0::1;;;;;;;:::i;:::-;52891:9;52887:86;52906:6;52902:1;:10;52887:86;;;52933:28;52944:3:::0;52949:10:::1;52958:1:::0;52949:6;:10:::1;:::i;:::-;52933:9;:28::i;:::-;52914:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52887:86;;50246:26:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50795:599::-;50852:14;50869:13;44652:10;:17;;44564:113;50869:13;50852:30;;50914:1;50902:9;;:13;50893:63;;;;-1:-1:-1;;;50893:63:0;;11101:2:1;50893:63:0;;;11083:21:1;11140:2;11120:18;;;11113:30;11179:25;11159:18;;;11152:53;11222:18;;50893:63:0;10899:347:1;50893:63:0;50992:9;;50976:12;50985:3;50976:6;:12;:::i;:::-;:25;;50967:79;;;;-1:-1:-1;;;50967:79:0;;;;;;;:::i;:::-;51060:11;;-1:-1:-1;;;51060:11:0;;;;:22;;;;;51081:1;51075:3;:7;51060:22;51057:230;;;51129:5;51133:1;51129:3;:5;:::i;:::-;51120;;:15;;;;:::i;:::-;51107:9;:28;;51098:70;;;;-1:-1:-1;;;51098:70:0;;10321:2:1;51098:70:0;;;10303:21:1;10360:2;10340:18;;;10333:30;10399:28;10379:18;;;10372:56;10445:18;;51098:70:0;10119:350:1;51098:70:0;51057:230;;;51239:3;51231:5;;:11;;;;:::i;:::-;51218:9;:24;;51209:66;;;;-1:-1:-1;;;51209:66:0;;10321:2:1;51209:66:0;;;10303:21:1;10360:2;10340:18;;;10333:30;10399:28;10379:18;;;10372:56;10445:18;;51209:66:0;10119:350:1;51209:66:0;51301:9;51297:90;51316:3;51312:1;:7;51297:90;;;51340:35;51351:10;51363;51372:1;51363:6;:10;:::i;51340:35::-;51321:3;;;;:::i;:::-;;;;51297:90;;11764:192;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11853:22:0;::::1;11845:73;;;::::0;-1:-1:-1;;;11845:73:0;;8034:2:1;11845:73:0::1;::::0;::::1;8016:21:1::0;8073:2;8053:18;;;8046:30;8112:34;8092:18;;;8085:62;-1:-1:-1;;;8163:18:1;;;8156:36;8209:19;;11845:73:0::1;7832:402:1::0;11845:73:0::1;11929:19;11939:8;11929:9;:19::i;:::-;11764:192:::0;:::o;52543:91::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;52607:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;52607:19:0::1;-1:-1:-1::0;;;;52607:19:0;;::::1;::::0;;;::::1;::::0;;52543:91::o;30871:305::-;30973:4;-1:-1:-1;;;;;;31010:40:0;;-1:-1:-1;;;31010:40:0;;:105;;-1:-1:-1;;;;;;;31067:48:0;;-1:-1:-1;;;31067:48:0;31010:105;:158;;;-1:-1:-1;;;;;;;;;;22959:40:0;;;31132:36;22850:157;40751:174;40826:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40826:29:0;-1:-1:-1;;;;;40826:29:0;;;;;;;;:24;;40880:23;40826:24;40880:14;:23::i;:::-;-1:-1:-1;;;;;40871:46:0;;;;;;;;;;;40751:174;;:::o;37063:348::-;37156:4;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;37173:73;;;;-1:-1:-1;;;37173:73:0;;9908:2:1;37173:73:0;;;9890:21:1;9947:2;9927:18;;;9920:30;9986:34;9966:18;;;9959:62;-1:-1:-1;;;10037:18:1;;;10030:42;10089:19;;37173:73:0;9706:408:1;37173:73:0;37257:13;37273:23;37288:7;37273:14;:23::i;:::-;37257:39;;37326:5;-1:-1:-1;;;;;37315:16:0;:7;-1:-1:-1;;;;;37315:16:0;;:51;;;;37359:7;-1:-1:-1;;;;;37335:31:0;:20;37347:7;37335:11;:20::i;:::-;-1:-1:-1;;;;;37335:31:0;;37315:51;:87;;;-1:-1:-1;;;;;;34155:25:0;;;34131:4;34155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37370:32;37307:96;37063:348;-1:-1:-1;;;;37063:348:0:o;40055:578::-;40214:4;-1:-1:-1;;;;;40187:31:0;:23;40202:7;40187:14;:23::i;:::-;-1:-1:-1;;;;;40187:31:0;;40179:85;;;;-1:-1:-1;;;40179:85:0;;13817:2:1;40179:85:0;;;13799:21:1;13856:2;13836:18;;;13829:30;13895:34;13875:18;;;13868:62;-1:-1:-1;;;13946:18:1;;;13939:39;13995:19;;40179:85:0;13615:405:1;40179:85:0;-1:-1:-1;;;;;40283:16:0;;40275:65;;;;-1:-1:-1;;;40275:65:0;;9149:2:1;40275:65:0;;;9131:21:1;9188:2;9168:18;;;9161:30;9227:34;9207:18;;;9200:62;-1:-1:-1;;;9278:18:1;;;9271:34;9322:19;;40275:65:0;8947:400:1;40275:65:0;40353:39;40374:4;40380:2;40384:7;40353:20;:39::i;:::-;40457:29;40474:1;40478:7;40457:8;:29::i;:::-;-1:-1:-1;;;;;40499:15:0;;;;;;:9;:15;;;;;:20;;40518:1;;40499:15;:20;;40518:1;;40499:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40530:13:0;;;;;;:9;:13;;;;;:18;;40547:1;;40530:13;:18;;40547:1;;40530:18;:::i;:::-;;;;-1:-1:-1;;40559:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40559:21:0;-1:-1:-1;;;;;40559:21:0;;;;;;;;;40598:27;;40559:16;;40598:27;;;;;;;40055:578;;;:::o;11964:173::-;12039:6;;;-1:-1:-1;;;;;12056:17:0;;;-1:-1:-1;;;;;;12056:17:0;;;;;;;12089:40;;12039:6;;;12056:17;12039:6;;12089:40;;12020:16;;12089:40;12009:128;11964:173;:::o;36141:315::-;36298:28;36308:4;36314:2;36318:7;36298:9;:28::i;:::-;36345:48;36368:4;36374:2;36378:7;36387:5;36345:22;:48::i;:::-;36337:111;;;;-1:-1:-1;;;36337:111:0;;;;;;;:::i;51465:113::-;51525:13;51558:12;51551:19;;;;;:::i;7268:723::-;7324:13;7545:10;7541:53;;-1:-1:-1;;7572:10:0;;;;;;;;;;;;-1:-1:-1;;;7572:10:0;;;;;7268:723::o;7541:53::-;7619:5;7604:12;7660:78;7667:9;;7660:78;;7693:8;;;;:::i;:::-;;-1:-1:-1;7716:10:0;;-1:-1:-1;7724:2:0;7716:10;;:::i;:::-;;;7660:78;;;7748:19;7780:6;7770:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7770:17:0;;7748:39;;7798:154;7805:10;;7798:154;;7832:11;7842:1;7832:11;;:::i;:::-;;-1:-1:-1;7901:10:0;7909:2;7901:5;:10;:::i;:::-;7888:24;;:2;:24;:::i;:::-;7875:39;;7858:6;7865;7858:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7858:56:0;;;;;;;;-1:-1:-1;7929:11:0;7938:2;7929:11;;:::i;:::-;;;7798:154;;37753:110;37829:26;37839:2;37843:7;37829:26;;;;;;;;;;;;:9;:26::i;45600:589::-;-1:-1:-1;;;;;45806:18:0;;45802:187;;45841:40;45873:7;47016:10;:17;;46989:24;;;;:15;:24;;;;;:44;;;47044:24;;;;;;;;;;;;46912:164;45841:40;45802:187;;;45911:2;-1:-1:-1;;;;;45903:10:0;:4;-1:-1:-1;;;;;45903:10:0;;45899:90;;45930:47;45963:4;45969:7;45930:32;:47::i;:::-;-1:-1:-1;;;;;46003:16:0;;45999:183;;46036:45;46073:7;46036:36;:45::i;45999:183::-;46109:4;-1:-1:-1;;;;;46103:10:0;:2;-1:-1:-1;;;;;46103:10:0;;46099:83;;46130:40;46158:2;46162:7;46130:27;:40::i;41490:799::-;41645:4;-1:-1:-1;;;;;41666:13:0;;13233:20;13281:8;41662:620;;41702:72;;-1:-1:-1;;;41702:72:0;;-1:-1:-1;;;;;41702:36:0;;;;;:72;;9732:10;;41753:4;;41759:7;;41768:5;;41702:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41702:72:0;;;;;;;;-1:-1:-1;;41702:72:0;;;;;;;;;;;;:::i;:::-;;;41698:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41944:13:0;;41940:272;;41987:60;;-1:-1:-1;;;41987:60:0;;;;;;;:::i;41940:272::-;42162:6;42156:13;42147:6;42143:2;42139:15;42132:38;41698:529;-1:-1:-1;;;;;;41825:51:0;-1:-1:-1;;;41825:51:0;;-1:-1:-1;41818:58:0;;41662:620;-1:-1:-1;42266:4:0;41490:799;;;;;;:::o;38090:321::-;38220:18;38226:2;38230:7;38220:5;:18::i;:::-;38271:54;38302:1;38306:2;38310:7;38319:5;38271:22;:54::i;:::-;38249:154;;;;-1:-1:-1;;;38249:154:0;;;;;;;:::i;47703:988::-;47969:22;48019:1;47994:22;48011:4;47994:16;:22::i;:::-;:26;;;;:::i;:::-;48031:18;48052:26;;;:17;:26;;;;;;47969:51;;-1:-1:-1;48185:28:0;;;48181:328;;-1:-1:-1;;;;;48252:18:0;;48230:19;48252:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48303:30;;;;;;:44;;;48420:30;;:17;:30;;;;;:43;;;48181:328;-1:-1:-1;48605:26:0;;;;:17;:26;;;;;;;;48598:33;;;-1:-1:-1;;;;;48649:18:0;;;;;:12;:18;;;;;:34;;;;;;;48642:41;47703:988::o;48986:1079::-;49264:10;:17;49239:22;;49264:21;;49284:1;;49264:21;:::i;:::-;49296:18;49317:24;;;:15;:24;;;;;;49690:10;:26;;49239:46;;-1:-1:-1;49317:24:0;;49239:46;;49690:26;;;;;;:::i;:::-;;;;;;;;;49668:48;;49754:11;49729:10;49740;49729:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49834:28;;;:15;:28;;;;;;;:41;;;50006:24;;;;;49999:31;50041:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49057:1008;;;48986:1079;:::o;46490:221::-;46575:14;46592:20;46609:2;46592:16;:20::i;:::-;-1:-1:-1;;;;;46623:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46668:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46490:221:0:o;38747:382::-;-1:-1:-1;;;;;38827:16:0;;38819:61;;;;-1:-1:-1;;;38819:61:0;;12274:2:1;38819:61:0;;;12256:21:1;;;12293:18;;;12286:30;12352:34;12332:18;;;12325:62;12404:18;;38819:61:0;12072:356:1;38819:61:0;36834:4;36858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36858:16:0;:30;38891:58;;;;-1:-1:-1;;;38891:58:0;;8441:2:1;38891:58:0;;;8423:21:1;8480:2;8460:18;;;8453:30;8519;8499:18;;;8492:58;8567:18;;38891:58:0;8239:352:1;38891:58:0;38962:45;38991:1;38995:2;38999:7;38962:20;:45::i;:::-;-1:-1:-1;;;;;39020:13:0;;;;;;:9;:13;;;;;:18;;39037:1;;39020:13;:18;;39037:1;;39020:18;:::i;:::-;;;;-1:-1:-1;;39049:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39049:21:0;-1:-1:-1;;;;;39049:21:0;;;;;;;;39088:33;;39049:16;;;39088:33;;39049:16;;39088:33;38747:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;5948:632::-;6119:2;6171:21;;;6241:13;;6144:18;;;6263:22;;;6090:4;;6119:2;6342:15;;;;6316:2;6301:18;;;6090:4;6385:169;6399:6;6396:1;6393:13;6385:169;;;6460:13;;6448:26;;6529:15;;;;6494:12;;;;6421:1;6414:9;6385:169;;;-1:-1:-1;6571:3:1;;5948:632;-1:-1:-1;;;;;;5948:632:1:o;6777:219::-;6926:2;6915:9;6908:21;6889:4;6946:44;6986:2;6975:9;6971:18;6963:6;6946:44;:::i;7413:414::-;7615:2;7597:21;;;7654:2;7634:18;;;7627:30;7693:34;7688:2;7673:18;;7666:62;-1:-1:-1;;;7759:2:1;7744:18;;7737:48;7817:3;7802:19;;7413:414::o;12433:403::-;12635:2;12617:21;;;12674:2;12654:18;;;12647:30;12713:34;12708:2;12693:18;;12686:62;-1:-1:-1;;;12779:2:1;12764:18;;12757:37;12826:3;12811:19;;12433:403::o;13254:356::-;13456:2;13438:21;;;13475:18;;;13468:30;13534:34;13529:2;13514:18;;13507:62;13601:2;13586:18;;13254:356::o;14843:413::-;15045:2;15027:21;;;15084:2;15064:18;;;15057:30;15123:34;15118:2;15103:18;;15096:62;-1:-1:-1;;;15189:2:1;15174:18;;15167:47;15246:3;15231:19;;14843:413::o;15856:128::-;15896:3;15927:1;15923:6;15920:1;15917:13;15914:39;;;15933:18;;:::i;:::-;-1:-1:-1;15969:9:1;;15856:128::o;15989:120::-;16029:1;16055;16045:35;;16060:18;;:::i;:::-;-1:-1:-1;16094:9:1;;15989:120::o;16114:168::-;16154:7;16220:1;16216;16212:6;16208:14;16205:1;16202:21;16197:1;16190:9;16183:17;16179:45;16176:71;;;16227:18;;:::i;:::-;-1:-1:-1;16267:9:1;;16114:168::o;16287:125::-;16327:4;16355:1;16352;16349:8;16346:34;;;16360:18;;:::i;:::-;-1:-1:-1;16397:9:1;;16287:125::o;16417:258::-;16489:1;16499:113;16513:6;16510:1;16507:13;16499:113;;;16589:11;;;16583:18;16570:11;;;16563:39;16535:2;16528:10;16499:113;;;16630:6;16627:1;16624:13;16621:48;;;-1:-1:-1;;16665:1:1;16647:16;;16640:27;16417:258::o;16680:380::-;16759:1;16755:12;;;;16802;;;16823:61;;16877:4;16869:6;16865:17;16855:27;;16823:61;16930:2;16922:6;16919:14;16899:18;16896:38;16893:161;;;16976:10;16971:3;16967:20;16964:1;16957:31;17011:4;17008:1;17001:15;17039:4;17036:1;17029:15;16893:161;;16680:380;;;:::o;17065:135::-;17104:3;-1:-1:-1;;17125:17:1;;17122:43;;;17145:18;;:::i;:::-;-1:-1:-1;17192:1:1;17181:13;;17065:135::o;17205:112::-;17237:1;17263;17253:35;;17268:18;;:::i;:::-;-1:-1:-1;17302:9:1;;17205:112::o;17322:127::-;17383:10;17378:3;17374:20;17371:1;17364:31;17414:4;17411:1;17404:15;17438:4;17435:1;17428:15;17454:127;17515:10;17510:3;17506:20;17503:1;17496:31;17546:4;17543:1;17536:15;17570:4;17567:1;17560:15;17586:127;17647:10;17642:3;17638:20;17635:1;17628:31;17678:4;17675:1;17668:15;17702:4;17699:1;17692:15;17718:127;17779:10;17774:3;17770:20;17767:1;17760:31;17810:4;17807:1;17800:15;17834:4;17831:1;17824:15;17850:127;17911:10;17906:3;17902:20;17899:1;17892:31;17942:4;17939:1;17932:15;17966:4;17963:1;17956:15;17982:131;-1:-1:-1;;;;;;18056:32:1;;18046:43;;18036:71;;18103:1;18100;18093:12

Swarm Source

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