ETH Price: $3,065.07 (+3.24%)
Gas: 11 Gwei

Token

Dental Frens (DentalFrens)
 

Overview

Max Total Supply

10,001 DentalFrens

Holders

1,264

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jelykim.eth
Balance
20 DentalFrens
0xbc810a177aca168f4574ea75eedee8289bde76e0
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:
DentalFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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







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







/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 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);
}







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







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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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







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

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

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

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

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

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

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

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

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

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

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

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

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

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







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

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

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

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

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







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

// Part: IERC721

// Part: IERC721

// Part: IERC721

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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







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

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

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

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

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

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

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


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







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

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

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







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


contract DentalFrens is ERC721, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
  using SafeMath for uint256;
  Counters.Counter public _tokenIds;
  uint256 public _mintCost = 0.02 ether;
  uint256 public _maxSupply = 10000;
  bool public _isPublicMintEnabled = false;
  string public _baseTokenURI = "";
  
  /**
  * @dev Initializes the contract setting the `tokenName` and `symbol` of the nft, `cost` of each mint call, and maximum `supply` of the nft.
  * Note: `cost` is in wei. 
  */
  constructor() ERC721("Dental Frens", "DentalFrens") {
  }

    /*
    * Pause sale if active, make active if paused
    */
  function flipSaleState() public onlyOwner {
    _isPublicMintEnabled = !_isPublicMintEnabled;
  }

  /**
  * @dev Mint `count` tokens if requirements are satisfied.
  * 
  */
  function mintTokens(uint256 count)
  public
  payable
  nonReentrant{
    require(_isPublicMintEnabled, "Mint disabled");
    require(count > 0 && count <= 10, "Max 10 per tx");
    require(count.add(_tokenIds.current()) < _maxSupply, "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(count),
           "Ether value sent is below the price");
    for(uint i=0; i<count; i++){
        _mint(msg.sender);
     }
  }


  /**
  * @dev Update the cost to mint a token.
  * Can only be called by the current owner.
  */
  function setCost(uint256 cost) public onlyOwner{
    _mintCost = cost;
  }

  /**
  * @dev Update the max supply.
  * Can only be called by the current owner.
  */
  function setMaxSupply(uint256 max) public onlyOwner{
    _maxSupply = max;
  }

  function setBaseTokenURI(string memory __baseTokenURI) public onlyOwner {
    _baseTokenURI = __baseTokenURI;
  }


  /**
  * @dev Transfers contract balance to contract owner.
  * Can only be called by the current owner.
  */
  function withdraw() public onlyOwner{
    payable(owner()).transfer(address(this).balance);
  }
  
  

  /**
  * @dev Used by public mint functions and by owner functions.
  * Can only be called internally by other functions.
  */
  function _mint(address to) internal virtual returns (uint256){
    _tokenIds.increment();
    uint256 id = _tokenIds.current();
    _safeMint(to, id);

    return id;
  }

  function getCost() public view returns (uint256){
    return _mintCost;
  }
  function totalSupply() public view returns (uint256){
    return _maxSupply;
  }
  function getCurrentSupply() public view returns (uint256){
    return _tokenIds.current();
  }
  function getMintStatus() public view returns (bool) {
    return _isPublicMintEnabled;
  }

  /**
  * @dev Returns a URI for a given token ID's metadata
  */
  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId), ".json"));
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxSupply","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66470de4df820000600955612710600a55600b805460ff1916905560a06040819052600060808190526200003691600c9162000130565b503480156200004457600080fd5b50604080518082018252600c81526b44656e74616c204672656e7360a01b60208083019182528351808501909452600b84526a44656e74616c4672656e7360a81b9084015281519192916200009c9160009162000130565b508051620000b290600190602084019062000130565b505050620000cf620000c9620000da60201b60201c565b620000de565b600160075562000213565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013e90620001d6565b90600052602060002090601f016020900481019282620001625760008555620001ad565b82601f106200017d57805160ff1916838001178555620001ad565b82800160010185558215620001ad579182015b82811115620001ad57825182559160200191906001019062000190565b50620001bb929150620001bf565b5090565b5b80821115620001bb5760008155600101620001c0565b600181811c90821680620001eb57607f821691505b602082108114156200020d57634e487b7160e01b600052602260045260246000fd5b50919050565b611dbb80620002236000396000f3fe6080604052600436106101d85760003560e01c80636f8b44b011610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104f1578063cfc86f7b14610511578063e985e9c514610526578063f2fde38b1461056f57600080fd5b8063a22cb46514610485578063aa46a400146104a5578063b88d4fde146104bc578063bd3e19d4146104dc57600080fd5b80638da5cb5b116100d15780638da5cb5b14610427578063941ada0e1461044557806395d89b411461045d57806397304ced1461047257600080fd5b80636f8b44b0146103bc57806370a08231146103dc578063715018a6146103fc5780638c148eb01461041157600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461034757806344a0d68a146103675780634f3e1efc146103875780636352211e1461039c57600080fd5b806323b872dd146102dd57806330176e13146102fd57806334918dfd1461031d5780633ccfd60b1461033257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c578063152cdf041461028e57806318160ddd146102a857806322f4596f146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611958565b61058f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105e1565b6040516102099190611b34565b34801561024057600080fd5b5061025461024f3660046119db565b610673565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461192e565b61070d565b005b34801561029a57600080fd5b50600b546101fd9060ff1681565b3480156102b457600080fd5b50600a545b604051908152602001610209565b3480156102d357600080fd5b506102b9600a5481565b3480156102e957600080fd5b5061028c6102f836600461183a565b610823565b34801561030957600080fd5b5061028c610318366004611992565b610854565b34801561032957600080fd5b5061028c610895565b34801561033e57600080fd5b5061028c6108d3565b34801561035357600080fd5b5061028c61036236600461183a565b610939565b34801561037357600080fd5b5061028c6103823660046119db565b610954565b34801561039357600080fd5b506102b9610983565b3480156103a857600080fd5b506102546103b73660046119db565b610993565b3480156103c857600080fd5b5061028c6103d73660046119db565b610a0a565b3480156103e857600080fd5b506102b96103f73660046117ec565b610a39565b34801561040857600080fd5b5061028c610ac0565b34801561041d57600080fd5b506102b960095481565b34801561043357600080fd5b506006546001600160a01b0316610254565b34801561045157600080fd5b50600b5460ff166101fd565b34801561046957600080fd5b50610227610af6565b61028c6104803660046119db565b610b05565b34801561049157600080fd5b5061028c6104a03660046118f2565b610d00565b3480156104b157600080fd5b506008546102b99081565b3480156104c857600080fd5b5061028c6104d7366004611876565b610dc5565b3480156104e857600080fd5b506009546102b9565b3480156104fd57600080fd5b5061022761050c3660046119db565b610dfd565b34801561051d57600080fd5b50610227610e31565b34801561053257600080fd5b506101fd610541366004611807565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057b57600080fd5b5061028c61058a3660046117ec565b610ebf565b60006001600160e01b031982166380ac58cd60e01b14806105c057506001600160e01b03198216635b5e139f60e01b145b806105db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105f090611cad565b80601f016020809104026020016040519081016040528092919081815260200182805461061c90611cad565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071882610993565b9050806001600160a01b0316836001600160a01b031614156107865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e8565b336001600160a01b03821614806107a257506107a28133610541565b6108145760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e8565b61081e8383610f57565b505050565b61082d3382610fc5565b6108495760405162461bcd60e51b81526004016106e890611bce565b61081e8383836110bc565b6006546001600160a01b0316331461087e5760405162461bcd60e51b81526004016106e890611b99565b805161089190600c9060208401906116c1565b5050565b6006546001600160a01b031633146108bf5760405162461bcd60e51b81526004016106e890611b99565b600b805460ff19811660ff90911615179055565b6006546001600160a01b031633146108fd5760405162461bcd60e51b81526004016106e890611b99565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610936573d6000803e3d6000fd5b50565b61081e83838360405180602001604052806000815250610dc5565b6006546001600160a01b0316331461097e5760405162461bcd60e51b81526004016106e890611b99565b600955565b600061098e60085490565b905090565b6000818152600260205260408120546001600160a01b0316806105db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e8565b6006546001600160a01b03163314610a345760405162461bcd60e51b81526004016106e890611b99565b600a55565b60006001600160a01b038216610aa45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610aea5760405162461bcd60e51b81526004016106e890611b99565b610af4600061125c565b565b6060600180546105f090611cad565b60026007541415610b585760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e8565b6002600755600b5460ff16610b9f5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b60448201526064016106e8565b600081118015610bb05750600a8111155b610bec5760405162461bcd60e51b815260206004820152600d60248201526c09ac2f040626040e0cae440e8f609b1b60448201526064016106e8565b600a54610c02610bfb60085490565b83906112ae565b10610c445760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016106e8565b33610c576006546001600160a01b031690565b6001600160a01b03161480610c785750600954610c7490826112c1565b3410155b610cd05760405162461bcd60e51b815260206004820152602360248201527f45746865722076616c75652073656e742069732062656c6f772074686520707260448201526269636560e81b60648201526084016106e8565b60005b81811015610cf757610ce4336112cd565b5080610cef81611ce8565b915050610cd3565b50506001600755565b6001600160a01b038216331415610d595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcf3383610fc5565b610deb5760405162461bcd60e51b81526004016106e890611bce565b610df7848484846112f4565b50505050565b6060600c610e0a83611327565b604051602001610e1b929190611a3c565b6040516020818303038152906040529050919050565b600c8054610e3e90611cad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90611cad565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b505050505081565b6006546001600160a01b03163314610ee95760405162461bcd60e51b81526004016106e890611b99565b6001600160a01b038116610f4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e8565b6109368161125c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f8c82610993565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661103e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e8565b600061104983610993565b9050806001600160a01b0316846001600160a01b031614806110845750836001600160a01b031661107984610673565b6001600160a01b0316145b806110b457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110cf82610993565b6001600160a01b0316146111375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e8565b6001600160a01b0382166111995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e8565b6111a4600082610f57565b6001600160a01b03831660009081526003602052604081208054600192906111cd908490611c6a565b90915550506001600160a01b03821660009081526003602052604081208054600192906111fb908490611c1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112ba8284611c1f565b9392505050565b60006112ba8284611c4b565b60006112dd600880546001019055565b60006112e860085490565b90506105db8382611425565b6112ff8484846110bc565b61130b8484848461143f565b610df75760405162461bcd60e51b81526004016106e890611b47565b60608161134b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611375578061135f81611ce8565b915061136e9050600a83611c37565b915061134f565b60008167ffffffffffffffff81111561139057611390611d59565b6040519080825280601f01601f1916602001820160405280156113ba576020820181803683370190505b5090505b84156110b4576113cf600183611c6a565b91506113dc600a86611d03565b6113e7906030611c1f565b60f81b8183815181106113fc576113fc611d43565b60200101906001600160f81b031916908160001a90535061141e600a86611c37565b94506113be565b61089182826040518060200160405280600081525061154c565b60006001600160a01b0384163b1561154157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611483903390899088908890600401611af7565b602060405180830381600087803b15801561149d57600080fd5b505af19250505080156114cd575060408051601f3d908101601f191682019092526114ca91810190611975565b60015b611527573d8080156114fb576040519150601f19603f3d011682016040523d82523d6000602084013e611500565b606091505b50805161151f5760405162461bcd60e51b81526004016106e890611b47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110b4565b506001949350505050565b611556838361157f565b611563600084848461143f565b61081e5760405162461bcd60e51b81526004016106e890611b47565b6001600160a01b0382166115d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e8565b6000818152600260205260409020546001600160a01b03161561163a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e8565b6001600160a01b0382166000908152600360205260408120805460019290611663908490611c1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116cd90611cad565b90600052602060002090601f0160209004810192826116ef5760008555611735565b82601f1061170857805160ff1916838001178555611735565b82800160010185558215611735579182015b8281111561173557825182559160200191906001019061171a565b50611741929150611745565b5090565b5b808211156117415760008155600101611746565b600067ffffffffffffffff8084111561177557611775611d59565b604051601f8501601f19908116603f0116810190828211818310171561179d5761179d611d59565b816040528093508581528686860111156117b657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117e757600080fd5b919050565b6000602082840312156117fe57600080fd5b6112ba826117d0565b6000806040838503121561181a57600080fd5b611823836117d0565b9150611831602084016117d0565b90509250929050565b60008060006060848603121561184f57600080fd5b611858846117d0565b9250611866602085016117d0565b9150604084013590509250925092565b6000806000806080858703121561188c57600080fd5b611895856117d0565b93506118a3602086016117d0565b925060408501359150606085013567ffffffffffffffff8111156118c657600080fd5b8501601f810187136118d757600080fd5b6118e68782356020840161175a565b91505092959194509250565b6000806040838503121561190557600080fd5b61190e836117d0565b91506020830135801515811461192357600080fd5b809150509250929050565b6000806040838503121561194157600080fd5b61194a836117d0565b946020939093013593505050565b60006020828403121561196a57600080fd5b81356112ba81611d6f565b60006020828403121561198757600080fd5b81516112ba81611d6f565b6000602082840312156119a457600080fd5b813567ffffffffffffffff8111156119bb57600080fd5b8201601f810184136119cc57600080fd5b6110b48482356020840161175a565b6000602082840312156119ed57600080fd5b5035919050565b60008151808452611a0c816020860160208601611c81565b601f01601f19169290920160200192915050565b60008151611a32818560208601611c81565b9290920192915050565b600080845481600182811c915080831680611a5857607f831692505b6020808410821415611a7857634e487b7160e01b86526022600452602486fd5b818015611a8c5760018114611a9d57611aca565b60ff19861689528489019650611aca565b60008b81526020902060005b86811015611ac25781548b820152908501908301611aa9565b505084890196505b505050505050611aee611add8286611a20565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2a908301846119f4565b9695505050505050565b6020815260006112ba60208301846119f4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c3257611c32611d17565b500190565b600082611c4657611c46611d2d565b500490565b6000816000190483118215151615611c6557611c65611d17565b500290565b600082821015611c7c57611c7c611d17565b500390565b60005b83811015611c9c578181015183820152602001611c84565b83811115610df75750506000910152565b600181811c90821680611cc157607f821691505b60208210811415611ce257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cfc57611cfc611d17565b5060010190565b600082611d1257611d12611d2d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461093657600080fdfea2646970667358221220f69c8b757d13f0358c8817d8996740a30a1d31217e7d583d09b2a7cf0e80d61564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636f8b44b011610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104f1578063cfc86f7b14610511578063e985e9c514610526578063f2fde38b1461056f57600080fd5b8063a22cb46514610485578063aa46a400146104a5578063b88d4fde146104bc578063bd3e19d4146104dc57600080fd5b80638da5cb5b116100d15780638da5cb5b14610427578063941ada0e1461044557806395d89b411461045d57806397304ced1461047257600080fd5b80636f8b44b0146103bc57806370a08231146103dc578063715018a6146103fc5780638c148eb01461041157600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461034757806344a0d68a146103675780634f3e1efc146103875780636352211e1461039c57600080fd5b806323b872dd146102dd57806330176e13146102fd57806334918dfd1461031d5780633ccfd60b1461033257600080fd5b8063095ea7b3116101b6578063095ea7b31461026c578063152cdf041461028e57806318160ddd146102a857806322f4596f146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611958565b61058f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105e1565b6040516102099190611b34565b34801561024057600080fd5b5061025461024f3660046119db565b610673565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461192e565b61070d565b005b34801561029a57600080fd5b50600b546101fd9060ff1681565b3480156102b457600080fd5b50600a545b604051908152602001610209565b3480156102d357600080fd5b506102b9600a5481565b3480156102e957600080fd5b5061028c6102f836600461183a565b610823565b34801561030957600080fd5b5061028c610318366004611992565b610854565b34801561032957600080fd5b5061028c610895565b34801561033e57600080fd5b5061028c6108d3565b34801561035357600080fd5b5061028c61036236600461183a565b610939565b34801561037357600080fd5b5061028c6103823660046119db565b610954565b34801561039357600080fd5b506102b9610983565b3480156103a857600080fd5b506102546103b73660046119db565b610993565b3480156103c857600080fd5b5061028c6103d73660046119db565b610a0a565b3480156103e857600080fd5b506102b96103f73660046117ec565b610a39565b34801561040857600080fd5b5061028c610ac0565b34801561041d57600080fd5b506102b960095481565b34801561043357600080fd5b506006546001600160a01b0316610254565b34801561045157600080fd5b50600b5460ff166101fd565b34801561046957600080fd5b50610227610af6565b61028c6104803660046119db565b610b05565b34801561049157600080fd5b5061028c6104a03660046118f2565b610d00565b3480156104b157600080fd5b506008546102b99081565b3480156104c857600080fd5b5061028c6104d7366004611876565b610dc5565b3480156104e857600080fd5b506009546102b9565b3480156104fd57600080fd5b5061022761050c3660046119db565b610dfd565b34801561051d57600080fd5b50610227610e31565b34801561053257600080fd5b506101fd610541366004611807565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057b57600080fd5b5061028c61058a3660046117ec565b610ebf565b60006001600160e01b031982166380ac58cd60e01b14806105c057506001600160e01b03198216635b5e139f60e01b145b806105db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105f090611cad565b80601f016020809104026020016040519081016040528092919081815260200182805461061c90611cad565b80156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071882610993565b9050806001600160a01b0316836001600160a01b031614156107865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e8565b336001600160a01b03821614806107a257506107a28133610541565b6108145760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e8565b61081e8383610f57565b505050565b61082d3382610fc5565b6108495760405162461bcd60e51b81526004016106e890611bce565b61081e8383836110bc565b6006546001600160a01b0316331461087e5760405162461bcd60e51b81526004016106e890611b99565b805161089190600c9060208401906116c1565b5050565b6006546001600160a01b031633146108bf5760405162461bcd60e51b81526004016106e890611b99565b600b805460ff19811660ff90911615179055565b6006546001600160a01b031633146108fd5760405162461bcd60e51b81526004016106e890611b99565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610936573d6000803e3d6000fd5b50565b61081e83838360405180602001604052806000815250610dc5565b6006546001600160a01b0316331461097e5760405162461bcd60e51b81526004016106e890611b99565b600955565b600061098e60085490565b905090565b6000818152600260205260408120546001600160a01b0316806105db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e8565b6006546001600160a01b03163314610a345760405162461bcd60e51b81526004016106e890611b99565b600a55565b60006001600160a01b038216610aa45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610aea5760405162461bcd60e51b81526004016106e890611b99565b610af4600061125c565b565b6060600180546105f090611cad565b60026007541415610b585760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e8565b6002600755600b5460ff16610b9f5760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b60448201526064016106e8565b600081118015610bb05750600a8111155b610bec5760405162461bcd60e51b815260206004820152600d60248201526c09ac2f040626040e0cae440e8f609b1b60448201526064016106e8565b600a54610c02610bfb60085490565b83906112ae565b10610c445760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016106e8565b33610c576006546001600160a01b031690565b6001600160a01b03161480610c785750600954610c7490826112c1565b3410155b610cd05760405162461bcd60e51b815260206004820152602360248201527f45746865722076616c75652073656e742069732062656c6f772074686520707260448201526269636560e81b60648201526084016106e8565b60005b81811015610cf757610ce4336112cd565b5080610cef81611ce8565b915050610cd3565b50506001600755565b6001600160a01b038216331415610d595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcf3383610fc5565b610deb5760405162461bcd60e51b81526004016106e890611bce565b610df7848484846112f4565b50505050565b6060600c610e0a83611327565b604051602001610e1b929190611a3c565b6040516020818303038152906040529050919050565b600c8054610e3e90611cad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90611cad565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b505050505081565b6006546001600160a01b03163314610ee95760405162461bcd60e51b81526004016106e890611b99565b6001600160a01b038116610f4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e8565b6109368161125c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f8c82610993565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661103e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e8565b600061104983610993565b9050806001600160a01b0316846001600160a01b031614806110845750836001600160a01b031661107984610673565b6001600160a01b0316145b806110b457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110cf82610993565b6001600160a01b0316146111375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e8565b6001600160a01b0382166111995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e8565b6111a4600082610f57565b6001600160a01b03831660009081526003602052604081208054600192906111cd908490611c6a565b90915550506001600160a01b03821660009081526003602052604081208054600192906111fb908490611c1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112ba8284611c1f565b9392505050565b60006112ba8284611c4b565b60006112dd600880546001019055565b60006112e860085490565b90506105db8382611425565b6112ff8484846110bc565b61130b8484848461143f565b610df75760405162461bcd60e51b81526004016106e890611b47565b60608161134b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611375578061135f81611ce8565b915061136e9050600a83611c37565b915061134f565b60008167ffffffffffffffff81111561139057611390611d59565b6040519080825280601f01601f1916602001820160405280156113ba576020820181803683370190505b5090505b84156110b4576113cf600183611c6a565b91506113dc600a86611d03565b6113e7906030611c1f565b60f81b8183815181106113fc576113fc611d43565b60200101906001600160f81b031916908160001a90535061141e600a86611c37565b94506113be565b61089182826040518060200160405280600081525061154c565b60006001600160a01b0384163b1561154157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611483903390899088908890600401611af7565b602060405180830381600087803b15801561149d57600080fd5b505af19250505080156114cd575060408051601f3d908101601f191682019092526114ca91810190611975565b60015b611527573d8080156114fb576040519150601f19603f3d011682016040523d82523d6000602084013e611500565b606091505b50805161151f5760405162461bcd60e51b81526004016106e890611b47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110b4565b506001949350505050565b611556838361157f565b611563600084848461143f565b61081e5760405162461bcd60e51b81526004016106e890611b47565b6001600160a01b0382166115d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e8565b6000818152600260205260409020546001600160a01b03161561163a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e8565b6001600160a01b0382166000908152600360205260408120805460019290611663908490611c1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116cd90611cad565b90600052602060002090601f0160209004810192826116ef5760008555611735565b82601f1061170857805160ff1916838001178555611735565b82800160010185558215611735579182015b8281111561173557825182559160200191906001019061171a565b50611741929150611745565b5090565b5b808211156117415760008155600101611746565b600067ffffffffffffffff8084111561177557611775611d59565b604051601f8501601f19908116603f0116810190828211818310171561179d5761179d611d59565b816040528093508581528686860111156117b657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117e757600080fd5b919050565b6000602082840312156117fe57600080fd5b6112ba826117d0565b6000806040838503121561181a57600080fd5b611823836117d0565b9150611831602084016117d0565b90509250929050565b60008060006060848603121561184f57600080fd5b611858846117d0565b9250611866602085016117d0565b9150604084013590509250925092565b6000806000806080858703121561188c57600080fd5b611895856117d0565b93506118a3602086016117d0565b925060408501359150606085013567ffffffffffffffff8111156118c657600080fd5b8501601f810187136118d757600080fd5b6118e68782356020840161175a565b91505092959194509250565b6000806040838503121561190557600080fd5b61190e836117d0565b91506020830135801515811461192357600080fd5b809150509250929050565b6000806040838503121561194157600080fd5b61194a836117d0565b946020939093013593505050565b60006020828403121561196a57600080fd5b81356112ba81611d6f565b60006020828403121561198757600080fd5b81516112ba81611d6f565b6000602082840312156119a457600080fd5b813567ffffffffffffffff8111156119bb57600080fd5b8201601f810184136119cc57600080fd5b6110b48482356020840161175a565b6000602082840312156119ed57600080fd5b5035919050565b60008151808452611a0c816020860160208601611c81565b601f01601f19169290920160200192915050565b60008151611a32818560208601611c81565b9290920192915050565b600080845481600182811c915080831680611a5857607f831692505b6020808410821415611a7857634e487b7160e01b86526022600452602486fd5b818015611a8c5760018114611a9d57611aca565b60ff19861689528489019650611aca565b60008b81526020902060005b86811015611ac25781548b820152908501908301611aa9565b505084890196505b505050505050611aee611add8286611a20565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2a908301846119f4565b9695505050505050565b6020815260006112ba60208301846119f4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c3257611c32611d17565b500190565b600082611c4657611c46611d2d565b500490565b6000816000190483118215151615611c6557611c65611d17565b500290565b600082821015611c7c57611c7c611d17565b500390565b60005b83811015611c9c578181015183820152602001611c84565b83811115610df75750506000910152565b600181811c90821680611cc157607f821691505b60208210811415611ce257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cfc57611cfc611d17565b5060010190565b600082611d1257611d12611d2d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461093657600080fdfea2646970667358221220f69c8b757d13f0358c8817d8996740a30a1d31217e7d583d09b2a7cf0e80d61564736f6c63430008070033

