ETH Price: $3,825.28 (+4.84%)

Token

DogsRuleTheWorld (DRTd)
 

Overview

Max Total Supply

1,662 DRTd

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 DRTd
0xEC73bd684Ec29AD0C8524Fe86Ef0ca653a2f4f9D
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:
DogsRuleTheWorld

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-04-11
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

contract DogsRuleTheWorld is ERC721A {
    using Strings for uint256;
    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public constant MAX_MINT_PER_TX = 20;
    uint256 public price = 0.005 ether;
    address public immutable owner;
    Stage public stage;
    string public baseURI;
    string internal baseExtension = '.json';

    enum Stage {
        Pause,
        Public
    }

    modifier onlyOwner() {
        require(owner == _msgSender(), 'DRTd: not owner');
        _;
    }

    event StageChanged(Stage from, Stage to);

    constructor() ERC721A('DogsRuleTheWorld', 'DRTd') {
        owner = _msgSender();
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'DRTd: not exist');
        string memory currentBaseURI = _baseURI();
        return (
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
                : ''
        );
    }

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

    function setStage(Stage _stage) external onlyOwner {
        require(stage != _stage, 'DRTd: invalid stage.');
        Stage prevStage = stage;
        stage = _stage;
        emit StageChanged(prevStage, stage);
    }

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


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

    function mint(uint256 _quantity) external payable {
        uint256 currentSupply = totalSupply();
        require(currentSupply + _quantity <= MAX_SUPPLY, 'DRTd: exceed max supply.');
        if (stage == Stage.Public) {
            require(_quantity <= MAX_MINT_PER_TX, 'IBx3: too many mint.');
            require(msg.value >= price * _quantity, 'DRTd: insufficient fund.');
        } else {
            revert('DRTd: mint is pause.');
        }
        _safeMint(msg.sender, _quantity);
    }

    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, 'No money');
        _withdraw(msg.sender, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}('');
        require(success, 'Transfer failed');
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":false,"internalType":"enum DogsRuleTheWorld.Stage","name":"from","type":"uint8"},{"indexed":false,"internalType":"enum DogsRuleTheWorld.Stage","name":"to","type":"uint8"}],"name":"StageChanged","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":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DogsRuleTheWorld.Stage","name":"_stage","type":"uint8"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"enum DogsRuleTheWorld.Stage","name":"","type":"uint8"}],"stateMutability":"view","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6611c37937e0800060085560e0604052600560a081905264173539b7b760d91b60c09081526200003391600b9190620000ca565b503480156200004157600080fd5b50604080518082018252601081526f111bd9dcd49d5b19551a1955dbdc9b1960821b6020808301918252835180850190945260048452631114951960e21b9084015281519192916200009691600291620000ca565b508051620000ac906003906020840190620000ca565b505060008055506001600160601b03193360601b16608052620001ad565b828054620000d89062000170565b90600052602060002090601f016020900481019282620000fc576000855562000147565b82601f106200011757805160ff191683800117855562000147565b8280016001018555821562000147579182015b82811115620001475782518255916020019190600101906200012a565b506200015592915062000159565b5090565b5b808211156200015557600081556001016200015a565b600181811c908216806200018557607f821691505b60208210811415620001a757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c611c05620001e8600039600081816103310152818161066b015281816107c2015281816108500152610bb90152611c056000f3fe6080604052600436106101665760003560e01c8063853828b6116100d1578063a0712d681161008a578063c040e6b811610064578063c040e6b814610406578063c87b56dd1461042d578063ce3cd9971461044d578063e985e9c51461046d57600080fd5b8063a0712d68146103b3578063a22cb465146103c6578063b88d4fde146103e657600080fd5b8063853828b61461030a5780638da5cb5b1461031f5780638ecad7211461035357806391b7f5ed1461036857806395d89b4114610388578063a035b1fe1461039d57600080fd5b806332cb6b0c1161012357806332cb6b0c1461025f57806342842e0e1461027557806355f804b3146102955780636352211e146102b55780636c0360eb146102d557806370a08231146102ea57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046117e2565b61048d565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104df565b6040516101979190611a17565b3480156101ce57600080fd5b506101e26101dd366004611886565b610571565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046117b8565b6105b5565b005b34801561022857600080fd5b50600154600054035b604051908152602001610197565b34801561024b57600080fd5b5061021a61025a3660046116c4565b610643565b34801561026b57600080fd5b506102316108ae81565b34801561028157600080fd5b5061021a6102903660046116c4565b61064e565b3480156102a157600080fd5b5061021a6102b036600461183d565b610669565b3480156102c157600080fd5b506101e26102d0366004611886565b6106d1565b3480156102e157600080fd5b506101b56106e3565b3480156102f657600080fd5b50610231610305366004611676565b610771565b34801561031657600080fd5b5061021a6107c0565b34801561032b57600080fd5b506101e27f000000000000000000000000000000000000000000000000000000000000000081565b34801561035f57600080fd5b50610231601481565b34801561037457600080fd5b5061021a610383366004611886565b61084e565b34801561039457600080fd5b506101b561089b565b3480156103a957600080fd5b5061023160085481565b61021a6103c1366004611886565b6108aa565b3480156103d257600080fd5b5061021a6103e136600461177c565b610a28565b3480156103f257600080fd5b5061021a610401366004611700565b610abe565b34801561041257600080fd5b506009546104209060ff1681565b60405161019791906119ee565b34801561043957600080fd5b506101b5610448366004611886565b610b0f565b34801561045957600080fd5b5061021a61046836600461181c565b610bb7565b34801561047957600080fd5b5061018b610488366004611691565b610cd7565b60006001600160e01b031982166380ac58cd60e01b14806104be57506001600160e01b03198216635b5e139f60e01b145b806104d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104ee90611ae1565b80601f016020809104026020016040519081016040528092919081815260200182805461051a90611ae1565b80156105675780601f1061053c57610100808354040283529160200191610567565b820191906000526020600020905b81548152906001019060200180831161054a57829003601f168201915b5050505050905090565b600061057c82610d05565b610599576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105c0826106d1565b9050806001600160a01b0316836001600160a01b031614156105f55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061061557506106138133610cd7565b155b15610633576040516367d9dca160e11b815260040160405180910390fd5b61063e838383610d30565b505050565b61063e838383610d8c565b61063e83838360405180602001604052806000815250610abe565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146106ba5760405162461bcd60e51b81526004016106b190611a2a565b60405180910390fd5b80516106cd90600a90602084019061154b565b5050565b60006106dc82610fa2565b5192915050565b600a80546106f090611ae1565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90611ae1565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b505050505081565b60006001600160a01b03821661079a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146108085760405162461bcd60e51b81526004016106b190611a2a565b47806108415760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b60448201526064016106b1565b61084b33476110be565b50565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146108965760405162461bcd60e51b81526004016106b190611a2a565b600855565b6060600380546104ee90611ae1565b60006108b96001546000540390565b90506108ae6108c88383611a53565b11156109165760405162461bcd60e51b815260206004820152601860248201527f445254643a20657863656564206d617820737570706c792e000000000000000060448201526064016106b1565b600160095460ff16600181111561092f5761092f611b77565b14156109df57601482111561097d5760405162461bcd60e51b815260206004820152601460248201527324a13c199d103a37b79036b0b73c9036b4b73a1760611b60448201526064016106b1565b8160085461098b9190611a7f565b3410156109da5760405162461bcd60e51b815260206004820152601860248201527f445254643a20696e73756666696369656e742066756e642e000000000000000060448201526064016106b1565b610a1e565b60405162461bcd60e51b815260206004820152601460248201527322292a321d1036b4b73a1034b9903830bab9b29760611b60448201526064016106b1565b6106cd3383611153565b6001600160a01b038216331415610a525760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ac9848484610d8c565b6001600160a01b0383163b15158015610aeb5750610ae98484848461116d565b155b15610b09576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b1a82610d05565b610b585760405162461bcd60e51b815260206004820152600f60248201526e111495190e881b9bdd08195e1a5cdd608a1b60448201526064016106b1565b6000610b62611265565b90506000815111610b825760405180602001604052806000815250610bb0565b80610b8c84611274565b600b604051602001610ba0939291906118ed565b6040516020818303038152906040525b9392505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610bff5760405162461bcd60e51b81526004016106b190611a2a565b806001811115610c1157610c11611b77565b60095460ff166001811115610c2857610c28611b77565b1415610c6d5760405162461bcd60e51b815260206004820152601460248201527322292a321d1034b73b30b634b21039ba30b3b29760611b60448201526064016106b1565b6009805460ff811691839160ff191660018381811115610c8f57610c8f611b77565b02179055506009546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610ccb91849160ff16906119fc565b60405180910390a15050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b60008054821080156104d9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d9782610fa2565b80519091506000906001600160a01b0316336001600160a01b03161480610dc557508151610dc59033610cd7565b80610de0575033610dd584610571565b6001600160a01b0316145b905080610e0057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e355760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e5c57604051633a954ecd60e21b815260040160405180910390fd5b610e6c6000848460000151610d30565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f5857600054811015610f58578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156110a557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110a35780516001600160a01b031615611039579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561109e579392505050565b611039565b505b604051636f96cda160e11b815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461110b576040519150601f19603f3d011682016040523d82523d6000602084013e611110565b606091505b505090508061063e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106b1565b6106cd828260405180602001604052806000815250611372565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111a29033908990889088906004016119b1565b602060405180830381600087803b1580156111bc57600080fd5b505af19250505080156111ec575060408051601f3d908101601f191682019092526111e9918101906117ff565b60015b611247573d80801561121a576040519150601f19603f3d011682016040523d82523d6000602084013e61121f565b606091505b50805161123f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546104ee90611ae1565b6060816112985750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112c257806112ac81611b1c565b91506112bb9050600a83611a6b565b915061129c565b60008167ffffffffffffffff8111156112dd576112dd611ba3565b6040519080825280601f01601f191660200182016040528015611307576020820181803683370190505b5090505b841561125d5761131c600183611a9e565b9150611329600a86611b37565b611334906030611a53565b60f81b81838151811061134957611349611b8d565b60200101906001600160f81b031916908160001a90535061136b600a86611a6b565b945061130b565b61063e83838360016000546001600160a01b0385166113a357604051622e076360e81b815260040160405180910390fd5b836113c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561147357506001600160a01b0387163b15155b156114fc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114c4600088848060010195508861116d565b6114e1576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114795782600054146114f757600080fd5b611542565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156114fd575b50600055610f9b565b82805461155790611ae1565b90600052602060002090601f01602090048101928261157957600085556115bf565b82601f1061159257805160ff19168380011785556115bf565b828001600101855582156115bf579182015b828111156115bf5782518255916020019190600101906115a4565b506115cb9291506115cf565b5090565b5b808211156115cb57600081556001016115d0565b600067ffffffffffffffff808411156115ff576115ff611ba3565b604051601f8501601f19908116603f0116810190828211818310171561162757611627611ba3565b8160405280935085815286868601111561164057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461167157600080fd5b919050565b60006020828403121561168857600080fd5b610bb08261165a565b600080604083850312156116a457600080fd5b6116ad8361165a565b91506116bb6020840161165a565b90509250929050565b6000806000606084860312156116d957600080fd5b6116e28461165a565b92506116f06020850161165a565b9150604084013590509250925092565b6000806000806080858703121561171657600080fd5b61171f8561165a565b935061172d6020860161165a565b925060408501359150606085013567ffffffffffffffff81111561175057600080fd5b8501601f8101871361176157600080fd5b611770878235602084016115e4565b91505092959194509250565b6000806040838503121561178f57600080fd5b6117988361165a565b9150602083013580151581146117ad57600080fd5b809150509250929050565b600080604083850312156117cb57600080fd5b6117d48361165a565b946020939093013593505050565b6000602082840312156117f457600080fd5b8135610bb081611bb9565b60006020828403121561181157600080fd5b8151610bb081611bb9565b60006020828403121561182e57600080fd5b813560028110610bb057600080fd5b60006020828403121561184f57600080fd5b813567ffffffffffffffff81111561186657600080fd5b8201601f8101841361187757600080fd5b61125d848235602084016115e4565b60006020828403121561189857600080fd5b5035919050565b600081518084526118b7816020860160208601611ab5565b601f01601f19169290920160200192915050565b600281106118e957634e487b7160e01b600052602160045260246000fd5b9052565b6000845160206119008285838a01611ab5565b8551918401916119138184848a01611ab5565b8554920191600090600181811c908083168061193057607f831692505b85831081141561194e57634e487b7160e01b85526022600452602485fd5b8080156119625760018114611973576119a0565b60ff198516885283880195506119a0565b60008b81526020902060005b858110156119985781548a82015290840190880161197f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119e49083018461189f565b9695505050505050565b602081016104d982846118cb565b60408101611a0a82856118cb565b610bb060208301846118cb565b602081526000610bb0602083018461189f565b6020808252600f908201526e22292a321d103737ba1037bbb732b960891b604082015260600190565b60008219821115611a6657611a66611b4b565b500190565b600082611a7a57611a7a611b61565b500490565b6000816000190483118215151615611a9957611a99611b4b565b500290565b600082821015611ab057611ab0611b4b565b500390565b60005b83811015611ad0578181015183820152602001611ab8565b83811115610b095750506000910152565b600181811c90821680611af557607f821691505b60208210811415611b1657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3057611b30611b4b565b5060010190565b600082611b4657611b46611b61565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084b57600080fdfea2646970667358221220db65660bb27a6535d781c33b537c2029a3283ffdd26973f8e553c731490d31ae64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063853828b6116100d1578063a0712d681161008a578063c040e6b811610064578063c040e6b814610406578063c87b56dd1461042d578063ce3cd9971461044d578063e985e9c51461046d57600080fd5b8063a0712d68146103b3578063a22cb465146103c6578063b88d4fde146103e657600080fd5b8063853828b61461030a5780638da5cb5b1461031f5780638ecad7211461035357806391b7f5ed1461036857806395d89b4114610388578063a035b1fe1461039d57600080fd5b806332cb6b0c1161012357806332cb6b0c1461025f57806342842e0e1461027557806355f804b3146102955780636352211e146102b55780636c0360eb146102d557806370a08231146102ea57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023f575b600080fd5b34801561017757600080fd5b5061018b6101863660046117e2565b61048d565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104df565b6040516101979190611a17565b3480156101ce57600080fd5b506101e26101dd366004611886565b610571565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046117b8565b6105b5565b005b34801561022857600080fd5b50600154600054035b604051908152602001610197565b34801561024b57600080fd5b5061021a61025a3660046116c4565b610643565b34801561026b57600080fd5b506102316108ae81565b34801561028157600080fd5b5061021a6102903660046116c4565b61064e565b3480156102a157600080fd5b5061021a6102b036600461183d565b610669565b3480156102c157600080fd5b506101e26102d0366004611886565b6106d1565b3480156102e157600080fd5b506101b56106e3565b3480156102f657600080fd5b50610231610305366004611676565b610771565b34801561031657600080fd5b5061021a6107c0565b34801561032b57600080fd5b506101e27f000000000000000000000000f440930e412ac381a26f977e942e05665ceb27ed81565b34801561035f57600080fd5b50610231601481565b34801561037457600080fd5b5061021a610383366004611886565b61084e565b34801561039457600080fd5b506101b561089b565b3480156103a957600080fd5b5061023160085481565b61021a6103c1366004611886565b6108aa565b3480156103d257600080fd5b5061021a6103e136600461177c565b610a28565b3480156103f257600080fd5b5061021a610401366004611700565b610abe565b34801561041257600080fd5b506009546104209060ff1681565b60405161019791906119ee565b34801561043957600080fd5b506101b5610448366004611886565b610b0f565b34801561045957600080fd5b5061021a61046836600461181c565b610bb7565b34801561047957600080fd5b5061018b610488366004611691565b610cd7565b60006001600160e01b031982166380ac58cd60e01b14806104be57506001600160e01b03198216635b5e139f60e01b145b806104d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104ee90611ae1565b80601f016020809104026020016040519081016040528092919081815260200182805461051a90611ae1565b80156105675780601f1061053c57610100808354040283529160200191610567565b820191906000526020600020905b81548152906001019060200180831161054a57829003601f168201915b5050505050905090565b600061057c82610d05565b610599576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105c0826106d1565b9050806001600160a01b0316836001600160a01b031614156105f55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061061557506106138133610cd7565b155b15610633576040516367d9dca160e11b815260040160405180910390fd5b61063e838383610d30565b505050565b61063e838383610d8c565b61063e83838360405180602001604052806000815250610abe565b7f000000000000000000000000f440930e412ac381a26f977e942e05665ceb27ed6001600160a01b031633146106ba5760405162461bcd60e51b81526004016106b190611a2a565b60405180910390fd5b80516106cd90600a90602084019061154b565b5050565b60006106dc82610fa2565b5192915050565b600a80546106f090611ae1565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90611ae1565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b505050505081565b60006001600160a01b03821661079a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b7f000000000000000000000000f440930e412ac381a26f977e942e05665ceb27ed6001600160a01b031633146108085760405162461bcd60e51b81526004016106b190611a2a565b47806108415760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b60448201526064016106b1565b61084b33476110be565b50565b7f000000000000000000000000f440930e412ac381a26f977e942e05665ceb27ed6001600160a01b031633146108965760405162461bcd60e51b81526004016106b190611a2a565b600855565b6060600380546104ee90611ae1565b60006108b96001546000540390565b90506108ae6108c88383611a53565b11156109165760405162461bcd60e51b815260206004820152601860248201527f445254643a20657863656564206d617820737570706c792e000000000000000060448201526064016106b1565b600160095460ff16600181111561092f5761092f611b77565b14156109df57601482111561097d5760405162461bcd60e51b815260206004820152601460248201527324a13c199d103a37b79036b0b73c9036b4b73a1760611b60448201526064016106b1565b8160085461098b9190611a7f565b3410156109da5760405162461bcd60e51b815260206004820152601860248201527f445254643a20696e73756666696369656e742066756e642e000000000000000060448201526064016106b1565b610a1e565b60405162461bcd60e51b815260206004820152601460248201527322292a321d1036b4b73a1034b9903830bab9b29760611b60448201526064016106b1565b6106cd3383611153565b6001600160a01b038216331415610a525760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ac9848484610d8c565b6001600160a01b0383163b15158015610aeb5750610ae98484848461116d565b155b15610b09576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b1a82610d05565b610b585760405162461bcd60e51b815260206004820152600f60248201526e111495190e881b9bdd08195e1a5cdd608a1b60448201526064016106b1565b6000610b62611265565b90506000815111610b825760405180602001604052806000815250610bb0565b80610b8c84611274565b600b604051602001610ba0939291906118ed565b6040516020818303038152906040525b9392505050565b7f000000000000000000000000f440930e412ac381a26f977e942e05665ceb27ed6001600160a01b03163314610bff5760405162461bcd60e51b81526004016106b190611a2a565b806001811115610c1157610c11611b77565b60095460ff166001811115610c2857610c28611b77565b1415610c6d5760405162461bcd60e51b815260206004820152601460248201527322292a321d1034b73b30b634b21039ba30b3b29760611b60448201526064016106b1565b6009805460ff811691839160ff191660018381811115610c8f57610c8f611b77565b02179055506009546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610ccb91849160ff16906119fc565b60405180910390a15050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b60008054821080156104d9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d9782610fa2565b80519091506000906001600160a01b0316336001600160a01b03161480610dc557508151610dc59033610cd7565b80610de0575033610dd584610571565b6001600160a01b0316145b905080610e0057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e355760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e5c57604051633a954ecd60e21b815260040160405180910390fd5b610e6c6000848460000151610d30565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f5857600054811015610f58578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156110a557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110a35780516001600160a01b031615611039579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561109e579392505050565b611039565b505b604051636f96cda160e11b815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461110b576040519150601f19603f3d011682016040523d82523d6000602084013e611110565b606091505b505090508061063e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016106b1565b6106cd828260405180602001604052806000815250611372565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111a29033908990889088906004016119b1565b602060405180830381600087803b1580156111bc57600080fd5b505af19250505080156111ec575060408051601f3d908101601f191682019092526111e9918101906117ff565b60015b611247573d80801561121a576040519150601f19603f3d011682016040523d82523d6000602084013e61121f565b606091505b50805161123f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546104ee90611ae1565b6060816112985750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112c257806112ac81611b1c565b91506112bb9050600a83611a6b565b915061129c565b60008167ffffffffffffffff8111156112dd576112dd611ba3565b6040519080825280601f01601f191660200182016040528015611307576020820181803683370190505b5090505b841561125d5761131c600183611a9e565b9150611329600a86611b37565b611334906030611a53565b60f81b81838151811061134957611349611b8d565b60200101906001600160f81b031916908160001a90535061136b600a86611a6b565b945061130b565b61063e83838360016000546001600160a01b0385166113a357604051622e076360e81b815260040160405180910390fd5b836113c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561147357506001600160a01b0387163b15155b156114fc575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114c4600088848060010195508861116d565b6114e1576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114795782600054146114f757600080fd5b611542565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156114fd575b50600055610f9b565b82805461155790611ae1565b90600052602060002090601f01602090048101928261157957600085556115bf565b82601f1061159257805160ff19168380011785556115bf565b828001600101855582156115bf579182015b828111156115bf5782518255916020019190600101906115a4565b506115cb9291506115cf565b5090565b5b808211156115cb57600081556001016115d0565b600067ffffffffffffffff808411156115ff576115ff611ba3565b604051601f8501601f19908116603f0116810190828211818310171561162757611627611ba3565b8160405280935085815286868601111561164057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461167157600080fd5b919050565b60006020828403121561168857600080fd5b610bb08261165a565b600080604083850312156116a457600080fd5b6116ad8361165a565b91506116bb6020840161165a565b90509250929050565b6000806000606084860312156116d957600080fd5b6116e28461165a565b92506116f06020850161165a565b9150604084013590509250925092565b6000806000806080858703121561171657600080fd5b61171f8561165a565b935061172d6020860161165a565b925060408501359150606085013567ffffffffffffffff81111561175057600080fd5b8501601f8101871361176157600080fd5b611770878235602084016115e4565b91505092959194509250565b6000806040838503121561178f57600080fd5b6117988361165a565b9150602083013580151581146117ad57600080fd5b809150509250929050565b600080604083850312156117cb57600080fd5b6117d48361165a565b946020939093013593505050565b6000602082840312156117f457600080fd5b8135610bb081611bb9565b60006020828403121561181157600080fd5b8151610bb081611bb9565b60006020828403121561182e57600080fd5b813560028110610bb057600080fd5b60006020828403121561184f57600080fd5b813567ffffffffffffffff81111561186657600080fd5b8201601f8101841361187757600080fd5b61125d848235602084016115e4565b60006020828403121561189857600080fd5b5035919050565b600081518084526118b7816020860160208601611ab5565b601f01601f19169290920160200192915050565b600281106118e957634e487b7160e01b600052602160045260246000fd5b9052565b6000845160206119008285838a01611ab5565b8551918401916119138184848a01611ab5565b8554920191600090600181811c908083168061193057607f831692505b85831081141561194e57634e487b7160e01b85526022600452602485fd5b8080156119625760018114611973576119a0565b60ff198516885283880195506119a0565b60008b81526020902060005b858110156119985781548a82015290840190880161197f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119e49083018461189f565b9695505050505050565b602081016104d982846118cb565b60408101611a0a82856118cb565b610bb060208301846118cb565b602081526000610bb0602083018461189f565b6020808252600f908201526e22292a321d103737ba1037bbb732b960891b604082015260600190565b60008219821115611a6657611a66611b4b565b500190565b600082611a7a57611a7a611b61565b500490565b6000816000190483118215151615611a9957611a99611b4b565b500290565b600082821015611ab057611ab0611b4b565b500390565b60005b83811015611ad0578181015183820152602001611ab8565b83811115610b095750506000910152565b600181811c90821680611af557607f821691505b60208210811415611b1657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3057611b30611b4b565b5060010190565b600082611b4657611b46611b61565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084b57600080fdfea2646970667358221220db65660bb27a6535d781c33b537c2029a3283ffdd26973f8e553c731490d31ae64736f6c63430008070033

