ETH Price: $3,244.64 (-0.43%)
Gas: 1 Gwei

Token

Okay Doodle Degens (ODD)
 

Overview

Max Total Supply

3,333 ODD

Holders

539

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ODD
0x7aa05AE38691FA2a14b61E5B4Fcb92b5b5390c6e
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:
OkayDoodleDegens

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-23
*/

//SPDX-License-Identifier: MIT

// Okay Doodle Degens contract:

/* 
    uint256 public price = 0 ether;
    uint256 public priceAfterFreeMint = 0.002 ether;
    uint256 public maxPerTx = 5;
    uint256 public totalFree = 1000; //first 1000 free
    uint256 public maxSupply = 3333;
    uint256 public maxPerWallet = 5; //will be changed to 100 after first 1000 minted 
*/
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;


abstract contract ReentrancyGuard {
  
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/OkayDoodleDegens.sol

pragma solidity >=0.8.9 <0.9.0;




contract OkayDoodleDegens is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public uriPrefix = 'ipfs://QmfWUPgFGsDEtTEFnSxsEFvpQNWrwyoHxdK8ZqxyeBSg2G/';
    uint256 public price = 0.002 ether;
    uint256 public maxPerTx = 5;
    uint256 public totalFree = 1000; //first 1000 free
    uint256 public maxSupply = 3333;
    uint256 public maxPerWallet = 5; //will be changed to 100 after first 1000 minted
    bool public paused = true;

    constructor() ERC721A("Okay Doodle Degens", "ODD") {
    }

    function mint(uint256 _mintAmount) external payable {
        uint256 cost = price;
        if (totalSupply() + _mintAmount < totalFree + 1) {
            cost = 0;
        }

        require(msg.value >= _mintAmount * cost, "Not enough ETH.");
        require(totalSupply() + _mintAmount < maxSupply + 1, "No more Okay Doodle Degens");
        require(!paused, "Minting is not live yet, hold on Okay Doodle Degens.");
        require(_mintAmount < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + _mintAmount <= maxPerWallet,
            "Too many per wallet!"
        );

        _safeMint(msg.sender, _mintAmount);
    }

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }
    
    function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function ownerAirdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }


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

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function withdraw() public onlyOwner nonReentrant {

      (bool hs, ) = payable(0x49Ba7bdDb1d1037532c5f9499c687DacD45f1Fe5).call{value: address(this).balance * 20 / 100}('');
      require(hs);
      (bool ts, ) = payable(0xa95995c4F283028231B573844035e7D7e014d1eF).call{value: address(this).balance * 25 / 100}('');
      require(ts);
      (bool rs, ) = payable(0x42b97924aAFFc0dB1EBE612bEfc3E81247991cB4).call{value: address(this).balance * 33 / 100}('');
      require(rs);
      (bool os, ) = payable(owner()).call{value: address(this).balance}('');
      require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620021c360a03980516200002991600a9160209091019062000141565b5066071afd498d0000600b556005600c8190556103e8600d55610d05600e55600f556010805460ff191660011790553480156200006557600080fd5b5060408051808201825260128152714f6b617920446f6f646c6520446567656e7360701b60208083019182528351808501909452600384526213d11160ea1b908401528151919291620000bb9160029162000141565b508051620000d190600390602084019062000141565b5050600160005550620000e433620000ef565b600160095562000223565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b6020821081036200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b611f9080620002336000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610577578063e268e4d31461058d578063e985e9c5146105ad578063f2fde38b146105f6578063f968adbe1461061657600080fd5b8063a22cb465146104f7578063b88d4fde14610517578063c6f6f21614610537578063c87b56dd1461055757600080fd5b806392910eec116100dc57806392910eec1461049957806395d89b41146104b9578063a035b1fe146104ce578063a0712d68146104e457600080fd5b8063715018a6146104265780637ec4a6591461043b5780638da5cb5b1461045b57806391b7f5ed1461047957600080fd5b8063333e44e6116101905780635c975abb1161015f5780635c975abb1461039757806362b99ad4146103b15780636352211e146103c65780636f8b44b0146103e657806370a082311461040657600080fd5b8063333e44e6146103365780633ccfd60b1461034c57806342842e0e14610361578063453c23101461038157600080fd5b806316c38b3c116101cc57806316c38b3c146102af57806318160ddd146102cf57806323b872dd146102f65780632cfee9901461031657600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a47565b61062c565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067e565b60405161022a9190611abc565b34801561026157600080fd5b50610275610270366004611acf565b610710565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611b04565b610754565b005b3480156102bb57600080fd5b506102ad6102ca366004611b3e565b6107da565b3480156102db57600080fd5b5060015460005403600019015b60405190815260200161022a565b34801561030257600080fd5b506102ad610311366004611b59565b610820565b34801561032257600080fd5b506102ad610331366004611b95565b61082b565b34801561034257600080fd5b506102e8600d5481565b34801561035857600080fd5b506102ad610863565b34801561036d57600080fd5b506102ad61037c366004611b59565b610ad7565b34801561038d57600080fd5b506102e8600f5481565b3480156103a357600080fd5b5060105461021e9060ff1681565b3480156103bd57600080fd5b50610248610af2565b3480156103d257600080fd5b506102756103e1366004611acf565b610b80565b3480156103f257600080fd5b506102ad610401366004611acf565b610b92565b34801561041257600080fd5b506102e8610421366004611bc1565b610bc1565b34801561043257600080fd5b506102ad610c10565b34801561044757600080fd5b506102ad610456366004611c68565b610c46565b34801561046757600080fd5b506008546001600160a01b0316610275565b34801561048557600080fd5b506102ad610494366004611acf565b610c83565b3480156104a557600080fd5b506102ad6104b4366004611acf565b610cb2565b3480156104c557600080fd5b50610248610ce1565b3480156104da57600080fd5b506102e8600b5481565b6102ad6104f2366004611acf565b610cf0565b34801561050357600080fd5b506102ad610512366004611cb1565b610f22565b34801561052357600080fd5b506102ad610532366004611cdb565b610fb7565b34801561054357600080fd5b506102ad610552366004611acf565b611001565b34801561056357600080fd5b50610248610572366004611acf565b611030565b34801561058357600080fd5b506102e8600e5481565b34801561059957600080fd5b506102ad6105a8366004611acf565b6110fb565b3480156105b957600080fd5b5061021e6105c8366004611d57565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060257600080fd5b506102ad610611366004611bc1565b61112a565b34801561062257600080fd5b506102e8600c5481565b60006001600160e01b031982166380ac58cd60e01b148061065d57506001600160e01b03198216635b5e139f60e01b145b8061067857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461068d90611d81565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990611d81565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826111c5565b610738576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075f82610b80565b9050806001600160a01b0316836001600160a01b0316036107935760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107ca576107ad81336105c8565b6107ca576040516367d9dca160e11b815260040160405180910390fd5b6107d58383836111fe565b505050565b6008546001600160a01b0316331461080d5760405162461bcd60e51b815260040161080490611dbb565b60405180910390fd5b6010805460ff1916911515919091179055565b6107d583838361125a565b6008546001600160a01b031633146108555760405162461bcd60e51b815260040161080490611dbb565b61085f8183611449565b5050565b6008546001600160a01b0316331461088d5760405162461bcd60e51b815260040161080490611dbb565b6002600954036108df5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610804565b600260095560007349ba7bddb1d1037532c5f9499c687dacd45f1fe56064610908476014611e06565b6109129190611e3b565b604051600081818185875af1925050503d806000811461094e576040519150601f19603f3d011682016040523d82523d6000602084013e610953565b606091505b505090508061096157600080fd5b600073a95995c4f283028231b573844035e7d7e014d1ef6064610985476019611e06565b61098f9190611e3b565b604051600081818185875af1925050503d80600081146109cb576040519150601f19603f3d011682016040523d82523d6000602084013e6109d0565b606091505b50509050806109de57600080fd5b60007342b97924aaffc0db1ebe612befc3e81247991cb46064610a02476021611e06565b610a0c9190611e3b565b604051600081818185875af1925050503d8060008114610a48576040519150601f19603f3d011682016040523d82523d6000602084013e610a4d565b606091505b5050905080610a5b57600080fd5b6000610a6f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ab9576040519150601f19603f3d011682016040523d82523d6000602084013e610abe565b606091505b5050905080610acc57600080fd5b505060016009555050565b6107d583838360405180602001604052806000815250610fb7565b600a8054610aff90611d81565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2b90611d81565b8015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b505050505081565b6000610b8b82611463565b5192915050565b6008546001600160a01b03163314610bbc5760405162461bcd60e51b815260040161080490611dbb565b600e55565b60006001600160a01b038216610bea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161080490611dbb565b610c446000611587565b565b6008546001600160a01b03163314610c705760405162461bcd60e51b815260040161080490611dbb565b805161085f90600a906020840190611998565b6008546001600160a01b03163314610cad5760405162461bcd60e51b815260040161080490611dbb565b600b55565b6008546001600160a01b03163314610cdc5760405162461bcd60e51b815260040161080490611dbb565b600d55565b60606003805461068d90611d81565b600b54600d54610d01906001611e4f565b6001546000548491900360001901610d199190611e4f565b1015610d23575060005b610d2d8183611e06565b341015610d6e5760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b6044820152606401610804565b600e54610d7c906001611e4f565b6001546000548491900360001901610d949190611e4f565b10610de15760405162461bcd60e51b815260206004820152601a60248201527f4e6f206d6f7265204f6b617920446f6f646c6520446567656e730000000000006044820152606401610804565b60105460ff1615610e515760405162461bcd60e51b815260206004820152603460248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152731027b5b0bc902237b7b23632902232b3b2b7399760611b6064820152608401610804565b600c54610e5f906001611e4f565b8210610ea35760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610804565b600f54336000908152600560205260409020548390600160401b900467ffffffffffffffff16610ed39190611e4f565b1115610f185760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b6044820152606401610804565b61085f3383611449565b336001600160a01b03831603610f4b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fc284848461125a565b6001600160a01b0383163b15610ffb57610fde848484846115d9565b610ffb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461102b5760405162461bcd60e51b815260040161080490611dbb565b600c55565b606061103b826111c5565b61109f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610804565b60006110a96116c5565b905060008151116110c957604051806020016040528060008152506110f4565b806110d3846116d4565b6040516020016110e4929190611e67565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111255760405162461bcd60e51b815260040161080490611dbb565b600f55565b6008546001600160a01b031633146111545760405162461bcd60e51b815260040161080490611dbb565b6001600160a01b0381166111b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610804565b6111c281611587565b50565b6000816001111580156111d9575060005482105b8015610678575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061126582611463565b9050836001600160a01b031681600001516001600160a01b03161461129c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112ba57506112ba85336105c8565b806112d55750336112ca84610710565b6001600160a01b0316145b9050806112f557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661131c57604051633a954ecd60e21b815260040160405180910390fd5b611328600084876111fe565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113fe5760005482146113fe578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61085f8282604051806020016040528060008152506117d5565b6040805160608101825260008082526020820181905291810191909152818060011161156e5760005481101561156e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061156c5780516001600160a01b031615611502579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611567579392505050565b611502565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061160e903390899088908890600401611ea6565b6020604051808303816000875af1925050508015611649575060408051601f3d908101601f1916820190925261164691810190611ee3565b60015b6116a7573d808015611677576040519150601f19603f3d011682016040523d82523d6000602084013e61167c565b606091505b50805160000361169f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461068d90611d81565b6060816000036116fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611725578061170f81611f00565b915061171e9050600a83611e3b565b91506116ff565b60008167ffffffffffffffff81111561174057611740611bdc565b6040519080825280601f01601f19166020018201604052801561176a576020820181803683370190505b5090505b84156116bd5761177f600183611f19565b915061178c600a86611f30565b611797906030611e4f565b60f81b8183815181106117ac576117ac611f44565b60200101906001600160f81b031916908160001a9053506117ce600a86611e3b565b945061176e565b6000546001600160a01b0384166117fe57604051622e076360e81b815260040160405180910390fd5b8260000361181f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611943575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461190c60008784806001019550876115d9565b611929576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118c157826000541461193e57600080fd5b611988565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611944575b506000908155610ffb9085838684565b8280546119a490611d81565b90600052602060002090601f0160209004810192826119c65760008555611a0c565b82601f106119df57805160ff1916838001178555611a0c565b82800160010185558215611a0c579182015b82811115611a0c5782518255916020019190600101906119f1565b50611a18929150611a1c565b5090565b5b80821115611a185760008155600101611a1d565b6001600160e01b0319811681146111c257600080fd5b600060208284031215611a5957600080fd5b81356110f481611a31565b60005b83811015611a7f578181015183820152602001611a67565b83811115610ffb5750506000910152565b60008151808452611aa8816020860160208601611a64565b601f01601f19169290920160200192915050565b6020815260006110f46020830184611a90565b600060208284031215611ae157600080fd5b5035919050565b80356001600160a01b0381168114611aff57600080fd5b919050565b60008060408385031215611b1757600080fd5b611b2083611ae8565b946020939093013593505050565b80358015158114611aff57600080fd5b600060208284031215611b5057600080fd5b6110f482611b2e565b600080600060608486031215611b6e57600080fd5b611b7784611ae8565b9250611b8560208501611ae8565b9150604084013590509250925092565b60008060408385031215611ba857600080fd5b82359150611bb860208401611ae8565b90509250929050565b600060208284031215611bd357600080fd5b6110f482611ae8565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c0d57611c0d611bdc565b604051601f8501601f19908116603f01168101908282118183101715611c3557611c35611bdc565b81604052809350858152868686011115611c4e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c7a57600080fd5b813567ffffffffffffffff811115611c9157600080fd5b8201601f81018413611ca257600080fd5b6116bd84823560208401611bf2565b60008060408385031215611cc457600080fd5b611ccd83611ae8565b9150611bb860208401611b2e565b60008060008060808587031215611cf157600080fd5b611cfa85611ae8565b9350611d0860208601611ae8565b925060408501359150606085013567ffffffffffffffff811115611d2b57600080fd5b8501601f81018713611d3c57600080fd5b611d4b87823560208401611bf2565b91505092959194509250565b60008060408385031215611d6a57600080fd5b611d7383611ae8565b9150611bb860208401611ae8565b600181811c90821680611d9557607f821691505b602082108103611db557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e2057611e20611df0565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e4a57611e4a611e25565b500490565b60008219821115611e6257611e62611df0565b500190565b60008351611e79818460208801611a64565b835190830190611e8d818360208801611a64565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ed990830184611a90565b9695505050505050565b600060208284031215611ef557600080fd5b81516110f481611a31565b600060018201611f1257611f12611df0565b5060010190565b600082821015611f2b57611f2b611df0565b500390565b600082611f3f57611f3f611e25565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b38ec230b0d300254498577fc75ef9479d2959177306394c97bd8297e77a2be264736f6c634300080e0033697066733a2f2f516d66575550674647734445745445466e53787345467670514e577277796f4878644b385a7178796542536732472f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610577578063e268e4d31461058d578063e985e9c5146105ad578063f2fde38b146105f6578063f968adbe1461061657600080fd5b8063a22cb465146104f7578063b88d4fde14610517578063c6f6f21614610537578063c87b56dd1461055757600080fd5b806392910eec116100dc57806392910eec1461049957806395d89b41146104b9578063a035b1fe146104ce578063a0712d68146104e457600080fd5b8063715018a6146104265780637ec4a6591461043b5780638da5cb5b1461045b57806391b7f5ed1461047957600080fd5b8063333e44e6116101905780635c975abb1161015f5780635c975abb1461039757806362b99ad4146103b15780636352211e146103c65780636f8b44b0146103e657806370a082311461040657600080fd5b8063333e44e6146103365780633ccfd60b1461034c57806342842e0e14610361578063453c23101461038157600080fd5b806316c38b3c116101cc57806316c38b3c146102af57806318160ddd146102cf57806323b872dd146102f65780632cfee9901461031657600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a47565b61062c565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067e565b60405161022a9190611abc565b34801561026157600080fd5b50610275610270366004611acf565b610710565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611b04565b610754565b005b3480156102bb57600080fd5b506102ad6102ca366004611b3e565b6107da565b3480156102db57600080fd5b5060015460005403600019015b60405190815260200161022a565b34801561030257600080fd5b506102ad610311366004611b59565b610820565b34801561032257600080fd5b506102ad610331366004611b95565b61082b565b34801561034257600080fd5b506102e8600d5481565b34801561035857600080fd5b506102ad610863565b34801561036d57600080fd5b506102ad61037c366004611b59565b610ad7565b34801561038d57600080fd5b506102e8600f5481565b3480156103a357600080fd5b5060105461021e9060ff1681565b3480156103bd57600080fd5b50610248610af2565b3480156103d257600080fd5b506102756103e1366004611acf565b610b80565b3480156103f257600080fd5b506102ad610401366004611acf565b610b92565b34801561041257600080fd5b506102e8610421366004611bc1565b610bc1565b34801561043257600080fd5b506102ad610c10565b34801561044757600080fd5b506102ad610456366004611c68565b610c46565b34801561046757600080fd5b506008546001600160a01b0316610275565b34801561048557600080fd5b506102ad610494366004611acf565b610c83565b3480156104a557600080fd5b506102ad6104b4366004611acf565b610cb2565b3480156104c557600080fd5b50610248610ce1565b3480156104da57600080fd5b506102e8600b5481565b6102ad6104f2366004611acf565b610cf0565b34801561050357600080fd5b506102ad610512366004611cb1565b610f22565b34801561052357600080fd5b506102ad610532366004611cdb565b610fb7565b34801561054357600080fd5b506102ad610552366004611acf565b611001565b34801561056357600080fd5b50610248610572366004611acf565b611030565b34801561058357600080fd5b506102e8600e5481565b34801561059957600080fd5b506102ad6105a8366004611acf565b6110fb565b3480156105b957600080fd5b5061021e6105c8366004611d57565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060257600080fd5b506102ad610611366004611bc1565b61112a565b34801561062257600080fd5b506102e8600c5481565b60006001600160e01b031982166380ac58cd60e01b148061065d57506001600160e01b03198216635b5e139f60e01b145b8061067857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461068d90611d81565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990611d81565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826111c5565b610738576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075f82610b80565b9050806001600160a01b0316836001600160a01b0316036107935760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107ca576107ad81336105c8565b6107ca576040516367d9dca160e11b815260040160405180910390fd5b6107d58383836111fe565b505050565b6008546001600160a01b0316331461080d5760405162461bcd60e51b815260040161080490611dbb565b60405180910390fd5b6010805460ff1916911515919091179055565b6107d583838361125a565b6008546001600160a01b031633146108555760405162461bcd60e51b815260040161080490611dbb565b61085f8183611449565b5050565b6008546001600160a01b0316331461088d5760405162461bcd60e51b815260040161080490611dbb565b6002600954036108df5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610804565b600260095560007349ba7bddb1d1037532c5f9499c687dacd45f1fe56064610908476014611e06565b6109129190611e3b565b604051600081818185875af1925050503d806000811461094e576040519150601f19603f3d011682016040523d82523d6000602084013e610953565b606091505b505090508061096157600080fd5b600073a95995c4f283028231b573844035e7d7e014d1ef6064610985476019611e06565b61098f9190611e3b565b604051600081818185875af1925050503d80600081146109cb576040519150601f19603f3d011682016040523d82523d6000602084013e6109d0565b606091505b50509050806109de57600080fd5b60007342b97924aaffc0db1ebe612befc3e81247991cb46064610a02476021611e06565b610a0c9190611e3b565b604051600081818185875af1925050503d8060008114610a48576040519150601f19603f3d011682016040523d82523d6000602084013e610a4d565b606091505b5050905080610a5b57600080fd5b6000610a6f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ab9576040519150601f19603f3d011682016040523d82523d6000602084013e610abe565b606091505b5050905080610acc57600080fd5b505060016009555050565b6107d583838360405180602001604052806000815250610fb7565b600a8054610aff90611d81565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2b90611d81565b8015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b505050505081565b6000610b8b82611463565b5192915050565b6008546001600160a01b03163314610bbc5760405162461bcd60e51b815260040161080490611dbb565b600e55565b60006001600160a01b038216610bea576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161080490611dbb565b610c446000611587565b565b6008546001600160a01b03163314610c705760405162461bcd60e51b815260040161080490611dbb565b805161085f90600a906020840190611998565b6008546001600160a01b03163314610cad5760405162461bcd60e51b815260040161080490611dbb565b600b55565b6008546001600160a01b03163314610cdc5760405162461bcd60e51b815260040161080490611dbb565b600d55565b60606003805461068d90611d81565b600b54600d54610d01906001611e4f565b6001546000548491900360001901610d199190611e4f565b1015610d23575060005b610d2d8183611e06565b341015610d6e5760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b6044820152606401610804565b600e54610d7c906001611e4f565b6001546000548491900360001901610d949190611e4f565b10610de15760405162461bcd60e51b815260206004820152601a60248201527f4e6f206d6f7265204f6b617920446f6f646c6520446567656e730000000000006044820152606401610804565b60105460ff1615610e515760405162461bcd60e51b815260206004820152603460248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152731027b5b0bc902237b7b23632902232b3b2b7399760611b6064820152608401610804565b600c54610e5f906001611e4f565b8210610ea35760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610804565b600f54336000908152600560205260409020548390600160401b900467ffffffffffffffff16610ed39190611e4f565b1115610f185760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b6044820152606401610804565b61085f3383611449565b336001600160a01b03831603610f4b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fc284848461125a565b6001600160a01b0383163b15610ffb57610fde848484846115d9565b610ffb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461102b5760405162461bcd60e51b815260040161080490611dbb565b600c55565b606061103b826111c5565b61109f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610804565b60006110a96116c5565b905060008151116110c957604051806020016040528060008152506110f4565b806110d3846116d4565b6040516020016110e4929190611e67565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111255760405162461bcd60e51b815260040161080490611dbb565b600f55565b6008546001600160a01b031633146111545760405162461bcd60e51b815260040161080490611dbb565b6001600160a01b0381166111b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610804565b6111c281611587565b50565b6000816001111580156111d9575060005482105b8015610678575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061126582611463565b9050836001600160a01b031681600001516001600160a01b03161461129c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112ba57506112ba85336105c8565b806112d55750336112ca84610710565b6001600160a01b0316145b9050806112f557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661131c57604051633a954ecd60e21b815260040160405180910390fd5b611328600084876111fe565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113fe5760005482146113fe578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61085f8282604051806020016040528060008152506117d5565b6040805160608101825260008082526020820181905291810191909152818060011161156e5760005481101561156e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061156c5780516001600160a01b031615611502579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611567579392505050565b611502565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061160e903390899088908890600401611ea6565b6020604051808303816000875af1925050508015611649575060408051601f3d908101601f1916820190925261164691810190611ee3565b60015b6116a7573d808015611677576040519150601f19603f3d011682016040523d82523d6000602084013e61167c565b606091505b50805160000361169f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461068d90611d81565b6060816000036116fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611725578061170f81611f00565b915061171e9050600a83611e3b565b91506116ff565b60008167ffffffffffffffff81111561174057611740611bdc565b6040519080825280601f01601f19166020018201604052801561176a576020820181803683370190505b5090505b84156116bd5761177f600183611f19565b915061178c600a86611f30565b611797906030611e4f565b60f81b8183815181106117ac576117ac611f44565b60200101906001600160f81b031916908160001a9053506117ce600a86611e3b565b945061176e565b6000546001600160a01b0384166117fe57604051622e076360e81b815260040160405180910390fd5b8260000361181f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611943575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461190c60008784806001019550876115d9565b611929576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118c157826000541461193e57600080fd5b611988565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611944575b506000908155610ffb9085838684565b8280546119a490611d81565b90600052602060002090601f0160209004810192826119c65760008555611a0c565b82601f106119df57805160ff1916838001178555611a0c565b82800160010185558215611a0c579182015b82811115611a0c5782518255916020019190600101906119f1565b50611a18929150611a1c565b5090565b5b80821115611a185760008155600101611a1d565b6001600160e01b0319811681146111c257600080fd5b600060208284031215611a5957600080fd5b81356110f481611a31565b60005b83811015611a7f578181015183820152602001611a67565b83811115610ffb5750506000910152565b60008151808452611aa8816020860160208601611a64565b601f01601f19169290920160200192915050565b6020815260006110f46020830184611a90565b600060208284031215611ae157600080fd5b5035919050565b80356001600160a01b0381168114611aff57600080fd5b919050565b60008060408385031215611b1757600080fd5b611b2083611ae8565b946020939093013593505050565b80358015158114611aff57600080fd5b600060208284031215611b5057600080fd5b6110f482611b2e565b600080600060608486031215611b6e57600080fd5b611b7784611ae8565b9250611b8560208501611ae8565b9150604084013590509250925092565b60008060408385031215611ba857600080fd5b82359150611bb860208401611ae8565b90509250929050565b600060208284031215611bd357600080fd5b6110f482611ae8565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c0d57611c0d611bdc565b604051601f8501601f19908116603f01168101908282118183101715611c3557611c35611bdc565b81604052809350858152868686011115611c4e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c7a57600080fd5b813567ffffffffffffffff811115611c9157600080fd5b8201601f81018413611ca257600080fd5b6116bd84823560208401611bf2565b60008060408385031215611cc457600080fd5b611ccd83611ae8565b9150611bb860208401611b2e565b60008060008060808587031215611cf157600080fd5b611cfa85611ae8565b9350611d0860208601611ae8565b925060408501359150606085013567ffffffffffffffff811115611d2b57600080fd5b8501601f81018713611d3c57600080fd5b611d4b87823560208401611bf2565b91505092959194509250565b60008060408385031215611d6a57600080fd5b611d7383611ae8565b9150611bb860208401611ae8565b600181811c90821680611d9557607f821691505b602082108103611db557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e2057611e20611df0565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e4a57611e4a611e25565b500490565b60008219821115611e6257611e62611df0565b500190565b60008351611e79818460208801611a64565b835190830190611e8d818360208801611a64565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ed990830184611a90565b9695505050505050565b600060208284031215611ef557600080fd5b81516110f481611a31565b600060018201611f1257611f12611df0565b5060010190565b600082821015611f2b57611f2b611df0565b500390565b600082611f3f57611f3f611e25565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b38ec230b0d300254498577fc75ef9479d2959177306394c97bd8297e77a2be264736f6c634300080e0033

Deployed Bytecode Sourcemap

49067:3329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30169:305;;;;;;;;;;-1:-1:-1;30169:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30169:305:0;;;;;;;;33284:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34788:204::-;;;;;;;;;;-1:-1:-1;34788:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34788:204:0;1528:203:1;34350:372:0;;;;;;;;;;-1:-1:-1;34350:372:0;;;;;:::i;:::-;;:::i;:::-;;51487:83;;;;;;;;;;-1:-1:-1;51487:83:0;;;;;:::i;:::-;;:::i;29409:312::-;;;;;;;;;;-1:-1:-1;51788:1:0;29672:12;29462:7;29656:13;:28;-1:-1:-1;;29656:46:0;29409:312;;;2669:25:1;;;2657:2;2642:18;29409:312:0;2523:177:1;35653:170:0;;;;;;;;;;-1:-1:-1;35653:170:0;;;;;:::i;:::-;;:::i;51246:131::-;;;;;;;;;;-1:-1:-1;51246:131:0;;;;;:::i;:::-;;:::i;49335:31::-;;;;;;;;;;;;;;;;51805:588;;;;;;;;;;;;;:::i;35894:185::-;;;;;;;;;;-1:-1:-1;35894:185:0;;;;;:::i;:::-;;:::i;49429:31::-;;;;;;;;;;;;;;;;49516:25;;;;;;;;;;-1:-1:-1;49516:25:0;;;;;;;;49171:82;;;;;;;;;;;;;:::i;33092:125::-;;;;;;;;;;-1:-1:-1;33092:125:0;;;;;:::i;:::-;;:::i;51138:100::-;;;;;;;;;;-1:-1:-1;51138:100:0;;;;;:::i;:::-;;:::i;30538:206::-;;;;;;;;;;-1:-1:-1;30538:206:0;;;;;:::i;:::-;;:::i;6354:103::-;;;;;;;;;;;;;:::i;51582:106::-;;;;;;;;;;-1:-1:-1;51582:106:0;;;;;:::i;:::-;;:::i;5703:87::-;;;;;;;;;;-1:-1:-1;5776:6:0;;-1:-1:-1;;;;;5776:6:0;5703:87;;51387:92;;;;;;;;;;-1:-1:-1;51387:92:0;;;;;:::i;:::-;;:::i;50805:95::-;;;;;;;;;;-1:-1:-1;50805:95:0;;;;;:::i;:::-;;:::i;33453:104::-;;;;;;;;;;;;;:::i;49260:34::-;;;;;;;;;;;;;;;;49617:685;;;;;;:::i;:::-;;:::i;35064:287::-;;;;;;;;;;-1:-1:-1;35064:287:0;;;;;:::i;:::-;;:::i;36150:370::-;;;;;;;;;;-1:-1:-1;36150:370:0;;;;;:::i;:::-;;:::i;51034:96::-;;;;;;;;;;-1:-1:-1;51034:96:0;;;;;:::i;:::-;;:::i;50426:371::-;;;;;;;;;;-1:-1:-1;50426:371:0;;;;;:::i;:::-;;:::i;49391:31::-;;;;;;;;;;;;;;;;50908:114;;;;;;;;;;-1:-1:-1;50908:114:0;;;;;:::i;:::-;;:::i;35422:164::-;;;;;;;;;;-1:-1:-1;35422:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35543:25:0;;;35519:4;35543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35422:164;6612:201;;;;;;;;;;-1:-1:-1;6612:201:0;;;;;:::i;:::-;;:::i;49301:27::-;;;;;;;;;;;;;;;;30169:305;30271:4;-1:-1:-1;;;;;;30308:40:0;;-1:-1:-1;;;30308:40:0;;:105;;-1:-1:-1;;;;;;;30365:48:0;;-1:-1:-1;;;30365:48:0;30308:105;:158;;;-1:-1:-1;;;;;;;;;;18619:40:0;;;30430:36;30288:178;30169:305;-1:-1:-1;;30169:305:0:o;33284:100::-;33338:13;33371:5;33364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33284:100;:::o;34788:204::-;34856:7;34881:16;34889:7;34881;:16::i;:::-;34876:64;;34906:34;;-1:-1:-1;;;34906:34:0;;;;;;;;;;;34876:64;-1:-1:-1;34960:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34960:24:0;;34788:204::o;34350:372::-;34423:13;34439:24;34455:7;34439:15;:24::i;:::-;34423:40;;34484:5;-1:-1:-1;;;;;34478:11:0;:2;-1:-1:-1;;;;;34478:11:0;;34474:48;;34498:24;;-1:-1:-1;;;34498:24:0;;;;;;;;;;;34474:48;4507:10;-1:-1:-1;;;;;34539:21:0;;;34535:139;;34566:37;34583:5;4507:10;35422:164;:::i;34566:37::-;34562:112;;34627:35;;-1:-1:-1;;;34627:35:0;;;;;;;;;;;34562:112;34686:28;34695:2;34699:7;34708:5;34686:8;:28::i;:::-;34412:310;34350:372;;:::o;51487:83::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;;;;;;;;;51547:6:::1;:15:::0;;-1:-1:-1;;51547:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51487:83::o;35653:170::-;35787:28;35797:4;35803:2;35807:7;35787:9;:28::i;51246:131::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;51336:33:::1;51346:9;51357:11;51336:9;:33::i;:::-;51246:131:::0;;:::o;51805:588::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;677:1:::1;1275:7;;:19:::0;1267:63:::1;;;::::0;-1:-1:-1;;;1267:63:0;;6857:2:1;1267:63:0::1;::::0;::::1;6839:21:1::0;6896:2;6876:18;;;6869:30;6935:33;6915:18;;;6908:61;6986:18;;1267:63:0::1;6655:355:1::0;1267:63:0::1;677:1;1408:7;:18:::0;51867:7:::2;51888:42;51973:3;51944:26;:21;51968:2;51944:26;:::i;:::-;:32;;;;:::i;:::-;51880:101;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51866:115;;;51998:2;51990:11;;;::::0;::::2;;52011:7;52032:42;52117:3;52088:26;:21;52112:2;52088:26;:::i;:::-;:32;;;;:::i;:::-;52024:101;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52010:115;;;52142:2;52134:11;;;::::0;::::2;;52155:7;52176:42;52261:3;52232:26;:21;52256:2;52232:26;:::i;:::-;:32;;;;:::i;:::-;52168:101;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52154:115;;;52286:2;52278:11;;;::::0;::::2;;52299:7;52320;5776:6:::0;;-1:-1:-1;;;;;5776:6:0;;5703:87;52320:7:::2;-1:-1:-1::0;;;;;52312:21:0::2;52341;52312:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52298:69;;;52384:2;52376:11;;;::::0;::::2;;-1:-1:-1::0;;633:1:0::1;1587:7;:22:::0;-1:-1:-1;;51805:588:0:o;35894:185::-;36032:39;36049:4;36055:2;36059:7;36032:39;;;;;;;;;;;;:16;:39::i;49171:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33092:125::-;33156:7;33183:21;33196:7;33183:12;:21::i;:::-;:26;;33092:125;-1:-1:-1;;33092:125:0:o;51138:100::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;51208:9:::1;:22:::0;51138:100::o;30538:206::-;30602:7;-1:-1:-1;;;;;30626:19:0;;30622:60;;30654:28;;-1:-1:-1;;;30654:28:0;;;;;;;;;;;30622:60;-1:-1:-1;;;;;;30708:19:0;;;;;:12;:19;;;;;:27;;;;30538:206::o;6354:103::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;6419:30:::1;6446:1;6419:18;:30::i;:::-;6354:103::o:0;51582:106::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;51658:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51387:92::-:0;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;51454:5:::1;:17:::0;51387:92::o;50805:95::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;50874:9:::1;:18:::0;50805:95::o;33453:104::-;33509:13;33542:7;33535:14;;;;;:::i;49617:685::-;49695:5;;49745:9;;:13;;49757:1;49745:13;:::i;:::-;51788:1;29672:12;29462:7;29656:13;49731:11;;29656:28;;-1:-1:-1;;29656:46:0;49715:27;;;;:::i;:::-;:43;49711:84;;;-1:-1:-1;49782:1:0;49711:84;49828:18;49842:4;49828:11;:18;:::i;:::-;49815:9;:31;;49807:59;;;;-1:-1:-1;;;49807:59:0;;8122:2:1;49807:59:0;;;8104:21:1;8161:2;8141:18;;;8134:30;-1:-1:-1;;;8180:18:1;;;8173:45;8235:18;;49807:59:0;7920:339:1;49807:59:0;49915:9;;:13;;49927:1;49915:13;:::i;:::-;51788:1;29672:12;29462:7;29656:13;49901:11;;29656:28;;-1:-1:-1;;29656:46:0;49885:27;;;;:::i;:::-;:43;49877:82;;;;-1:-1:-1;;;49877:82:0;;8466:2:1;49877:82:0;;;8448:21:1;8505:2;8485:18;;;8478:30;8544:28;8524:18;;;8517:56;8590:18;;49877:82:0;8264:350:1;49877:82:0;49979:6;;;;49978:7;49970:72;;;;-1:-1:-1;;;49970:72:0;;8821:2:1;49970:72:0;;;8803:21:1;8860:2;8840:18;;;8833:30;8899:34;8879:18;;;8872:62;-1:-1:-1;;;8950:18:1;;;8943:50;9010:19;;49970:72:0;8619:416:1;49970:72:0;50075:8;;:12;;50086:1;50075:12;:::i;:::-;50061:11;:26;50053:58;;;;-1:-1:-1;;;50053:58:0;;9242:2:1;50053:58:0;;;9224:21:1;9281:2;9261:18;;;9254:30;-1:-1:-1;;;9300:18:1;;;9293:49;9359:18;;50053:58:0;9040:343:1;50053:58:0;50187:12;;50158:10;30887:7;30922:19;;;:12;:19;;;;;:32;50172:11;;-1:-1:-1;;;30922:32:0;;;;50144:39;;;;:::i;:::-;:55;;50122:125;;;;-1:-1:-1;;;50122:125:0;;9590:2:1;50122:125:0;;;9572:21:1;9629:2;9609:18;;;9602:30;-1:-1:-1;;;9648:18:1;;;9641:50;9708:18;;50122:125:0;9388:344:1;50122:125:0;50260:34;50270:10;50282:11;50260:9;:34::i;35064:287::-;4507:10;-1:-1:-1;;;;;35163:24:0;;;35159:54;;35196:17;;-1:-1:-1;;;35196:17:0;;;;;;;;;;;35159:54;4507:10;35226:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35226:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35226:53:0;;;;;;;;;;35295:48;;540:41:1;;;35226:42:0;;4507:10;35295:48;;513:18:1;35295:48:0;;;;;;;35064:287;;:::o;36150:370::-;36317:28;36327:4;36333:2;36337:7;36317:9;:28::i;:::-;-1:-1:-1;;;;;36360:13:0;;8699:19;:23;36356:157;;36381:56;36412:4;36418:2;36422:7;36431:5;36381:30;:56::i;:::-;36377:136;;36461:40;;-1:-1:-1;;;36461:40:0;;;;;;;;;;;36377:136;36150:370;;;;:::o;51034:96::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;51102:8:::1;:20:::0;51034:96::o;50426:371::-;50500:13;50530:17;50538:8;50530:7;:17::i;:::-;50522:77;;;;-1:-1:-1;;;50522:77:0;;9939:2:1;50522:77:0;;;9921:21:1;9978:2;9958:18;;;9951:30;10017:34;9997:18;;;9990:62;-1:-1:-1;;;10068:18:1;;;10061:45;10123:19;;50522:77:0;9737:411:1;50522:77:0;50608:28;50639:10;:8;:10::i;:::-;50608:41;;50694:1;50669:14;50663:28;:32;:128;;;;;;;;;;;;;;;;;50731:14;50747:19;:8;:17;:19::i;:::-;50714:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50663:128;50656:135;50426:371;-1:-1:-1;;;50426:371:0:o;50908:114::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;50986:12:::1;:28:::0;50908:114::o;6612:201::-;5776:6;;-1:-1:-1;;;;;5776:6:0;4507:10;5923:23;5915:68;;;;-1:-1:-1;;;5915:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6701:22:0;::::1;6693:73;;;::::0;-1:-1:-1;;;6693:73:0;;10997:2:1;6693:73:0::1;::::0;::::1;10979:21:1::0;11036:2;11016:18;;;11009:30;11075:34;11055:18;;;11048:62;-1:-1:-1;;;11126:18:1;;;11119:36;11172:19;;6693:73:0::1;10795:402:1::0;6693:73:0::1;6777:28;6796:8;6777:18;:28::i;:::-;6612:201:::0;:::o;36775:174::-;36832:4;36875:7;51788:1;36856:26;;:53;;;;;36896:13;;36886:7;:23;36856:53;:85;;;;-1:-1:-1;;36914:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36914:27:0;;;;36913:28;;36775:174::o;45997:196::-;46112:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46112:29:0;-1:-1:-1;;;;;46112:29:0;;;;;;;;;46157:28;;46112:24;;46157:28;;;;;;;45997:196;;;:::o;40945:2130::-;41060:35;41098:21;41111:7;41098:12;:21::i;:::-;41060:59;;41158:4;-1:-1:-1;;;;;41136:26:0;:13;:18;;;-1:-1:-1;;;;;41136:26:0;;41132:67;;41171:28;;-1:-1:-1;;;41171:28:0;;;;;;;;;;;41132:67;41212:22;4507:10;-1:-1:-1;;;;;41238:20:0;;;;:73;;-1:-1:-1;41275:36:0;41292:4;4507:10;35422:164;:::i;41275:36::-;41238:126;;;-1:-1:-1;4507:10:0;41328:20;41340:7;41328:11;:20::i;:::-;-1:-1:-1;;;;;41328:36:0;;41238:126;41212:153;;41383:17;41378:66;;41409:35;;-1:-1:-1;;;41409:35:0;;;;;;;;;;;41378:66;-1:-1:-1;;;;;41459:16:0;;41455:52;;41484:23;;-1:-1:-1;;;41484:23:0;;;;;;;;;;;41455:52;41628:35;41645:1;41649:7;41658:4;41628:8;:35::i;:::-;-1:-1:-1;;;;;41959:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41959:31:0;;;;;;;-1:-1:-1;;41959:31:0;;;;;;;42005:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42005:29:0;;;;;;;;;;;42085:20;;;:11;:20;;;;;;42120:18;;-1:-1:-1;;;;;;42153:49:0;;;;-1:-1:-1;;;42186:15:0;42153:49;;;;;;;;;;42476:11;;42536:24;;;;;42579:13;;42085:20;;42536:24;;42579:13;42575:384;;42789:13;;42774:11;:28;42770:174;;42827:20;;42896:28;;;;42870:54;;-1:-1:-1;;;42870:54:0;-1:-1:-1;;;;;;42870:54:0;;;-1:-1:-1;;;;;42827:20:0;;42870:54;;;;42770:174;41934:1036;;;43006:7;43002:2;-1:-1:-1;;;;;42987:27:0;42996:4;-1:-1:-1;;;;;42987:27:0;;;;;;;;;;;41049:2026;;40945:2130;;;:::o;37033:104::-;37102:27;37112:2;37116:8;37102:27;;;;;;;;;;;;:9;:27::i;31919:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32030:7:0;;51788:1;32079:23;32075:888;;32115:13;;32108:4;:20;32104:859;;;32149:31;32183:17;;;:11;:17;;;;;;;;;32149:51;;;;;;;;;-1:-1:-1;;;;;32149:51:0;;;;-1:-1:-1;;;32149:51:0;;;;;;;;;;;-1:-1:-1;;;32149:51:0;;;;;;;;;;;;;;32219:729;;32269:14;;-1:-1:-1;;;;;32269:28:0;;32265:101;;32333:9;31919:1111;-1:-1:-1;;;31919:1111:0:o;32265:101::-;-1:-1:-1;;;32708:6:0;32753:17;;;;:11;:17;;;;;;;;;32741:29;;;;;;;;;-1:-1:-1;;;;;32741:29:0;;;;;-1:-1:-1;;;32741:29:0;;;;;;;;;;;-1:-1:-1;;;32741:29:0;;;;;;;;;;;;;32801:28;32797:109;;32869:9;31919:1111;-1:-1:-1;;;31919:1111:0:o;32797:109::-;32668:261;;;32130:833;32104:859;32991:31;;-1:-1:-1;;;32991:31:0;;;;;;;;;;;6973:191;7066:6;;;-1:-1:-1;;;;;7083:17:0;;;-1:-1:-1;;;;;;7083:17:0;;;;;;;7116:40;;7066:6;;;7083:17;7066:6;;7116:40;;7047:16;;7116:40;7036:128;6973:191;:::o;46685:667::-;46869:72;;-1:-1:-1;;;46869:72:0;;46848:4;;-1:-1:-1;;;;;46869:36:0;;;;;:72;;4507:10;;46920:4;;46926:7;;46935:5;;46869:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46869:72:0;;;;;;;;-1:-1:-1;;46869:72:0;;;;;;;;;;;;:::i;:::-;;;46865:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47103:6;:13;47120:1;47103:18;47099:235;;47149:40;;-1:-1:-1;;;47149:40:0;;;;;;;;;;;47099:235;47292:6;47286:13;47277:6;47273:2;47269:15;47262:38;46865:480;-1:-1:-1;;;;;;46988:55:0;-1:-1:-1;;;46988:55:0;;-1:-1:-1;46865:480:0;46685:667;;;;;;:::o;50310:110::-;50370:13;50403:9;50396:16;;;;;:::i;1989:723::-;2045:13;2266:5;2275:1;2266:10;2262:53;;-1:-1:-1;;2293:10:0;;;;;;;;;;;;-1:-1:-1;;;2293:10:0;;;;;1989:723::o;2262:53::-;2340:5;2325:12;2381:78;2388:9;;2381:78;;2414:8;;;;:::i;:::-;;-1:-1:-1;2437:10:0;;-1:-1:-1;2445:2:0;2437:10;;:::i;:::-;;;2381:78;;;2469:19;2501:6;2491:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2491:17:0;;2469:39;;2519:154;2526:10;;2519:154;;2553:11;2563:1;2553:11;;:::i;:::-;;-1:-1:-1;2622:10:0;2630:2;2622:5;:10;:::i;:::-;2609:24;;:2;:24;:::i;:::-;2596:39;;2579:6;2586;2579:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2579:56:0;;;;;;;;-1:-1:-1;2650:11:0;2659:2;2650:11;;:::i;:::-;;;2519:154;;37510:1749;37633:20;37656:13;-1:-1:-1;;;;;37684:16:0;;37680:48;;37709:19;;-1:-1:-1;;;37709:19:0;;;;;;;;;;;37680:48;37743:8;37755:1;37743:13;37739:44;;37765:18;;-1:-1:-1;;;37765:18:0;;;;;;;;;;;37739:44;-1:-1:-1;;;;;38134:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38193:49:0;;38134:44;;;;;;;;38193:49;;;-1:-1:-1;;;;;38134:44:0;;;;;;38193:49;;;;;;;;;;;;;;;;38259:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38309:66:0;;;-1:-1:-1;;;38359:15:0;38309:66;;;;;;;;;;;;;38259:25;;38456:23;;;;8699:19;:23;38496:631;;38536:313;38567:38;;38592:12;;-1:-1:-1;;;;;38567:38:0;;;38584:1;;38567:38;;38584:1;;38567:38;38633:69;38672:1;38676:2;38680:14;;;;;;38696:5;38633:30;:69::i;:::-;38628:174;;38738:40;;-1:-1:-1;;;38738:40:0;;;;;;;;;;;38628:174;38844:3;38829:12;:18;38536:313;;38930:12;38913:13;;:29;38909:43;;38944:8;;;38909:43;38496:631;;;38993:119;39024:40;;39049:14;;;;;-1:-1:-1;;;;;39024:40:0;;;39041:1;;39024:40;;39041:1;;39024:40;39107:3;39092:12;:18;38993:119;;38496:631;-1:-1:-1;39141:13:0;:28;;;39191:60;;39224:2;39228:12;39242:8;39191:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:254::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3219:9;3206:23;3196:33;;3248:38;3282:2;3271:9;3267:18;3248:38;:::i;:::-;3238:48;;3038:254;;;;;:::o;3297:186::-;3356:6;3409:2;3397:9;3388:7;3384:23;3380:32;3377:52;;;3425:1;3422;3415:12;3377:52;3448:29;3467:9;3448:29;:::i;3488:127::-;3549:10;3544:3;3540:20;3537:1;3530:31;3580:4;3577:1;3570:15;3604:4;3601:1;3594:15;3620:632;3685:5;3715:18;3756:2;3748:6;3745:14;3742:40;;;3762:18;;:::i;:::-;3837:2;3831:9;3805:2;3891:15;;-1:-1:-1;;3887:24:1;;;3913:2;3883:33;3879:42;3867:55;;;3937:18;;;3957:22;;;3934:46;3931:72;;;3983:18;;:::i;:::-;4023:10;4019:2;4012:22;4052:6;4043:15;;4082:6;4074;4067:22;4122:3;4113:6;4108:3;4104:16;4101:25;4098:45;;;4139:1;4136;4129:12;4098:45;4189:6;4184:3;4177:4;4169:6;4165:17;4152:44;4244:1;4237:4;4228:6;4220;4216:19;4212:30;4205:41;;;;3620:632;;;;;:::o;4257:451::-;4326:6;4379:2;4367:9;4358:7;4354:23;4350:32;4347:52;;;4395:1;4392;4385:12;4347:52;4435:9;4422:23;4468:18;4460:6;4457:30;4454:50;;;4500:1;4497;4490:12;4454:50;4523:22;;4576:4;4568:13;;4564:27;-1:-1:-1;4554:55:1;;4605:1;4602;4595:12;4554:55;4628:74;4694:7;4689:2;4676:16;4671:2;4667;4663:11;4628:74;:::i;4713:254::-;4778:6;4786;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4878:29;4897:9;4878:29;:::i;:::-;4868:39;;4926:35;4957:2;4946:9;4942:18;4926:35;:::i;4972:667::-;5067:6;5075;5083;5091;5144:3;5132:9;5123:7;5119:23;5115:33;5112:53;;;5161:1;5158;5151:12;5112:53;5184:29;5203:9;5184:29;:::i;:::-;5174:39;;5232:38;5266:2;5255:9;5251:18;5232:38;:::i;:::-;5222:48;;5317:2;5306:9;5302:18;5289:32;5279:42;;5372:2;5361:9;5357:18;5344:32;5399:18;5391:6;5388:30;5385:50;;;5431:1;5428;5421:12;5385:50;5454:22;;5507:4;5499:13;;5495:27;-1:-1:-1;5485:55:1;;5536:1;5533;5526:12;5485:55;5559:74;5625:7;5620:2;5607:16;5602:2;5598;5594:11;5559:74;:::i;:::-;5549:84;;;4972:667;;;;;;;:::o;5644:260::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5812:29;5831:9;5812:29;:::i;:::-;5802:39;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:380::-;5988:1;5984:12;;;;6031;;;6052:61;;6106:4;6098:6;6094:17;6084:27;;6052:61;6159:2;6151:6;6148:14;6128:18;6125:38;6122:161;;6205:10;6200:3;6196:20;6193:1;6186:31;6240:4;6237:1;6230:15;6268:4;6265:1;6258:15;6122:161;;5909:380;;;:::o;6294:356::-;6496:2;6478:21;;;6515:18;;;6508:30;6574:34;6569:2;6554:18;;6547:62;6641:2;6626:18;;6294:356::o;7015:127::-;7076:10;7071:3;7067:20;7064:1;7057:31;7107:4;7104:1;7097:15;7131:4;7128:1;7121:15;7147:168;7187:7;7253:1;7249;7245:6;7241:14;7238:1;7235:21;7230:1;7223:9;7216:17;7212:45;7209:71;;;7260:18;;:::i;:::-;-1:-1:-1;7300:9:1;;7147:168::o;7320:127::-;7381:10;7376:3;7372:20;7369:1;7362:31;7412:4;7409:1;7402:15;7436:4;7433:1;7426:15;7452:120;7492:1;7518;7508:35;;7523:18;;:::i;:::-;-1:-1:-1;7557:9:1;;7452:120::o;7787:128::-;7827:3;7858:1;7854:6;7851:1;7848:13;7845:39;;;7864:18;;:::i;:::-;-1:-1:-1;7900:9:1;;7787:128::o;10153:637::-;10433:3;10471:6;10465:13;10487:53;10533:6;10528:3;10521:4;10513:6;10509:17;10487:53;:::i;:::-;10603:13;;10562:16;;;;10625:57;10603:13;10562:16;10659:4;10647:17;;10625:57;:::i;:::-;-1:-1:-1;;;10704:20:1;;10733:22;;;10782:1;10771:13;;10153:637;-1:-1:-1;;;;10153:637:1:o;11202:489::-;-1:-1:-1;;;;;11471:15:1;;;11453:34;;11523:15;;11518:2;11503:18;;11496:43;11570:2;11555:18;;11548:34;;;11618:3;11613:2;11598:18;;11591:31;;;11396:4;;11639:46;;11665:19;;11657:6;11639:46;:::i;:::-;11631:54;11202:489;-1:-1:-1;;;;;;11202:489:1:o;11696:249::-;11765:6;11818:2;11806:9;11797:7;11793:23;11789:32;11786:52;;;11834:1;11831;11824:12;11786:52;11866:9;11860:16;11885:30;11909:5;11885:30;:::i;11950:135::-;11989:3;12010:17;;;12007:43;;12030:18;;:::i;:::-;-1:-1:-1;12077:1:1;12066:13;;11950:135::o;12090:125::-;12130:4;12158:1;12155;12152:8;12149:34;;;12163:18;;:::i;:::-;-1:-1:-1;12200:9:1;;12090:125::o;12220:112::-;12252:1;12278;12268:35;;12283:18;;:::i;:::-;-1:-1:-1;12317:9:1;;12220:112::o;12337:127::-;12398:10;12393:3;12389:20;12386:1;12379:31;12429:4;12426:1;12419:15;12453:4;12450:1;12443:15

Swarm Source

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