Deployed Bytecode Sourcemap

44925:2951:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32794:305;;;;;;;;;;-1:-1:-1;32794:305:0;;;;;:::i;:::-;;:::i;:::-;;;6785:14:1;;6778:22;6760:41;;6748:2;6733:18;32794:305:0;;;;;;;;33739:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35300:221::-;;;;;;;;;;-1:-1:-1;35300:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;35300:221:0;5919:203:1;34823:411:0;;;;;;;;;;-1:-1:-1;34823:411:0;;;;;:::i;:::-;;:::i;:::-;;45176:40;;;;;;;;;;-1:-1:-1;45176:40:0;;;;;;;;47341:82;;;;;;;;;;-1:-1:-1;47407:10:0;;47341:82;;;14943:25:1;;;14931:2;14916:18;47341:82:0;14797:177:1;45138:33:0;;;;;;;;;;;;;;;;36190:339;;;;;;;;;;-1:-1:-1;36190:339:0;;;;;:::i;:::-;;:::i;46597:115::-;;;;;;;;;;-1:-1:-1;46597:115:0;;;;;:::i;:::-;;:::i;45579:99::-;;;;;;;;;;;;;:::i;46835:97::-;;;;;;;;;;;;;:::i;36600:185::-;;;;;;;;;;-1:-1:-1;36600:185:0;;;;;:::i;:::-;;:::i;46337:76::-;;;;;;;;;;-1:-1:-1;46337:76:0;;;;;:::i;:::-;;:::i;47427:96::-;;;;;;;;;;;;;:::i;33433:239::-;;;;;;;;;;-1:-1:-1;33433:239:0;;;;;:::i;:::-;;:::i;46511:80::-;;;;;;;;;;-1:-1:-1;46511:80:0;;;;;:::i;:::-;;:::i;33163:208::-;;;;;;;;;;-1:-1:-1;33163:208:0;;;;;:::i;:::-;;:::i;30292:94::-;;;;;;;;;;;;;:::i;45096:37::-;;;;;;;;;;;;;;;;29641:87;;;;;;;;;;-1:-1:-1;29714:6:0;;-1:-1:-1;;;;;29714:6:0;29641:87;;47527:92;;;;;;;;;;-1:-1:-1;47593:20:0;;;;47527:92;;33908:104;;;;;;;;;;;;;:::i;45764:463::-;;;;;;:::i;:::-;;:::i;35593:295::-;;;;;;;;;;-1:-1:-1;35593:295:0;;;;;:::i;:::-;;:::i;45058:33::-;;;;;;;;;;-1:-1:-1;45058:33:0;;;;;;36856:328;;;;;;;;;;-1:-1:-1;36856:328:0;;;;;:::i;:::-;;:::i;47260:77::-;;;;;;;;;;-1:-1:-1;47322:9:0;;47260:77;;47694:177;;;;;;;;;;-1:-1:-1;47694:177:0;;;;;:::i;:::-;;:::i;45221:32::-;;;;;;;;;;;;;:::i;35959:164::-;;;;;;;;;;-1:-1:-1;35959:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36080:25:0;;;36056:4;36080:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35959:164;30541:192;;;;;;;;;;-1:-1:-1;30541:192:0;;;;;:::i;:::-;;:::i;32794:305::-;32896:4;-1:-1:-1;;;;;;32933:40:0;;-1:-1:-1;;;32933:40:0;;:105;;-1:-1:-1;;;;;;;32990:48:0;;-1:-1:-1;;;32990:48:0;32933:105;:158;;;-1:-1:-1;;;;;;;;;;23897:40:0;;;33055:36;32913:178;32794:305;-1:-1:-1;;32794:305:0:o;33739:100::-;33793:13;33826:5;33819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33739:100;:::o;35300:221::-;35376:7;38783:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38783:16:0;35396:73;;;;-1:-1:-1;;;35396:73:0;;12293:2:1;35396:73:0;;;12275:21:1;12332:2;12312:18;;;12305:30;12371:34;12351:18;;;12344:62;-1:-1:-1;;;12422:18:1;;;12415:42;12474:19;;35396:73:0;;;;;;;;;-1:-1:-1;35489:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35489:24:0;;35300:221::o;34823:411::-;34904:13;34920:23;34935:7;34920:14;:23::i;:::-;34904:39;;34968:5;-1:-1:-1;;;;;34962:11:0;:2;-1:-1:-1;;;;;34962:11:0;;;34954:57;;;;-1:-1:-1;;;34954:57:0;;13477:2:1;34954:57:0;;;13459:21:1;13516:2;13496:18;;;13489:30;13555:34;13535:18;;;13528:62;-1:-1:-1;;;13606:18:1;;;13599:31;13647:19;;34954:57:0;13275:397:1;34954:57:0;8489:10;-1:-1:-1;;;;;35046:21:0;;;;:62;;-1:-1:-1;35071:37:0;35088:5;8489:10;35959:164;:::i;35071:37::-;35024:168;;;;-1:-1:-1;;;35024:168:0;;9935:2:1;35024:168:0;;;9917:21:1;9974:2;9954:18;;;9947:30;10013:34;9993:18;;;9986:62;10084:26;10064:18;;;10057:54;10128:19;;35024:168:0;9733:420:1;35024:168:0;35205:21;35214:2;35218:7;35205:8;:21::i;:::-;34893:341;34823:411;;:::o;36190:339::-;36385:41;8489:10;36418:7;36385:18;:41::i;:::-;36377:103;;;;-1:-1:-1;;;36377:103:0;;;;;;;:::i;:::-;36493:28;36503:4;36509:2;36513:7;36493:9;:28::i;46597:115::-;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;46676:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46597:115:::0;:::o;45579:99::-;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;45652:20:::1;::::0;;-1:-1:-1;;45628:44:0;::::1;45652:20;::::0;;::::1;45651:21;45628:44;::::0;;45579:99::o;46835:97::-;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;29714:6;;46878:48:::1;::::0;-1:-1:-1;;;;;29714:6:0;;;;46904:21:::1;46878:48:::0;::::1;;;::::0;::::1;::::0;;;46904:21;29714:6;46878:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46835:97::o:0;36600:185::-;36738:39;36755:4;36761:2;36765:7;36738:39;;;;;;;;;;;;:16;:39::i;46337:76::-;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;46391:9:::1;:16:::0;46337:76::o;47427:96::-;47476:7;47498:19;:9;9458:14;;9366:114;47498:19;47491:26;;47427:96;:::o;33433:239::-;33505:7;33541:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33541:16:0;33576:19;33568:73;;;;-1:-1:-1;;;33568:73:0;;10771:2:1;33568:73:0;;;10753:21:1;10810:2;10790:18;;;10783:30;10849:34;10829:18;;;10822:62;-1:-1:-1;;;10900:18:1;;;10893:39;10949:19;;33568:73:0;10569:405:1;46511:80:0;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;46569:10:::1;:16:::0;46511:80::o;33163:208::-;33235:7;-1:-1:-1;;;;;33263:19:0;;33255:74;;;;-1:-1:-1;;;33255:74:0;;10360:2:1;33255:74:0;;;10342:21:1;10399:2;10379:18;;;10372:30;10438:34;10418:18;;;10411:62;-1:-1:-1;;;10489:18:1;;;10482:40;10539:19;;33255:74:0;10158:406:1;33255:74:0;-1:-1:-1;;;;;;33347:16:0;;;;;:9;:16;;;;;;;33163:208::o;30292:94::-;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;30357:21:::1;30375:1;30357:9;:21::i;:::-;30292:94::o:0;33908:104::-;33964:13;33997:7;33990:14;;;;;:::i;45764:463::-;13258:1;13854:7;;:19;;13846:63;;;;-1:-1:-1;;;13846:63:0;;14639:2:1;13846:63:0;;;14621:21:1;14678:2;14658:18;;;14651:30;14717:33;14697:18;;;14690:61;14768:18;;13846:63:0;14437:355:1;13846:63:0;13258:1;13987:7;:18;45850:20:::1;::::0;::::1;;45842:46;;;::::0;-1:-1:-1;;;45842:46:0;;14297:2:1;45842:46:0::1;::::0;::::1;14279:21:1::0;14336:2;14316:18;;;14309:30;-1:-1:-1;;;14355:18:1;;;14348:43;14408:18;;45842:46:0::1;14095:337:1::0;45842:46:0::1;45911:1;45903:5;:9;:24;;;;;45925:2;45916:5;:11;;45903:24;45895:50;;;::::0;-1:-1:-1;;;45895:50:0;;7238:2:1;45895:50:0::1;::::0;::::1;7220:21:1::0;7277:2;7257:18;;;7250:30;-1:-1:-1;;;7296:18:1;;;7289:43;7349:18;;45895:50:0::1;7036:337:1::0;45895:50:0::1;45993:10;;45960:30;45970:19;:9;9458:14:::0;;9366:114;45970:19:::1;45960:5:::0;;:9:::1;:30::i;:::-;:43;45952:74;;;::::0;-1:-1:-1;;;45952:74:0;;11181:2:1;45952:74:0::1;::::0;::::1;11163:21:1::0;11220:2;11200:18;;;11193:30;-1:-1:-1;;;11239:18:1;;;11232:48;11297:18;;45952:74:0::1;10979:342:1::0;45952:74:0::1;46052:10;46041:7;29714:6:::0;;-1:-1:-1;;;;;29714:6:0;;29641:87;46041:7:::1;-1:-1:-1::0;;;;;46041:21:0::1;;:58;;;-1:-1:-1::0;46079:9:0::1;::::0;:20:::1;::::0;46093:5;46079:13:::1;:20::i;:::-;46066:9;:33;;46041:58;46033:118;;;::::0;-1:-1:-1;;;46033:118:0;;11528:2:1;46033:118:0::1;::::0;::::1;11510:21:1::0;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:33;11700:19;;46033:118:0::1;11326:399:1::0;46033:118:0::1;46162:6;46158:64;46174:5;46172:1;:7;46158:64;;;46196:17;46202:10;46196:5;:17::i;:::-;-1:-1:-1::0;46181:3:0;::::1;::::0;::::1;:::i;:::-;;;;46158:64;;;-1:-1:-1::0;;13214:1:0;14166:7;:22;45764:463::o;35593:295::-;-1:-1:-1;;;;;35696:24:0;;8489:10;35696:24;;35688:62;;;;-1:-1:-1;;;35688:62:0;;9168:2:1;35688:62:0;;;9150:21:1;9207:2;9187:18;;;9180:30;9246:27;9226:18;;;9219:55;9291:18;;35688:62:0;8966:349:1;35688:62:0;8489:10;35763:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35763:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35763:53:0;;;;;;;;;;35832:48;;6760:41:1;;;35763:42:0;;8489:10;35832:48;;6733:18:1;35832:48:0;;;;;;;35593:295;;:::o;36856:328::-;37031:41;8489:10;37064:7;37031:18;:41::i;:::-;37023:103;;;;-1:-1:-1;;;37023:103:0;;;;;;;:::i;:::-;37137:39;37151:4;37157:2;37161:7;37170:5;37137:13;:39::i;:::-;36856:328;;;;:::o;47694:177::-;47760:13;47813;47828:26;47845:8;47828:16;:26::i;:::-;47796:68;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47782:83;;47694:177;;;:::o;45221:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30541:192::-;29714:6;;-1:-1:-1;;;;;29714:6:0;8489:10;29861:23;29853:68;;;;-1:-1:-1;;;29853:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30630:22:0;::::1;30622:73;;;::::0;-1:-1:-1;;;30622:73:0;;7999:2:1;30622:73:0::1;::::0;::::1;7981:21:1::0;8038:2;8018:18;;;8011:30;8077:34;8057:18;;;8050:62;-1:-1:-1;;;8128:18:1;;;8121:36;8174:19;;30622:73:0::1;7797:402:1::0;30622:73:0::1;30706:19;30716:8;30706:9;:19::i;42676:174::-:0;42751:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42751:29:0;-1:-1:-1;;;;;42751:29:0;;;;;;;;:24;;42805:23;42751:24;42805:14;:23::i;:::-;-1:-1:-1;;;;;42796:46:0;;;;;;;;;;;42676:174;;:::o;38988:348::-;39081:4;38783:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38783:16:0;39098:73;;;;-1:-1:-1;;;39098:73:0;;9522:2:1;39098:73:0;;;9504:21:1;9561:2;9541:18;;;9534:30;9600:34;9580:18;;;9573:62;-1:-1:-1;;;9651:18:1;;;9644:42;9703:19;;39098:73:0;9320:408:1;39098:73:0;39182:13;39198:23;39213:7;39198:14;:23::i;:::-;39182:39;;39251:5;-1:-1:-1;;;;;39240:16:0;:7;-1:-1:-1;;;;;39240:16:0;;:51;;;;39284:7;-1:-1:-1;;;;;39260:31:0;:20;39272:7;39260:11;:20::i;:::-;-1:-1:-1;;;;;39260:31:0;;39240:51;:87;;;-1:-1:-1;;;;;;36080:25:0;;;36056:4;36080:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39295:32;39232:96;38988:348;-1:-1:-1;;;;38988:348:0:o;41980:578::-;42139:4;-1:-1:-1;;;;;42112:31:0;:23;42127:7;42112:14;:23::i;:::-;-1:-1:-1;;;;;42112:31:0;;42104:85;;;;-1:-1:-1;;;42104:85:0;;13067:2:1;42104:85:0;;;13049:21:1;13106:2;13086:18;;;13079:30;13145:34;13125:18;;;13118:62;-1:-1:-1;;;13196:18:1;;;13189:39;13245:19;;42104:85:0;12865:405:1;42104:85:0;-1:-1:-1;;;;;42208:16:0;;42200:65;;;;-1:-1:-1;;;42200:65:0;;8763:2:1;42200:65:0;;;8745:21:1;8802:2;8782:18;;;8775:30;8841:34;8821:18;;;8814:62;-1:-1:-1;;;8892:18:1;;;8885:34;8936:19;;42200:65:0;8561:400:1;42200:65:0;42382:29;42399:1;42403:7;42382:8;:29::i;:::-;-1:-1:-1;;;;;42424:15:0;;;;;;:9;:15;;;;;:20;;42443:1;;42424:15;:20;;42443:1;;42424:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42455:13:0;;;;;;:9;:13;;;;;:18;;42472:1;;42455:13;:18;;42472:1;;42455:18;:::i;:::-;;;;-1:-1:-1;;42484:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42484:21:0;-1:-1:-1;;;;;42484:21:0;;;;;;;;;42523:27;;42484:16;;42523:27;;;;;;;41980:578;;;:::o;30743:173::-;30818:6;;;-1:-1:-1;;;;;30835:17:0;;;-1:-1:-1;;;;;;30835:17:0;;;;;;;30868:40;;30818:6;;;30835:17;30818:6;;30868:40;;30799:16;;30868:40;30788:128;30743:173;:::o;16916:98::-;16974:7;17001:5;17005:1;17001;:5;:::i;:::-;16994:12;16916:98;-1:-1:-1;;;16916:98:0:o;17654:::-;17712:7;17739:5;17743:1;17739;:5;:::i;47078:176::-;47131:7;47146:21;:9;9577:19;;9595:1;9577:19;;;9488:127;47146:21;47174:10;47187:19;:9;9458:14;;9366:114;47187:19;47174:32;;47213:17;47223:2;47227;47213:9;:17::i;38066:315::-;38223:28;38233:4;38239:2;38243:7;38223:9;:28::i;:::-;38270:48;38293:4;38299:2;38303:7;38312:5;38270:22;:48::i;:::-;38262:111;;;;-1:-1:-1;;;38262:111:0;;;;;;;:::i;21319:723::-;21375:13;21596:10;21592:53;;-1:-1:-1;;21623:10:0;;;;;;;;;;;;-1:-1:-1;;;21623:10:0;;;;;21319:723::o;21592:53::-;21670:5;21655:12;21711:78;21718:9;;21711:78;;21744:8;;;;:::i;:::-;;-1:-1:-1;21767:10:0;;-1:-1:-1;21775:2:0;21767:10;;:::i;:::-;;;21711:78;;;21799:19;21831:6;21821:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21821:17:0;;21799:39;;21849:154;21856:10;;21849:154;;21883:11;21893:1;21883:11;;:::i;:::-;;-1:-1:-1;21952:10:0;21960:2;21952:5;:10;:::i;:::-;21939:24;;:2;:24;:::i;:::-;21926:39;;21909:6;21916;21909:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21909:56:0;;;;;;;;-1:-1:-1;21980:11:0;21989:2;21980:11;;:::i;:::-;;;21849:154;;39678:110;39754:26;39764:2;39768:7;39754:26;;;;;;;;;;;;:9;:26::i;43415:803::-;43570:4;-1:-1:-1;;;;;43591:13:0;;1067:20;1115:8;43587:624;;43627:72;;-1:-1:-1;;;43627:72:0;;-1:-1:-1;;;;;43627:36:0;;;;;:72;;8489:10;;43678:4;;43684:7;;43693:5;;43627:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43627:72:0;;;;;;;;-1:-1:-1;;43627:72:0;;;;;;;;;;;;:::i;:::-;;;43623:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43873:13:0;;43869:272;;43916:60;;-1:-1:-1;;;43916:60:0;;;;;;;:::i;43869:272::-;44091:6;44085:13;44076:6;44072:2;44068:15;44061:38;43623:533;-1:-1:-1;;;;;;43750:55:0;-1:-1:-1;;;43750:55:0;;-1:-1:-1;43743:62:0;;43587:624;-1:-1:-1;44195:4:0;43415:803;;;;;;:::o;40015:321::-;40145:18;40151:2;40155:7;40145:5;:18::i;:::-;40196:54;40227:1;40231:2;40235:7;40244:5;40196:22;:54::i;:::-;40174:154;;;;-1:-1:-1;;;40174:154:0;;;;;;;:::i;40672:382::-;-1:-1:-1;;;;;40752:16:0;;40744:61;;;;-1:-1:-1;;;40744:61:0;;11932:2:1;40744:61:0;;;11914:21:1;;;11951:18;;;11944:30;12010:34;11990:18;;;11983:62;12062:18;;40744:61:0;11730:356:1;40744:61:0;38759:4;38783:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38783:16:0;:30;40816:58;;;;-1:-1:-1;;;40816:58:0;;8406:2:1;40816:58:0;;;8388:21:1;8445:2;8425:18;;;8418:30;8484;8464:18;;;8457:58;8532:18;;40816:58:0;8204:352:1;40816:58:0;-1:-1:-1;;;;;40945:13:0;;;;;;:9;:13;;;;;:18;;40962:1;;40945:13;:18;;40962:1;;40945:18;:::i;:::-;;;;-1:-1:-1;;40974:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40974:21:0;-1:-1:-1;;;;;40974:21:0;;;;;;;;41013:33;;40974:16;;;41013:33;;40974:16;;41013:33;40672:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;15052:1;15045:14;;;15089:4;15076:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;7378:414::-;7580:2;7562:21;;;7619:2;7599:18;;;7592:30;7658:34;7653:2;7638:18;;7631:62;-1:-1:-1;;;7724:2:1;7709:18;;7702:48;7782:3;7767:19;;7378:414::o;12504:356::-;12706:2;12688:21;;;12725:18;;;12718:30;12784:34;12779:2;12764:18;;12757:62;12851:2;12836:18;;12504:356::o;13677:413::-;13879:2;13861:21;;;13918:2;13898:18;;;13891:30;13957:34;13952:2;13937:18;;13930:62;-1:-1:-1;;;14023:2:1;14008:18;;14001:47;14080:3;14065:19;;13677:413::o;15105:128::-;15145:3;15176:1;15172:6;15169:1;15166:13;15163:39;;;15182:18;;:::i;:::-;-1:-1:-1;15218:9:1;;15105:128::o;15238:120::-;15278:1;15304;15294:35;;15309:18;;:::i;:::-;-1:-1:-1;15343:9:1;;15238:120::o;15363:168::-;15403:7;15469:1;15465;15461:6;15457:14;15454:1;15451:21;15446:1;15439:9;15432:17;15428:45;15425:71;;;15476:18;;:::i;:::-;-1:-1:-1;15516:9:1;;15363:168::o;15536:125::-;15576:4;15604:1;15601;15598:8;15595:34;;;15609:18;;:::i;:::-;-1:-1:-1;15646:9:1;;15536:125::o;15666:258::-;15738:1;15748:113;15762:6;15759:1;15756:13;15748:113;;;15838:11;;;15832:18;15819:11;;;15812:39;15784:2;15777:10;15748:113;;;15879:6;15876:1;15873:13;15870:48;;;-1:-1:-1;;15914:1:1;15896:16;;15889:27;15666:258::o;15929:380::-;16008:1;16004:12;;;;16051;;;16072:61;;16126:4;16118:6;16114:17;16104:27;;16072:61;16179:2;16171:6;16168:14;16148:18;16145:38;16142:161;;;16225:10;16220:3;16216:20;16213:1;16206:31;16260:4;16257:1;16250:15;16288:4;16285:1;16278:15;16142:161;;15929:380;;;:::o;16314:135::-;16353:3;-1:-1:-1;;16374:17:1;;16371:43;;;16394:18;;:::i;:::-;-1:-1:-1;16441:1:1;16430:13;;16314:135::o;16454:112::-;16486:1;16512;16502:35;;16517:18;;:::i;:::-;-1:-1:-1;16551:9:1;;16454:112::o;16571:127::-;16632:10;16627:3;16623:20;16620:1;16613:31;16663:4;16660:1;16653:15;16687:4;16684:1;16677:15;16703:127;16764:10;16759:3;16755:20;16752:1;16745:31;16795:4;16792:1;16785:15;16819:4;16816:1;16809:15;16835:127;16896:10;16891:3;16887:20;16884:1;16877:31;16927:4;16924:1;16917:15;16951:4;16948:1;16941:15;16967:127;17028:10;17023:3;17019:20;17016:1;17009:31;17059:4;17056:1;17049:15;17083:4;17080:1;17073:15;17099:131;-1:-1:-1;;;;;;17173:32:1;;17163:43;;17153:71;;17220:1;17217;17210:12

Swarm Source

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