ETH Price: $3,303.16 (-3.18%)
Gas: 19 Gwei

Token

DogsRuleTheWorld (DRTd)
 

Overview

Max Total Supply

1,147 DRTd

Holders

153

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
dontundercutme.eth
Balance
5 DRTd
0x4d4c0cbb2d169a96a9b20ee4e36aec807a07eabe
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-07
*/

// 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 freeSupply = 222;
    uint256 public constant MAX_MINT_PER_TX = 20;
    uint256 public constant MAX_MINT_PER_TX_FREE = 5;
    uint256 public price = 0.0066 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 setFreeSupply(uint256 _freeSupply) external onlyOwner {
        freeSupply = _freeSupply;
    }

    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) {
            if (currentSupply < freeSupply) {
                require(
                    _quantity <= MAX_MINT_PER_TX_FREE,
                    "DRTd: too many free mint."
                );
            } else {
                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_MINT_PER_TX_FREE","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":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","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"}]

60de600855661772aa3f84800060095560e0604052600560a081905264173539b7b760d91b60c09081526200003891600c9190620000cf565b503480156200004657600080fd5b50604080518082018252601081526f111bd9dcd49d5b19551a1955dbdc9b1960821b6020808301918252835180850190945260048452631114951960e21b9084015281519192916200009b91600291620000cf565b508051620000b1906003906020840190620000cf565b505060008055506001600160601b03193360601b16608052620001b2565b828054620000dd9062000175565b90600052602060002090601f0160209004810192826200010157600085556200014c565b82601f106200011c57805160ff19168380011785556200014c565b828001600101855582156200014c579182015b828111156200014c5782518255916020019190600101906200012f565b506200015a9291506200015e565b5090565b5b808211156200015a57600081556001016200015f565b600181811c908216806200018a57607f821691505b60208210811415620001ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c611d49620001f460003960008181610398015281816107070152818161085e015281816108ec01528181610cb00152610dfe0152611d496000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063ce3cd99711610064578063ce3cd997146104b4578063e1371bc4146104d4578063e985e9c5146104e9578063f676308a1461050957600080fd5b8063b88d4fde1461044d578063c040e6b81461046d578063c87b56dd1461049457600080fd5b806395d89b41116100c657806395d89b41146103ef578063a035b1fe14610404578063a0712d681461041a578063a22cb4651461042d57600080fd5b80638da5cb5b146103865780638ecad721146103ba57806391b7f5ed146103cf57600080fd5b806332cb6b0c116101595780636352211e116101335780636352211e1461031c5780636c0360eb1461033c57806370a0823114610351578063853828b61461037157600080fd5b806332cb6b0c146102c657806342842e0e146102dc57806355f804b3146102fc57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461029057806324a6ab0c146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611926565b610529565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661057b565b6040516101e89190611b5b565b34801561021f57600080fd5b5061023361022e3660046119ca565b61060d565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118fc565b610651565b005b34801561027957600080fd5b50600154600054035b6040519081526020016101e8565b34801561029c57600080fd5b5061026b6102ab366004611808565b6106df565b3480156102bc57600080fd5b5061028260085481565b3480156102d257600080fd5b506102826108ae81565b3480156102e857600080fd5b5061026b6102f7366004611808565b6106ea565b34801561030857600080fd5b5061026b610317366004611981565b610705565b34801561032857600080fd5b506102336103373660046119ca565b61076d565b34801561034857600080fd5b5061020661077f565b34801561035d57600080fd5b5061028261036c3660046117ba565b61080d565b34801561037d57600080fd5b5061026b61085c565b34801561039257600080fd5b506102337f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c657600080fd5b50610282601481565b3480156103db57600080fd5b5061026b6103ea3660046119ca565b6108ea565b3480156103fb57600080fd5b50610206610937565b34801561041057600080fd5b5061028260095481565b61026b6104283660046119ca565b610946565b34801561043957600080fd5b5061026b6104483660046118c0565b610b1f565b34801561045957600080fd5b5061026b610468366004611844565b610bb5565b34801561047957600080fd5b50600a546104879060ff1681565b6040516101e89190611b32565b3480156104a057600080fd5b506102066104af3660046119ca565b610c06565b3480156104c057600080fd5b5061026b6104cf366004611960565b610cae565b3480156104e057600080fd5b50610282600581565b3480156104f557600080fd5b506101dc6105043660046117d5565b610dce565b34801561051557600080fd5b5061026b6105243660046119ca565b610dfc565b60006001600160e01b031982166380ac58cd60e01b148061055a57506001600160e01b03198216635b5e139f60e01b145b8061057557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461058a90611c25565b80601f01602080910402602001604051908101604052809291908181526020018280546105b690611c25565b80156106035780601f106105d857610100808354040283529160200191610603565b820191906000526020600020905b8154815290600101906020018083116105e657829003601f168201915b5050505050905090565b600061061882610e49565b610635576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065c8261076d565b9050806001600160a01b0316836001600160a01b031614156106915760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106b157506106af8133610dce565b155b156106cf576040516367d9dca160e11b815260040160405180910390fd5b6106da838383610e74565b505050565b6106da838383610ed0565b6106da83838360405180602001604052806000815250610bb5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146107565760405162461bcd60e51b815260040161074d90611b6e565b60405180910390fd5b805161076990600b90602084019061168f565b5050565b6000610778826110e6565b5192915050565b600b805461078c90611c25565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890611c25565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b505050505081565b60006001600160a01b038216610836576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146108a45760405162461bcd60e51b815260040161074d90611b6e565b47806108dd5760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b604482015260640161074d565b6108e73347611202565b50565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146109325760405162461bcd60e51b815260040161074d90611b6e565b600955565b60606003805461058a90611c25565b60006109556001546000540390565b90506108ae6109648383611b97565b11156109b25760405162461bcd60e51b815260206004820152601860248201527f445254643a20657863656564206d617820737570706c792e0000000000000000604482015260640161074d565b6001600a5460ff1660018111156109cb576109cb611cbb565b1415610ad657600854811015610a31576005821115610a2c5760405162461bcd60e51b815260206004820152601960248201527f445254643a20746f6f206d616e792066726565206d696e742e00000000000000604482015260640161074d565b610b15565b6014821115610a795760405162461bcd60e51b815260206004820152601460248201527324a13c199d103a37b79036b0b73c9036b4b73a1760611b604482015260640161074d565b81600954610a879190611bc3565b341015610a2c5760405162461bcd60e51b815260206004820152601860248201527f445254643a20696e73756666696369656e742066756e642e0000000000000000604482015260640161074d565b60405162461bcd60e51b815260206004820152601460248201527322292a321d1036b4b73a1034b9903830bab9b29760611b604482015260640161074d565b6107693383611297565b6001600160a01b038216331415610b495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bc0848484610ed0565b6001600160a01b0383163b15158015610be25750610be0848484846112b1565b155b15610c00576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c1182610e49565b610c4f5760405162461bcd60e51b815260206004820152600f60248201526e111495190e881b9bdd08195e1a5cdd608a1b604482015260640161074d565b6000610c596113a9565b90506000815111610c795760405180602001604052806000815250610ca7565b80610c83846113b8565b600c604051602001610c9793929190611a31565b6040516020818303038152906040525b9392505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610cf65760405162461bcd60e51b815260040161074d90611b6e565b806001811115610d0857610d08611cbb565b600a5460ff166001811115610d1f57610d1f611cbb565b1415610d645760405162461bcd60e51b815260206004820152601460248201527322292a321d1034b73b30b634b21039ba30b3b29760611b604482015260640161074d565b600a805460ff811691839160ff191660018381811115610d8657610d86611cbb565b0217905550600a546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610dc291849160ff1690611b40565b60405180910390a15050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610e445760405162461bcd60e51b815260040161074d90611b6e565b600855565b6000805482108015610575575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610edb826110e6565b80519091506000906001600160a01b0316336001600160a01b03161480610f0957508151610f099033610dce565b80610f24575033610f198461060d565b6001600160a01b0316145b905080610f4457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f795760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fa057604051633a954ecd60e21b815260040160405180910390fd5b610fb06000848460000151610e74565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661109c5760005481101561109c578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156111e957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111e75780516001600160a01b03161561117d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111e2579392505050565b61117d565b505b604051636f96cda160e11b815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461124f576040519150601f19603f3d011682016040523d82523d6000602084013e611254565b606091505b50509050806106da5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161074d565b6107698282604051806020016040528060008152506114b6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112e6903390899088908890600401611af5565b602060405180830381600087803b15801561130057600080fd5b505af1925050508015611330575060408051601f3d908101601f1916820190925261132d91810190611943565b60015b61138b573d80801561135e576040519150601f19603f3d011682016040523d82523d6000602084013e611363565b606091505b508051611383576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461058a90611c25565b6060816113dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140657806113f081611c60565b91506113ff9050600a83611baf565b91506113e0565b60008167ffffffffffffffff81111561142157611421611ce7565b6040519080825280601f01601f19166020018201604052801561144b576020820181803683370190505b5090505b84156113a157611460600183611be2565b915061146d600a86611c7b565b611478906030611b97565b60f81b81838151811061148d5761148d611cd1565b60200101906001600160f81b031916908160001a9053506114af600a86611baf565b945061144f565b6106da83838360016000546001600160a01b0385166114e757604051622e076360e81b815260040160405180910390fd5b836115055760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115b757506001600160a01b0387163b15155b15611640575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461160860008884806001019550886112b1565b611625576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115bd57826000541461163b57600080fd5b611686565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611641575b506000556110df565b82805461169b90611c25565b90600052602060002090601f0160209004810192826116bd5760008555611703565b82601f106116d657805160ff1916838001178555611703565b82800160010185558215611703579182015b828111156117035782518255916020019190600101906116e8565b5061170f929150611713565b5090565b5b8082111561170f5760008155600101611714565b600067ffffffffffffffff8084111561174357611743611ce7565b604051601f8501601f19908116603f0116810190828211818310171561176b5761176b611ce7565b8160405280935085815286868601111561178457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117b557600080fd5b919050565b6000602082840312156117cc57600080fd5b610ca78261179e565b600080604083850312156117e857600080fd5b6117f18361179e565b91506117ff6020840161179e565b90509250929050565b60008060006060848603121561181d57600080fd5b6118268461179e565b92506118346020850161179e565b9150604084013590509250925092565b6000806000806080858703121561185a57600080fd5b6118638561179e565b93506118716020860161179e565b925060408501359150606085013567ffffffffffffffff81111561189457600080fd5b8501601f810187136118a557600080fd5b6118b487823560208401611728565b91505092959194509250565b600080604083850312156118d357600080fd5b6118dc8361179e565b9150602083013580151581146118f157600080fd5b809150509250929050565b6000806040838503121561190f57600080fd5b6119188361179e565b946020939093013593505050565b60006020828403121561193857600080fd5b8135610ca781611cfd565b60006020828403121561195557600080fd5b8151610ca781611cfd565b60006020828403121561197257600080fd5b813560028110610ca757600080fd5b60006020828403121561199357600080fd5b813567ffffffffffffffff8111156119aa57600080fd5b8201601f810184136119bb57600080fd5b6113a184823560208401611728565b6000602082840312156119dc57600080fd5b5035919050565b600081518084526119fb816020860160208601611bf9565b601f01601f19169290920160200192915050565b60028110611a2d57634e487b7160e01b600052602160045260246000fd5b9052565b600084516020611a448285838a01611bf9565b855191840191611a578184848a01611bf9565b8554920191600090600181811c9080831680611a7457607f831692505b858310811415611a9257634e487b7160e01b85526022600452602485fd5b808015611aa65760018114611ab757611ae4565b60ff19851688528388019550611ae4565b60008b81526020902060005b85811015611adc5781548a820152908401908801611ac3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b28908301846119e3565b9695505050505050565b602081016105758284611a0f565b60408101611b4e8285611a0f565b610ca76020830184611a0f565b602081526000610ca760208301846119e3565b6020808252600f908201526e22292a321d103737ba1037bbb732b960891b604082015260600190565b60008219821115611baa57611baa611c8f565b500190565b600082611bbe57611bbe611ca5565b500490565b6000816000190483118215151615611bdd57611bdd611c8f565b500290565b600082821015611bf457611bf4611c8f565b500390565b60005b83811015611c14578181015183820152602001611bfc565b83811115610c005750506000910152565b600181811c90821680611c3957607f821691505b60208210811415611c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c7457611c74611c8f565b5060010190565b600082611c8a57611c8a611ca5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e757600080fdfea26469706673582212205b4223dcf706539eb46a00977b069c1333536048905f4958730abd82cc52f77964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063ce3cd99711610064578063ce3cd997146104b4578063e1371bc4146104d4578063e985e9c5146104e9578063f676308a1461050957600080fd5b8063b88d4fde1461044d578063c040e6b81461046d578063c87b56dd1461049457600080fd5b806395d89b41116100c657806395d89b41146103ef578063a035b1fe14610404578063a0712d681461041a578063a22cb4651461042d57600080fd5b80638da5cb5b146103865780638ecad721146103ba57806391b7f5ed146103cf57600080fd5b806332cb6b0c116101595780636352211e116101335780636352211e1461031c5780636c0360eb1461033c57806370a0823114610351578063853828b61461037157600080fd5b806332cb6b0c146102c657806342842e0e146102dc57806355f804b3146102fc57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461029057806324a6ab0c146102b057600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611926565b610529565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661057b565b6040516101e89190611b5b565b34801561021f57600080fd5b5061023361022e3660046119ca565b61060d565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118fc565b610651565b005b34801561027957600080fd5b50600154600054035b6040519081526020016101e8565b34801561029c57600080fd5b5061026b6102ab366004611808565b6106df565b3480156102bc57600080fd5b5061028260085481565b3480156102d257600080fd5b506102826108ae81565b3480156102e857600080fd5b5061026b6102f7366004611808565b6106ea565b34801561030857600080fd5b5061026b610317366004611981565b610705565b34801561032857600080fd5b506102336103373660046119ca565b61076d565b34801561034857600080fd5b5061020661077f565b34801561035d57600080fd5b5061028261036c3660046117ba565b61080d565b34801561037d57600080fd5b5061026b61085c565b34801561039257600080fd5b506102337f000000000000000000000000f6f8949d375939dc501d3e13ad20e72a988d0c0a81565b3480156103c657600080fd5b50610282601481565b3480156103db57600080fd5b5061026b6103ea3660046119ca565b6108ea565b3480156103fb57600080fd5b50610206610937565b34801561041057600080fd5b5061028260095481565b61026b6104283660046119ca565b610946565b34801561043957600080fd5b5061026b6104483660046118c0565b610b1f565b34801561045957600080fd5b5061026b610468366004611844565b610bb5565b34801561047957600080fd5b50600a546104879060ff1681565b6040516101e89190611b32565b3480156104a057600080fd5b506102066104af3660046119ca565b610c06565b3480156104c057600080fd5b5061026b6104cf366004611960565b610cae565b3480156104e057600080fd5b50610282600581565b3480156104f557600080fd5b506101dc6105043660046117d5565b610dce565b34801561051557600080fd5b5061026b6105243660046119ca565b610dfc565b60006001600160e01b031982166380ac58cd60e01b148061055a57506001600160e01b03198216635b5e139f60e01b145b8061057557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461058a90611c25565b80601f01602080910402602001604051908101604052809291908181526020018280546105b690611c25565b80156106035780601f106105d857610100808354040283529160200191610603565b820191906000526020600020905b8154815290600101906020018083116105e657829003601f168201915b5050505050905090565b600061061882610e49565b610635576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065c8261076d565b9050806001600160a01b0316836001600160a01b031614156106915760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106b157506106af8133610dce565b155b156106cf576040516367d9dca160e11b815260040160405180910390fd5b6106da838383610e74565b505050565b6106da838383610ed0565b6106da83838360405180602001604052806000815250610bb5565b7f000000000000000000000000f6f8949d375939dc501d3e13ad20e72a988d0c0a6001600160a01b031633146107565760405162461bcd60e51b815260040161074d90611b6e565b60405180910390fd5b805161076990600b90602084019061168f565b5050565b6000610778826110e6565b5192915050565b600b805461078c90611c25565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890611c25565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b505050505081565b60006001600160a01b038216610836576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b7f000000000000000000000000f6f8949d375939dc501d3e13ad20e72a988d0c0a6001600160a01b031633146108a45760405162461bcd60e51b815260040161074d90611b6e565b47806108dd5760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b604482015260640161074d565b6108e73347611202565b50565b7f000000000000000000000000f6f8949d375939dc501d3e13ad20e72a988d0c0a6001600160a01b031633146109325760405162461bcd60e51b815260040161074d90611b6e565b600955565b60606003805461058a90611c25565b60006109556001546000540390565b90506108ae6109648383611b97565b11156109b25760405162461bcd60e51b815260206004820152601860248201527f445254643a20657863656564206d617820737570706c792e0000000000000000604482015260640161074d565b6001600a5460ff1660018111156109cb576109cb611cbb565b1415610ad657600854811015610a31576005821115610a2c5760405162461bcd60e51b815260206004820152601960248201527f445254643a20746f6f206d616e792066726565206d696e742e00000000000000604482015260640161074d565b610b15565b6014821115610a795760405162461bcd60e51b815260206004820152601460248201527324a13c199d103a37b79036b0b73c9036b4b73a1760611b604482015260640161074d565b81600954610a879190611bc3565b341015610a2c5760405162461bcd60e51b815260206004820152601860248201527f445254643a20696e73756666696369656e742066756e642e0000000000000000604482015260640161074d565b60405162461bcd60e51b815260206004820152601460248201527322292a321d1036b4b73a1034b9903830bab9b29760611b604482015260640161074d565b6107693383611297565b6001600160a01b038216331415610b495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bc0848484610ed0565b6001600160a01b0383163b15158015610be25750610be0848484846112b1565b155b15610c00576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c1182610e49565b610c4f5760405162461bcd60e51b815260206004820152600f60248201526e111495190e881b9bdd08195e1a5cdd608a1b604482015260640161074d565b6000610c596113a9565b90506000815111610c795760405180602001604052806000815250610ca7565b80610c83846113b8565b600c604051602001610c9793929190611a31565b6040516020818303038152906040525b9392505050565b7f000000000000000000000000f6f8949d375939dc501d3e13ad20e72a988d0c0a6001600160a01b03163314610cf65760405162461bcd60e51b815260040161074d90611b6e565b806001811115610d0857610d08611cbb565b600a5460ff166001811115610d1f57610d1f611cbb565b1415610d645760405162461bcd60e51b815260206004820152601460248201527322292a321d1034b73b30b634b21039ba30b3b29760611b604482015260640161074d565b600a805460ff811691839160ff191660018381811115610d8657610d86611cbb565b0217905550600a546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610dc291849160ff1690611b40565b60405180910390a15050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b7f000000000000000000000000f6f8949d375939dc501d3e13ad20e72a988d0c0a6001600160a01b03163314610e445760405162461bcd60e51b815260040161074d90611b6e565b600855565b6000805482108015610575575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610edb826110e6565b80519091506000906001600160a01b0316336001600160a01b03161480610f0957508151610f099033610dce565b80610f24575033610f198461060d565b6001600160a01b0316145b905080610f4457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f795760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fa057604051633a954ecd60e21b815260040160405180910390fd5b610fb06000848460000151610e74565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661109c5760005481101561109c578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156111e957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111e75780516001600160a01b03161561117d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111e2579392505050565b61117d565b505b604051636f96cda160e11b815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461124f576040519150601f19603f3d011682016040523d82523d6000602084013e611254565b606091505b50509050806106da5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161074d565b6107698282604051806020016040528060008152506114b6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112e6903390899088908890600401611af5565b602060405180830381600087803b15801561130057600080fd5b505af1925050508015611330575060408051601f3d908101601f1916820190925261132d91810190611943565b60015b61138b573d80801561135e576040519150601f19603f3d011682016040523d82523d6000602084013e611363565b606091505b508051611383576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461058a90611c25565b6060816113dc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140657806113f081611c60565b91506113ff9050600a83611baf565b91506113e0565b60008167ffffffffffffffff81111561142157611421611ce7565b6040519080825280601f01601f19166020018201604052801561144b576020820181803683370190505b5090505b84156113a157611460600183611be2565b915061146d600a86611c7b565b611478906030611b97565b60f81b81838151811061148d5761148d611cd1565b60200101906001600160f81b031916908160001a9053506114af600a86611baf565b945061144f565b6106da83838360016000546001600160a01b0385166114e757604051622e076360e81b815260040160405180910390fd5b836115055760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115b757506001600160a01b0387163b15155b15611640575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461160860008884806001019550886112b1565b611625576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115bd57826000541461163b57600080fd5b611686565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611641575b506000556110df565b82805461169b90611c25565b90600052602060002090601f0160209004810192826116bd5760008555611703565b82601f106116d657805160ff1916838001178555611703565b82800160010185558215611703579182015b828111156117035782518255916020019190600101906116e8565b5061170f929150611713565b5090565b5b8082111561170f5760008155600101611714565b600067ffffffffffffffff8084111561174357611743611ce7565b604051601f8501601f19908116603f0116810190828211818310171561176b5761176b611ce7565b8160405280935085815286868601111561178457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117b557600080fd5b919050565b6000602082840312156117cc57600080fd5b610ca78261179e565b600080604083850312156117e857600080fd5b6117f18361179e565b91506117ff6020840161179e565b90509250929050565b60008060006060848603121561181d57600080fd5b6118268461179e565b92506118346020850161179e565b9150604084013590509250925092565b6000806000806080858703121561185a57600080fd5b6118638561179e565b93506118716020860161179e565b925060408501359150606085013567ffffffffffffffff81111561189457600080fd5b8501601f810187136118a557600080fd5b6118b487823560208401611728565b91505092959194509250565b600080604083850312156118d357600080fd5b6118dc8361179e565b9150602083013580151581146118f157600080fd5b809150509250929050565b6000806040838503121561190f57600080fd5b6119188361179e565b946020939093013593505050565b60006020828403121561193857600080fd5b8135610ca781611cfd565b60006020828403121561195557600080fd5b8151610ca781611cfd565b60006020828403121561197257600080fd5b813560028110610ca757600080fd5b60006020828403121561199357600080fd5b813567ffffffffffffffff8111156119aa57600080fd5b8201601f810184136119bb57600080fd5b6113a184823560208401611728565b6000602082840312156119dc57600080fd5b5035919050565b600081518084526119fb816020860160208601611bf9565b601f01601f19169290920160200192915050565b60028110611a2d57634e487b7160e01b600052602160045260246000fd5b9052565b600084516020611a448285838a01611bf9565b855191840191611a578184848a01611bf9565b8554920191600090600181811c9080831680611a7457607f831692505b858310811415611a9257634e487b7160e01b85526022600452602485fd5b808015611aa65760018114611ab757611ae4565b60ff19851688528388019550611ae4565b60008b81526020902060005b85811015611adc5781548a820152908401908801611ac3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b28908301846119e3565b9695505050505050565b602081016105758284611a0f565b60408101611b4e8285611a0f565b610ca76020830184611a0f565b602081526000610ca760208301846119e3565b6020808252600f908201526e22292a321d103737ba1037bbb732b960891b604082015260600190565b60008219821115611baa57611baa611c8f565b500190565b600082611bbe57611bbe611ca5565b500490565b6000816000190483118215151615611bdd57611bdd611c8f565b500290565b600082821015611bf457611bf4611c8f565b500390565b60005b83811015611c14578181015183820152602001611bfc565b83811115610c005750506000910152565b600181811c90821680611c3957607f821691505b60208210811415611c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c7457611c74611c8f565b5060010190565b600082611c8a57611c8a611ca5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e757600080fdfea26469706673582212205b4223dcf706539eb46a00977b069c1333536048905f4958730abd82cc52f77964736f6c63430008070033