Deployed Bytecode Sourcemap

41317:2531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23867:305;;;;;;;;;;-1:-1:-1;23867:305:0;;;;;:::i;:::-;;:::i;:::-;;;7422:14:1;;7415:22;7397:41;;7385:2;7370:18;23867:305:0;;;;;;;;27252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28755:204::-;;;;;;;;;;-1:-1:-1;28755:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6720:32:1;;;6702:51;;6690:2;6675:18;28755:204:0;6556:203:1;28318:371:0;;;;;;;;;;-1:-1:-1;28318:371:0;;;;;:::i;:::-;;:::i;:::-;;23116:303;;;;;;;;;;-1:-1:-1;23370:12:0;;23160:7;23354:13;:28;23116:303;;;11444:25:1;;;11432:2;11417:18;23116:303:0;11298:177:1;29612:170:0;;;;;;;;;;-1:-1:-1;29612:170:0;;;;;:::i;:::-;;:::i;41393:41::-;;;;;;;;;;;;41430:4;41393:41;;29853:185;;;;;;;;;;-1:-1:-1;29853:185:0;;;;;:::i;:::-;;:::i;42832:106::-;;;;;;;;;;-1:-1:-1;42832:106:0;;;;;:::i;:::-;;:::i;27061:124::-;;;;;;;;;;-1:-1:-1;27061:124:0;;;;;:::i;:::-;;:::i;41595:21::-;;;;;;;;;;;;;:::i;24236:206::-;;;;;;;;;;-1:-1:-1;24236:206:0;;;;;:::i;:::-;;:::i;43460:198::-;;;;;;;;;;;;;:::i;41533:30::-;;;;;;;;;;;;;;;41441:44;;;;;;;;;;;;41483:2;41441:44;;42736:86;;;;;;;;;;-1:-1:-1;42736:86:0;;;;;:::i;:::-;;:::i;27421:104::-;;;;;;;;;;;;;:::i;41492:34::-;;;;;;;;;;;;;;;;42946:506;;;;;;:::i;:::-;;:::i;29031:279::-;;;;;;;;;;-1:-1:-1;29031:279:0;;;;;:::i;:::-;;:::i;30109:369::-;;;;;;;;;;-1:-1:-1;30109:369:0;;;;;:::i;:::-;;:::i;41570:18::-;;;;;;;;;;-1:-1:-1;41570:18:0;;;;;;;;;;;;;;;:::i;41985:396::-;;;;;;;;;;-1:-1:-1;41985:396:0;;;;;:::i;:::-;;:::i;42505:223::-;;;;;;;;;;-1:-1:-1;42505:223:0;;;;;:::i;:::-;;:::i;29381:164::-;;;;;;;;;;-1:-1:-1;29381:164:0;;;;;:::i;:::-;;:::i;23867:305::-;23969:4;-1:-1:-1;;;;;;24006:40:0;;-1:-1:-1;;;24006:40:0;;:105;;-1:-1:-1;;;;;;;24063:48:0;;-1:-1:-1;;;24063:48:0;24006:105;:158;;;-1:-1:-1;;;;;;;;;;19435:40:0;;;24128:36;23986:178;23867:305;-1:-1:-1;;23867:305:0:o;27252:100::-;27306:13;27339:5;27332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27252:100;:::o;28755:204::-;28823:7;28848:16;28856:7;28848;:16::i;:::-;28843:64;;28873:34;;-1:-1:-1;;;28873:34:0;;;;;;;;;;;28843:64;-1:-1:-1;28927:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28927:24:0;;28755:204::o;28318:371::-;28391:13;28407:24;28423:7;28407:15;:24::i;:::-;28391:40;;28452:5;-1:-1:-1;;;;;28446:11:0;:2;-1:-1:-1;;;;;28446:11:0;;28442:48;;;28466:24;;-1:-1:-1;;;28466:24:0;;;;;;;;;;;28442:48;18494:10;-1:-1:-1;;;;;28507:21:0;;;;;;:63;;-1:-1:-1;28533:37:0;28550:5;18494:10;29381:164;:::i;28533:37::-;28532:38;28507:63;28503:138;;;28594:35;;-1:-1:-1;;;28594:35:0;;;;;;;;;;;28503:138;28653:28;28662:2;28666:7;28675:5;28653:8;:28::i;:::-;28380:309;28318:371;;:::o;29612:170::-;29746:28;29756:4;29762:2;29766:7;29746:9;:28::i;29853:185::-;29991:39;30008:4;30014:2;30018:7;29991:39;;;;;;;;;;;;:16;:39::i;42832:106::-;41770:5;-1:-1:-1;;;;;41770:21:0;18494:10;41770:21;41762:49;;;;-1:-1:-1;;;41762:49:0;;;;;;;:::i;:::-;;;;;;;;;42909:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42832:106:::0;:::o;27061:124::-;27125:7;27152:20;27164:7;27152:11;:20::i;:::-;:25;;27061:124;-1:-1:-1;;27061:124:0:o;41595:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24236:206::-;24300:7;-1:-1:-1;;;;;24324:19:0;;24320:60;;24352:28;;-1:-1:-1;;;24352:28:0;;;;;;;;;;;24320:60;-1:-1:-1;;;;;;24406:19:0;;;;;:12;:19;;;;;:27;;;;24236:206::o;43460:198::-;41770:5;-1:-1:-1;;;;;41770:21:0;18494:10;41770:21;41762:49;;;;-1:-1:-1;;;41762:49:0;;;;;;;:::i;:::-;43531:21:::1;43571:11:::0;43563:32:::1;;;::::0;-1:-1:-1;;;43563:32:0;;9773:2:1;43563:32:0::1;::::0;::::1;9755:21:1::0;9812:1;9792:18;;;9785:29;-1:-1:-1;;;9830:18:1;;;9823:38;9878:18;;43563:32:0::1;9571:331:1::0;43563:32:0::1;43606:44;43616:10;43628:21;43606:9;:44::i;:::-;43502:156;43460:198::o:0;42736:86::-;41770:5;-1:-1:-1;;;;;41770:21:0;18494:10;41770:21;41762:49;;;;-1:-1:-1;;;41762:49:0;;;;;;;:::i;:::-;42800:5:::1;:14:::0;42736:86::o;27421:104::-;27477:13;27510:7;27503:14;;;;;:::i;42946:506::-;43007:21;43031:13;23370:12;;23160:7;23354:13;:28;;23116:303;43031:13;43007:37;-1:-1:-1;41430:4:0;43063:25;43079:9;43007:37;43063:25;:::i;:::-;:39;;43055:76;;;;-1:-1:-1;;;43055:76:0;;9076:2:1;43055:76:0;;;9058:21:1;9115:2;9095:18;;;9088:30;9154:26;9134:18;;;9127:54;9198:18;;43055:76:0;8874:348:1;43055:76:0;43155:12;43146:5;;;;;:21;;;;;;;:::i;:::-;;43142:260;;;41483:2;43192:9;:28;;43184:61;;;;-1:-1:-1;;;43184:61:0;;11151:2:1;43184:61:0;;;11133:21:1;11190:2;11170:18;;;11163:30;-1:-1:-1;;;11209:18:1;;;11202:50;11269:18;;43184:61:0;10949:344:1;43184:61:0;43289:9;43281:5;;:17;;;;:::i;:::-;43268:9;:30;;43260:67;;;;-1:-1:-1;;;43260:67:0;;8379:2:1;43260:67:0;;;8361:21:1;8418:2;8398:18;;;8391:30;8457:26;8437:18;;;8430:54;8501:18;;43260:67:0;8177:348:1;43260:67:0;43142:260;;;43360:30;;-1:-1:-1;;;43360:30:0;;10109:2:1;43360:30:0;;;10091:21:1;10148:2;10128:18;;;10121:30;-1:-1:-1;;;10167:18:1;;;10160:50;10227:18;;43360:30:0;9907:344:1;43142:260:0;43412:32;43422:10;43434:9;43412;:32::i;29031:279::-;-1:-1:-1;;;;;29122:24:0;;18494:10;29122:24;29118:54;;;29155:17;;-1:-1:-1;;;29155:17:0;;;;;;;;;;;29118:54;18494:10;29185:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29185:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29185:53:0;;;;;;;;;;29254:48;;7397:41:1;;;29185:42:0;;18494:10;29254:48;;7370:18:1;29254:48:0;;;;;;;29031:279;;:::o;30109:369::-;30276:28;30286:4;30292:2;30296:7;30276:9;:28::i;:::-;-1:-1:-1;;;;;30319:13:0;;10866:20;10914:8;;30319:76;;;;;30339:56;30370:4;30376:2;30380:7;30389:5;30339:30;:56::i;:::-;30338:57;30319:76;30315:156;;;30419:40;;-1:-1:-1;;;30419:40:0;;;;;;;;;;;30315:156;30109:369;;;;:::o;41985:396::-;42058:13;42092:16;42100:7;42092;:16::i;:::-;42084:44;;;;-1:-1:-1;;;42084:44:0;;10458:2:1;42084:44:0;;;10440:21:1;10497:2;10477:18;;;10470:30;-1:-1:-1;;;10516:18:1;;;10509:45;10571:18;;42084:44:0;10256:339:1;42084:44:0;42139:28;42170:10;:8;:10::i;:::-;42139:41;;42244:1;42219:14;42213:28;:32;:149;;;;;;;;;;;;;;;;;42289:14;42305:18;:7;:16;:18::i;:::-;42325:13;42272:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42213:149;42191:182;41985:396;-1:-1:-1;;;41985:396:0:o;42505:223::-;41770:5;-1:-1:-1;;;;;41770:21:0;18494:10;41770:21;41762:49;;;;-1:-1:-1;;;41762:49:0;;;;;;;:::i;:::-;42584:6:::1;42575:15;;;;;;;;:::i;:::-;:5;::::0;::::1;;::::0;:15;::::1;;;;;;:::i;:::-;;;42567:48;;;::::0;-1:-1:-1;;;42567:48:0;;10802:2:1;42567:48:0::1;::::0;::::1;10784:21:1::0;10841:2;10821:18;;;10814:30;-1:-1:-1;;;10860:18:1;;;10853:50;10920:18;;42567:48:0::1;10600:344:1::0;42567:48:0::1;42644:5;::::0;;::::1;::::0;::::1;::::0;42668:6;;-1:-1:-1;;42660:14:0::1;42644:5:::0;42668:6;42660:14;;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;42714:5:0::1;::::0;42690:30:::1;::::0;::::1;::::0;::::1;::::0;42703:9;;42714:5:::1;;::::0;42690:30:::1;:::i;:::-;;;;;;;;42556:172;42505:223:::0;:::o;29381:164::-;-1:-1:-1;;;;;29502:25:0;;;29478:4;29502:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29381:164::o;30733:174::-;30790:4;30854:13;;30844:7;:23;30814:85;;;;-1:-1:-1;;30872:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;30872:27:0;;;;30871:28;;30733:174::o;38331:196::-;38446:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38446:29:0;-1:-1:-1;;;;;38446:29:0;;;;;;;;;38491:28;;38446:24;;38491:28;;;;;;;38331:196;;;:::o;33833:2112::-;33948:35;33986:20;33998:7;33986:11;:20::i;:::-;34061:18;;33948:58;;-1:-1:-1;34019:22:0;;-1:-1:-1;;;;;34045:34:0;18494:10;-1:-1:-1;;;;;34045:34:0;;:101;;;-1:-1:-1;34113:18:0;;34096:50;;18494:10;29381:164;:::i;34096:50::-;34045:154;;;-1:-1:-1;18494:10:0;34163:20;34175:7;34163:11;:20::i;:::-;-1:-1:-1;;;;;34163:36:0;;34045:154;34019:181;;34218:17;34213:66;;34244:35;;-1:-1:-1;;;34244:35:0;;;;;;;;;;;34213:66;34316:4;-1:-1:-1;;;;;34294:26:0;:13;:18;;;-1:-1:-1;;;;;34294:26:0;;34290:67;;34329:28;;-1:-1:-1;;;34329:28:0;;;;;;;;;;;34290:67;-1:-1:-1;;;;;34372:16:0;;34368:52;;34397:23;;-1:-1:-1;;;34397:23:0;;;;;;;;;;;34368:52;34541:49;34558:1;34562:7;34571:13;:18;;;34541:8;:49::i;:::-;-1:-1:-1;;;;;34886:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34886:31:0;;;;;;;-1:-1:-1;;34886:31:0;;;;;;;34932:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34932:29:0;;;;;;;;;;;34978:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35023:61:0;;;;-1:-1:-1;;;35068:15:0;35023:61;;;;;;;;;;;35358:11;;;35388:24;;;;;:29;35358:11;;35388:29;35384:445;;35613:13;;35599:11;:27;35595:219;;;35683:18;;;35651:24;;;:11;:24;;;;;;;;:50;;35766:28;;;;35724:70;;-1:-1:-1;;;35724:70:0;-1:-1:-1;;;;;;35724:70:0;;;-1:-1:-1;;;;;35651:50:0;;;35724:70;;;;;;;35595:219;34861:979;35876:7;35872:2;-1:-1:-1;;;;;35857:27:0;35866:4;-1:-1:-1;;;;;35857:27:0;;;;;;;;;;;35895:42;33937:2008;;33833:2112;;;:::o;25891:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26001:7:0;26084:13;;26077:4;:20;26046:886;;;26118:31;26152:17;;;:11;:17;;;;;;;;;26118:51;;;;;;;;;-1:-1:-1;;;;;26118:51:0;;;;-1:-1:-1;;;26118:51:0;;;;;;;;;;;-1:-1:-1;;;26118:51:0;;;;;;;;;;;;;;26188:729;;26238:14;;-1:-1:-1;;;;;26238:28:0;;26234:101;;26302:9;25891:1108;-1:-1:-1;;;25891:1108:0:o;26234:101::-;-1:-1:-1;;;26677:6:0;26722:17;;;;:11;:17;;;;;;;;;26710:29;;;;;;;;;-1:-1:-1;;;;;26710:29:0;;;;;-1:-1:-1;;;26710:29:0;;;;;;;;;;;-1:-1:-1;;;26710:29:0;;;;;;;;;;;;;26770:28;26766:109;;26838:9;25891:1108;-1:-1:-1;;;25891:1108:0:o;26766:109::-;26637:261;;;26099:833;26046:886;26960:31;;-1:-1:-1;;;26960:31:0;;;;;;;;;;;43666:179;43740:12;43758:8;-1:-1:-1;;;;;43758:13:0;43779:7;43758:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43739:52;;;43810:7;43802:35;;;;-1:-1:-1;;;43802:35:0;;8732:2:1;43802:35:0;;;8714:21:1;8771:2;8751:18;;;8744:30;-1:-1:-1;;;8790:18:1;;;8783:45;8845:18;;43802:35:0;8530:339:1;30915:104:0;30984:27;30994:2;30998:8;30984:27;;;;;;;;;;;;:9;:27::i;39019:667::-;39203:72;;-1:-1:-1;;;39203:72:0;;39182:4;;-1:-1:-1;;;;;39203:36:0;;;;;:72;;18494:10;;39254:4;;39260:7;;39269:5;;39203:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39203:72:0;;;;;;;;-1:-1:-1;;39203:72:0;;;;;;;;;;;;:::i;:::-;;;39199:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39437:13:0;;39433:235;;39483:40;;-1:-1:-1;;;39483:40:0;;;;;;;;;;;39433:235;39626:6;39620:13;39611:6;39607:2;39603:15;39596:38;39199:480;-1:-1:-1;;;;;;39322:55:0;-1:-1:-1;;;39322:55:0;;-1:-1:-1;39199:480:0;39019:667;;;;;;:::o;42389:108::-;42449:13;42482:7;42475:14;;;;;:::i;288:723::-;344:13;565:10;561:53;;-1:-1:-1;;592:10:0;;;;;;;;;;;;-1:-1:-1;;;592:10:0;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:0;;-1:-1:-1;744:2:0;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:0;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:0;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:0;;;;;;;;-1:-1:-1;949:11:0;958:2;949:11;;:::i;:::-;;;818:154;;31382:163;31505:32;31511:2;31515:8;31525:5;31532:4;31943:20;31966:13;-1:-1:-1;;;;;31994:16:0;;31990:48;;32019:19;;-1:-1:-1;;;32019:19:0;;;;;;;;;;;31990:48;32053:13;32049:44;;32075:18;;-1:-1:-1;;;32075:18:0;;;;;;;;;;;32049:44;-1:-1:-1;;;;;32444:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32503:49:0;;32444:44;;;;;;;;32503:49;;;;-1:-1:-1;;32444:44:0;;;;;;32503:49;;;;;;;;;;;;;;;;32569:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32619:66:0;;;;-1:-1:-1;;;32669:15:0;32619:66;;;;;;;;;;32569:25;32766:23;;;32810:4;:23;;;;-1:-1:-1;;;;;;32818:13:0;;10866:20;10914:8;;32818:15;32806:641;;;32854:314;32885:38;;32910:12;;-1:-1:-1;;;;;32885:38:0;;;32902:1;;32885:38;;32902:1;;32885:38;32951:69;32990:1;32994:2;32998:14;;;;;;33014:5;32951:30;:69::i;:::-;32946:174;;33056:40;;-1:-1:-1;;;33056:40:0;;;;;;;;;;;32946:174;33163:3;33147:12;:19;;32854:314;;33249:12;33232:13;;:29;33228:43;;33263:8;;;33228:43;32806:641;;;33312:120;33343:40;;33368:14;;;;;-1:-1:-1;;;;;33343:40:0;;;33360:1;;33343:40;;33360:1;;33343:40;33427:3;33411:12;:19;;33312:120;;32806:641;-1:-1:-1;33461:13:0;:28;33511:60;30109:369;-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:266::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3580:9;3567:23;3619:1;3612:5;3609:12;3599:40;;3635:1;3632;3625:12;3674:450;3743:6;3796:2;3784:9;3775:7;3771:23;3767:32;3764:52;;;3812:1;3809;3802:12;3764:52;3852:9;3839:23;3885:18;3877:6;3874:30;3871:50;;;3917:1;3914;3907:12;3871:50;3940:22;;3993:4;3985:13;;3981:27;-1:-1:-1;3971:55:1;;4022:1;4019;4012:12;3971:55;4045:73;4110:7;4105:2;4092:16;4087:2;4083;4079:11;4045:73;:::i;4129:180::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;-1:-1:-1;4280:23:1;;4129:180;-1:-1:-1;4129:180:1:o;4314:257::-;4355:3;4393:5;4387:12;4420:6;4415:3;4408:19;4436:63;4492:6;4485:4;4480:3;4476:14;4469:4;4462:5;4458:16;4436:63;:::i;:::-;4553:2;4532:15;-1:-1:-1;;4528:29:1;4519:39;;;;4560:4;4515:50;;4314:257;-1:-1:-1;;4314:257:1:o;4576:233::-;4653:1;4646:5;4643:12;4633:143;;4698:10;4693:3;4689:20;4686:1;4679:31;4733:4;4730:1;4723:15;4761:4;4758:1;4751:15;4633:143;4785:18;;4576:233::o;4814:1527::-;5038:3;5076:6;5070:13;5102:4;5115:51;5159:6;5154:3;5149:2;5141:6;5137:15;5115:51;:::i;:::-;5229:13;;5188:16;;;;5251:55;5229:13;5188:16;5273:15;;;5251:55;:::i;:::-;5395:13;;5328:20;;;5368:1;;5455;5477:18;;;;5530;;;;5557:93;;5635:4;5625:8;5621:19;5609:31;;5557:93;5698:2;5688:8;5685:16;5665:18;5662:40;5659:167;;;-1:-1:-1;;;5725:33:1;;5781:4;5778:1;5771:15;5811:4;5732:3;5799:17;5659:167;5842:18;5869:110;;;;5993:1;5988:328;;;;5835:481;;5869:110;-1:-1:-1;;5904:24:1;;5890:39;;5949:20;;;;-1:-1:-1;5869:110:1;;5988:328;11553:1;11546:14;;;11590:4;11577:18;;6083:1;6097:169;6111:8;6108:1;6105:15;6097:169;;;6193:14;;6178:13;;;6171:37;6236:16;;;;6128:10;;6097:169;;;6101:3;;6297:8;6290:5;6286:20;6279:27;;5835:481;-1:-1:-1;6332:3:1;;4814:1527;-1:-1:-1;;;;;;;;;;;4814:1527:1:o;6764:488::-;-1:-1:-1;;;;;7033:15:1;;;7015:34;;7085:15;;7080:2;7065:18;;7058:43;7132:2;7117:18;;7110:34;;;7180:3;7175:2;7160:18;;7153:31;;;6958:4;;7201:45;;7226:19;;7218:6;7201:45;:::i;:::-;7193:53;6764:488;-1:-1:-1;;;;;;6764:488:1:o;7449:200::-;7591:2;7576:18;;7603:40;7580:9;7625:6;7603:40;:::i;7654:294::-;7832:2;7817:18;;7844:40;7821:9;7866:6;7844:40;:::i;:::-;7893:49;7938:2;7927:9;7923:18;7915:6;7893:49;:::i;7953:219::-;8102:2;8091:9;8084:21;8065:4;8122:44;8162:2;8151:9;8147:18;8139:6;8122:44;:::i;9227:339::-;9429:2;9411:21;;;9468:2;9448:18;;;9441:30;-1:-1:-1;;;9502:2:1;9487:18;;9480:45;9557:2;9542:18;;9227:339::o;11606:128::-;11646:3;11677:1;11673:6;11670:1;11667:13;11664:39;;;11683:18;;:::i;:::-;-1:-1:-1;11719:9:1;;11606:128::o;11739:120::-;11779:1;11805;11795:35;;11810:18;;:::i;:::-;-1:-1:-1;11844:9:1;;11739:120::o;11864:168::-;11904:7;11970:1;11966;11962:6;11958:14;11955:1;11952:21;11947:1;11940:9;11933:17;11929:45;11926:71;;;11977:18;;:::i;:::-;-1:-1:-1;12017:9:1;;11864:168::o;12037:125::-;12077:4;12105:1;12102;12099:8;12096:34;;;12110:18;;:::i;:::-;-1:-1:-1;12147:9:1;;12037:125::o;12167:258::-;12239:1;12249:113;12263:6;12260:1;12257:13;12249:113;;;12339:11;;;12333:18;12320:11;;;12313:39;12285:2;12278:10;12249:113;;;12380:6;12377:1;12374:13;12371:48;;;-1:-1:-1;;12415:1:1;12397:16;;12390:27;12167:258::o;12430:380::-;12509:1;12505:12;;;;12552;;;12573:61;;12627:4;12619:6;12615:17;12605:27;;12573:61;12680:2;12672:6;12669:14;12649:18;12646:38;12643:161;;;12726:10;12721:3;12717:20;12714:1;12707:31;12761:4;12758:1;12751:15;12789:4;12786:1;12779:15;12643:161;;12430:380;;;:::o;12815:135::-;12854:3;-1:-1:-1;;12875:17:1;;12872:43;;;12895:18;;:::i;:::-;-1:-1:-1;12942:1:1;12931:13;;12815:135::o;12955:112::-;12987:1;13013;13003:35;;13018:18;;:::i;:::-;-1:-1:-1;13052:9:1;;12955:112::o;13072:127::-;13133:10;13128:3;13124:20;13121:1;13114:31;13164:4;13161:1;13154:15;13188:4;13185:1;13178:15;13204:127;13265:10;13260:3;13256:20;13253:1;13246:31;13296:4;13293:1;13286:15;13320:4;13317:1;13310:15;13336:127;13397:10;13392:3;13388:20;13385:1;13378:31;13428:4;13425:1;13418:15;13452:4;13449:1;13442:15;13468:127;13529:10;13524:3;13520:20;13517:1;13510:31;13560:4;13557:1;13550:15;13584:4;13581:1;13574:15;13600:127;13661:10;13656:3;13652:20;13649:1;13642:31;13692:4;13689:1;13682:15;13716:4;13713:1;13706:15;13732:131;-1:-1:-1;;;;;;13806:32:1;;13796:43;;13786:71;;13853:1;13850;13843:12

Swarm Source

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