Deployed Bytecode Sourcemap

41376:3266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23909:305;;;;;;;;;;-1:-1:-1;23909:305:0;;;;;:::i;:::-;;:::i;:::-;;;7422:14:1;;7415:22;7397:41;;7385:2;7370:18;23909:305:0;;;;;;;;27294:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28797:204::-;;;;;;;;;;-1:-1:-1;28797:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6720:32:1;;;6702:51;;6690:2;6675:18;28797:204:0;6556:203:1;28360:371:0;;;;;;;;;;-1:-1:-1;28360:371:0;;;;;:::i;:::-;;:::i;:::-;;23158:303;;;;;;;;;;-1:-1:-1;23412:12:0;;23202:7;23396:13;:28;23158:303;;;11798:25:1;;;11786:2;11771:18;23158:303:0;11652:177:1;29654:170:0;;;;;;;;;;-1:-1:-1;29654:170:0;;;;;:::i;:::-;;:::i;41500:31::-;;;;;;;;;;;;;;;;41452:41;;;;;;;;;;;;41489:4;41452:41;;29895:185;;;;;;;;;;-1:-1:-1;29895:185:0;;;;;:::i;:::-;;:::i;43285:106::-;;;;;;;;;;-1:-1:-1;43285:106:0;;;;;:::i;:::-;;:::i;27103:124::-;;;;;;;;;;-1:-1:-1;27103:124:0;;;;;:::i;:::-;;:::i;41748:21::-;;;;;;;;;;;;;:::i;24278:206::-;;;;;;;;;;-1:-1:-1;24278:206:0;;;;;:::i;:::-;;:::i;44254:198::-;;;;;;;;;;;;;:::i;41686:30::-;;;;;;;;;;;;;;;41538:44;;;;;;;;;;;;41580:2;41538:44;;43077:86;;;;;;;;;;-1:-1:-1;43077:86:0;;;;;:::i;:::-;;:::i;27463:104::-;;;;;;;;;;;;;:::i;41644:35::-;;;;;;;;;;;;;;;;43399:847;;;;;;:::i;:::-;;:::i;29073:279::-;;;;;;;;;;-1:-1:-1;29073:279:0;;;;;:::i;:::-;;:::i;30151:369::-;;;;;;;;;;-1:-1:-1;30151:369:0;;;;;:::i;:::-;;:::i;41723:18::-;;;;;;;;;;-1:-1:-1;41723:18:0;;;;;;;;;;;;;;;:::i;42138:584::-;;;;;;;;;;-1:-1:-1;42138:584:0;;;;;:::i;:::-;;:::i;42846:223::-;;;;;;;;;;-1:-1:-1;42846:223:0;;;;;:::i;:::-;;:::i;41589:48::-;;;;;;;;;;;;41636:1;41589:48;;29423:164;;;;;;;;;;-1:-1:-1;29423:164:0;;;;;:::i;:::-;;:::i;43171:106::-;;;;;;;;;;-1:-1:-1;43171:106:0;;;;;:::i;:::-;;:::i;23909:305::-;24011:4;-1:-1:-1;;;;;;24048:40:0;;-1:-1:-1;;;24048:40:0;;:105;;-1:-1:-1;;;;;;;24105:48:0;;-1:-1:-1;;;24105:48:0;24048:105;:158;;;-1:-1:-1;;;;;;;;;;19469:40:0;;;24170:36;24028:178;23909:305;-1:-1:-1;;23909:305:0:o;27294:100::-;27348:13;27381:5;27374:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27294:100;:::o;28797:204::-;28865:7;28890:16;28898:7;28890;:16::i;:::-;28885:64;;28915:34;;-1:-1:-1;;;28915:34:0;;;;;;;;;;;28885:64;-1:-1:-1;28969:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28969:24:0;;28797:204::o;28360:371::-;28433:13;28449:24;28465:7;28449:15;:24::i;:::-;28433:40;;28494:5;-1:-1:-1;;;;;28488:11:0;:2;-1:-1:-1;;;;;28488:11:0;;28484:48;;;28508:24;;-1:-1:-1;;;28508:24:0;;;;;;;;;;;28484:48;18524:10;-1:-1:-1;;;;;28549:21:0;;;;;;:63;;-1:-1:-1;28575:37:0;28592:5;18524:10;29423:164;:::i;28575:37::-;28574:38;28549:63;28545:138;;;28636:35;;-1:-1:-1;;;28636:35:0;;;;;;;;;;;28545:138;28695:28;28704:2;28708:7;28717:5;28695:8;:28::i;:::-;28422:309;28360:371;;:::o;29654:170::-;29788:28;29798:4;29804:2;29808:7;29788:9;:28::i;29895:185::-;30033:39;30050:4;30056:2;30060:7;30033:39;;;;;;;;;;;;:16;:39::i;43285:106::-;41923:5;-1:-1:-1;;;;;41923:21:0;18524:10;41923:21;41915:49;;;;-1:-1:-1;;;41915:49:0;;;;;;;:::i;:::-;;;;;;;;;43362:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43285:106:::0;:::o;27103:124::-;27167:7;27194:20;27206:7;27194:11;:20::i;:::-;:25;;27103:124;-1:-1:-1;;27103:124:0:o;41748:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24278:206::-;24342:7;-1:-1:-1;;;;;24366:19:0;;24362:60;;24394:28;;-1:-1:-1;;;24394:28:0;;;;;;;;;;;24362:60;-1:-1:-1;;;;;;24448:19:0;;;;;:12;:19;;;;;:27;;;;24278:206::o;44254:198::-;41923:5;-1:-1:-1;;;;;41923:21:0;18524:10;41923:21;41915:49;;;;-1:-1:-1;;;41915:49:0;;;;;;;:::i;:::-;44325:21:::1;44365:11:::0;44357:32:::1;;;::::0;-1:-1:-1;;;44357:32:0;;9773:2:1;44357: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;;44357:32:0::1;9571:331:1::0;44357:32:0::1;44400:44;44410:10;44422:21;44400:9;:44::i;:::-;44296:156;44254:198::o:0;43077:86::-;41923:5;-1:-1:-1;;;;;41923:21:0;18524:10;41923:21;41915:49;;;;-1:-1:-1;;;41915:49:0;;;;;;;:::i;:::-;43141:5:::1;:14:::0;43077:86::o;27463:104::-;27519:13;27552:7;27545:14;;;;;:::i;43399:847::-;43460:21;43484:13;23412:12;;23202:7;23396:13;:28;;23158:303;43484:13;43460:37;-1:-1:-1;41489:4:0;43530:25;43546:9;43460:37;43530:25;:::i;:::-;:39;;43508:113;;;;-1:-1:-1;;;43508:113:0;;9076:2:1;43508:113:0;;;9058:21:1;9115:2;9095:18;;;9088:30;9154:26;9134:18;;;9127:54;9198:18;;43508:113:0;8874:348:1;43508:113:0;43645:12;43636:5;;;;;:21;;;;;;;:::i;:::-;;43632:564;;;43694:10;;43678:13;:26;43674:448;;;41636:1;43755:9;:33;;43725:132;;;;-1:-1:-1;;;43725:132:0;;11151:2:1;43725:132:0;;;11133:21:1;11190:2;11170:18;;;11163:30;11229:27;11209:18;;;11202:55;11274:18;;43725:132:0;10949:349:1;43725:132:0;43632:564;;43674:448;41580:2;43906:9;:28;;43898:61;;;;-1:-1:-1;;;43898:61:0;;11505:2:1;43898:61:0;;;11487:21:1;11544:2;11524:18;;;11517:30;-1:-1:-1;;;11563:18:1;;;11556:50;11623:18;;43898:61:0;11303:344:1;43898:61:0;44029:9;44021:5;;:17;;;;:::i;:::-;44008:9;:30;;43978:128;;;;-1:-1:-1;;;43978:128:0;;8379:2:1;43978:128:0;;;8361:21:1;8418:2;8398:18;;;8391:30;8457:26;8437:18;;;8430:54;8501:18;;43978:128:0;8177:348:1;43632:564:0;44154:30;;-1:-1:-1;;;44154:30:0;;10109:2:1;44154:30:0;;;10091:21:1;10148:2;10128:18;;;10121:30;-1:-1:-1;;;10167:18:1;;;10160:50;10227:18;;44154:30:0;9907:344:1;43632:564:0;44206:32;44216:10;44228:9;44206;:32::i;29073:279::-;-1:-1:-1;;;;;29164:24:0;;18524:10;29164:24;29160:54;;;29197:17;;-1:-1:-1;;;29197:17:0;;;;;;;;;;;29160:54;18524:10;29227:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29227:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29227:53:0;;;;;;;;;;29296:48;;7397:41:1;;;29227:42:0;;18524:10;29296:48;;7370:18:1;29296:48:0;;;;;;;29073:279;;:::o;30151:369::-;30318:28;30328:4;30334:2;30338:7;30318:9;:28::i;:::-;-1:-1:-1;;;;;30361:13:0;;10892:20;10940:8;;30361:76;;;;;30381:56;30412:4;30418:2;30422:7;30431:5;30381:30;:56::i;:::-;30380:57;30361:76;30357:156;;;30461:40;;-1:-1:-1;;;30461:40:0;;;;;;;;;;;30357:156;30151:369;;;;:::o;42138:584::-;42256:13;42295:16;42303:7;42295;:16::i;:::-;42287:44;;;;-1:-1:-1;;;42287:44:0;;10458:2:1;42287:44:0;;;10440:21:1;10497:2;10477:18;;;10470:30;-1:-1:-1;;;10516:18:1;;;10509:45;10571:18;;42287:44:0;10256:339:1;42287:44:0;42342:28;42373:10;:8;:10::i;:::-;42342:41;;42447:1;42422:14;42416:28;:32;:287;;;;;;;;;;;;;;;;;42540:14;42581:18;:7;:16;:18::i;:::-;42626:13;42497:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42416:287;42394:320;42138:584;-1:-1:-1;;;42138:584:0:o;42846:223::-;41923:5;-1:-1:-1;;;;;41923:21:0;18524:10;41923:21;41915:49;;;;-1:-1:-1;;;41915:49:0;;;;;;;:::i;:::-;42925:6:::1;42916:15;;;;;;;;:::i;:::-;:5;::::0;::::1;;::::0;:15;::::1;;;;;;:::i;:::-;;;42908:48;;;::::0;-1:-1:-1;;;42908:48:0;;10802:2:1;42908: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;;42908:48:0::1;10600:344:1::0;42908:48:0::1;42985:5;::::0;;::::1;::::0;::::1;::::0;43009:6;;-1:-1:-1;;43001:14:0::1;42985:5:::0;43009:6;43001:14;;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;43055:5:0::1;::::0;43031:30:::1;::::0;::::1;::::0;::::1;::::0;43044:9;;43055:5:::1;;::::0;43031:30:::1;:::i;:::-;;;;;;;;42897:172;42846:223:::0;:::o;29423:164::-;-1:-1:-1;;;;;29544:25:0;;;29520:4;29544:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29423:164::o;43171:106::-;41923:5;-1:-1:-1;;;;;41923:21:0;18524:10;41923:21;41915:49;;;;-1:-1:-1;;;41915:49:0;;;;;;;:::i;:::-;43245:10:::1;:24:::0;43171:106::o;30775:187::-;30832:4;30896:13;;30886:7;:23;30856:98;;;;-1:-1:-1;;30927:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;30927:27:0;;;;30926:28;;30775:187::o;38386:196::-;38501:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38501:29:0;-1:-1:-1;;;;;38501:29:0;;;;;;;;;38546:28;;38501:24;;38546:28;;;;;;;38386:196;;;:::o;33888:2112::-;34003:35;34041:20;34053:7;34041:11;:20::i;:::-;34116:18;;34003:58;;-1:-1:-1;34074:22:0;;-1:-1:-1;;;;;34100:34:0;18524:10;-1:-1:-1;;;;;34100:34:0;;:101;;;-1:-1:-1;34168:18:0;;34151:50;;18524:10;29423:164;:::i;34151:50::-;34100:154;;;-1:-1:-1;18524:10:0;34218:20;34230:7;34218:11;:20::i;:::-;-1:-1:-1;;;;;34218:36:0;;34100:154;34074:181;;34273:17;34268:66;;34299:35;;-1:-1:-1;;;34299:35:0;;;;;;;;;;;34268:66;34371:4;-1:-1:-1;;;;;34349:26:0;:13;:18;;;-1:-1:-1;;;;;34349:26:0;;34345:67;;34384:28;;-1:-1:-1;;;34384:28:0;;;;;;;;;;;34345:67;-1:-1:-1;;;;;34427:16:0;;34423:52;;34452:23;;-1:-1:-1;;;34452:23:0;;;;;;;;;;;34423:52;34596:49;34613:1;34617:7;34626:13;:18;;;34596:8;:49::i;:::-;-1:-1:-1;;;;;34941:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34941:31:0;;;;;;;-1:-1:-1;;34941:31:0;;;;;;;34987:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34987:29:0;;;;;;;;;;;35033:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35078:61:0;;;;-1:-1:-1;;;35123:15:0;35078:61;;;;;;;;;;;35413:11;;;35443:24;;;;;:29;35413:11;;35443:29;35439:445;;35668:13;;35654:11;:27;35650:219;;;35738:18;;;35706:24;;;:11;:24;;;;;;;;:50;;35821:28;;;;35779:70;;-1:-1:-1;;;35779:70:0;-1:-1:-1;;;;;;35779:70:0;;;-1:-1:-1;;;;;35706:50:0;;;35779:70;;;;;;;35650:219;34916:979;35931:7;35927:2;-1:-1:-1;;;;;35912:27:0;35921:4;-1:-1:-1;;;;;35912:27:0;;;;;;;;;;;35950:42;33992:2008;;33888:2112;;;:::o;25933:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26043:7:0;26126:13;;26119:4;:20;26088:886;;;26160:31;26194:17;;;:11;:17;;;;;;;;;26160:51;;;;;;;;;-1:-1:-1;;;;;26160:51:0;;;;-1:-1:-1;;;26160:51:0;;;;;;;;;;;-1:-1:-1;;;26160:51:0;;;;;;;;;;;;;;26230:729;;26280:14;;-1:-1:-1;;;;;26280:28:0;;26276:101;;26344:9;25933:1108;-1:-1:-1;;;25933:1108:0:o;26276:101::-;-1:-1:-1;;;26719:6:0;26764:17;;;;:11;:17;;;;;;;;;26752:29;;;;;;;;;-1:-1:-1;;;;;26752:29:0;;;;;-1:-1:-1;;;26752:29:0;;;;;;;;;;;-1:-1:-1;;;26752:29:0;;;;;;;;;;;;;26812:28;26808:109;;26880:9;25933:1108;-1:-1:-1;;;25933:1108:0:o;26808:109::-;26679:261;;;26141:833;26088:886;27002:31;;-1:-1:-1;;;27002:31:0;;;;;;;;;;;44460:179;44534:12;44552:8;-1:-1:-1;;;;;44552:13:0;44573:7;44552:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44533:52;;;44604:7;44596:35;;;;-1:-1:-1;;;44596:35:0;;8732:2:1;44596:35:0;;;8714:21:1;8771:2;8751:18;;;8744:30;-1:-1:-1;;;8790:18:1;;;8783:45;8845:18;;44596:35:0;8530:339:1;30970:104:0;31039:27;31049:2;31053:8;31039:27;;;;;;;;;;;;:9;:27::i;39074:667::-;39258:72;;-1:-1:-1;;;39258:72:0;;39237:4;;-1:-1:-1;;;;;39258:36:0;;;;;:72;;18524:10;;39309:4;;39315:7;;39324:5;;39258:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39258:72:0;;;;;;;;-1:-1:-1;;39258:72:0;;;;;;;;;;;;:::i;:::-;;;39254:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39492:13:0;;39488:235;;39538:40;;-1:-1:-1;;;39538:40:0;;;;;;;;;;;39488:235;39681:6;39675:13;39666:6;39662:2;39658:15;39651:38;39254:480;-1:-1:-1;;;;;;39377:55:0;-1:-1:-1;;;39377:55:0;;-1:-1:-1;39254:480:0;39074:667;;;;;;:::o;42730:108::-;42790:13;42823:7;42816: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;;31437:163;31560:32;31566:2;31570:8;31580:5;31587:4;31998:20;32021:13;-1:-1:-1;;;;;32049:16:0;;32045:48;;32074:19;;-1:-1:-1;;;32074:19:0;;;;;;;;;;;32045:48;32108:13;32104:44;;32130:18;;-1:-1:-1;;;32130:18:0;;;;;;;;;;;32104:44;-1:-1:-1;;;;;32499:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32558:49:0;;32499:44;;;;;;;;32558:49;;;;-1:-1:-1;;32499:44:0;;;;;;32558:49;;;;;;;;;;;;;;;;32624:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32674:66:0;;;;-1:-1:-1;;;32724:15:0;32674:66;;;;;;;;;;32624:25;32821:23;;;32865:4;:23;;;;-1:-1:-1;;;;;;32873:13:0;;10892:20;10940:8;;32873:15;32861:641;;;32909:314;32940:38;;32965:12;;-1:-1:-1;;;;;32940:38:0;;;32957:1;;32940:38;;32957:1;;32940:38;33006:69;33045:1;33049:2;33053:14;;;;;;33069:5;33006:30;:69::i;:::-;33001:174;;33111:40;;-1:-1:-1;;;33111:40:0;;;;;;;;;;;33001:174;33218:3;33202:12;:19;;32909:314;;33304:12;33287:13;;:29;33283:43;;33318:8;;;33283:43;32861:641;;;33367:120;33398:40;;33423:14;;;;;-1:-1:-1;;;;;33398:40:0;;;33415:1;;33398:40;;33415:1;;33398:40;33482:3;33466:12;:19;;33367:120;;32861:641;-1:-1:-1;33516:13:0;:28;33566:60;30151: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;11907:1;11900:14;;;11944:4;11931: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;11960:128::-;12000:3;12031:1;12027:6;12024:1;12021:13;12018:39;;;12037:18;;:::i;:::-;-1:-1:-1;12073:9:1;;11960:128::o;12093:120::-;12133:1;12159;12149:35;;12164:18;;:::i;:::-;-1:-1:-1;12198:9:1;;12093:120::o;12218:168::-;12258:7;12324:1;12320;12316:6;12312:14;12309:1;12306:21;12301:1;12294:9;12287:17;12283:45;12280:71;;;12331:18;;:::i;:::-;-1:-1:-1;12371:9:1;;12218:168::o;12391:125::-;12431:4;12459:1;12456;12453:8;12450:34;;;12464:18;;:::i;:::-;-1:-1:-1;12501:9:1;;12391:125::o;12521:258::-;12593:1;12603:113;12617:6;12614:1;12611:13;12603:113;;;12693:11;;;12687:18;12674:11;;;12667:39;12639:2;12632:10;12603:113;;;12734:6;12731:1;12728:13;12725:48;;;-1:-1:-1;;12769:1:1;12751:16;;12744:27;12521:258::o;12784:380::-;12863:1;12859:12;;;;12906;;;12927:61;;12981:4;12973:6;12969:17;12959:27;;12927:61;13034:2;13026:6;13023:14;13003:18;13000:38;12997:161;;;13080:10;13075:3;13071:20;13068:1;13061:31;13115:4;13112:1;13105:15;13143:4;13140:1;13133:15;12997:161;;12784:380;;;:::o;13169:135::-;13208:3;-1:-1:-1;;13229:17:1;;13226:43;;;13249:18;;:::i;:::-;-1:-1:-1;13296:1:1;13285:13;;13169:135::o;13309:112::-;13341:1;13367;13357:35;;13372:18;;:::i;:::-;-1:-1:-1;13406:9:1;;13309:112::o;13426:127::-;13487:10;13482:3;13478:20;13475:1;13468:31;13518:4;13515:1;13508:15;13542:4;13539:1;13532:15;13558:127;13619:10;13614:3;13610:20;13607:1;13600:31;13650:4;13647:1;13640:15;13674:4;13671:1;13664:15;13690:127;13751:10;13746:3;13742:20;13739:1;13732:31;13782:4;13779:1;13772:15;13806:4;13803:1;13796:15;13822:127;13883:10;13878:3;13874:20;13871:1;13864:31;13914:4;13911:1;13904:15;13938:4;13935:1;13928:15;13954:127;14015:10;14010:3;14006:20;14003:1;13996:31;14046:4;14043:1;14036:15;14070:4;14067:1;14060:15;14086:131;-1:-1:-1;;;;;;14160:32:1;;14150:43;;14140:71;;14207:1;14204;14197:12

Swarm Source

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