ETH Price: $3,458.63 (+0.52%)
Gas: 6 Gwei

Token

To The JPG (JPG)
 

Overview

Max Total Supply

83 JPG

Holders

48

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xlitchi.eth
Balance
2 JPG
0x218CD7A6eCAfc8dfB02456a61539fdE5dBE5d22A
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:
Tothejpg

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-10
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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 {}
}

// File: contracts/Tothejpg.sol


pragma solidity ^0.8.7;



contract Tothejpg is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 666;
    uint256 public constant MINT_PRICE = 0.066 ether;

    uint256 public constant MAX_PER_TX = 2;
    uint256 public constant MAX_PER_WALLET = 2;

    bool public isSaleActive = false;

    mapping(address => uint256) private _saleClaimed;

    string private _hiddenURI = "ipfs://QmTh3Xd9LSHtBneyx3c6tJQhgscCL2MCXUAzLvmwhpyiam/hidden.json";
    string private _baseTokenURI = "";

    modifier onlyEOA() {
        require(tx.origin == msg.sender, "Contract caller must be externally owned account");
        _;
    }

    modifier onlyValidQuantity(uint256 quantity) {
        require(quantity > 0, "Quantity cannot be zero");
        require(quantity <= MAX_PER_TX, "Quantity exceeds max quantity per transaction");
        _;
    }

    constructor() ERC721A("To The JPG", "JPG") {}

    function toggleSaleStatus() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function mint(uint256 quantity) external payable onlyEOA onlyValidQuantity(quantity) {
        require(isSaleActive, "Sale is not active");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Sold out");

        require(_saleClaimed[msg.sender] < MAX_PER_WALLET, "Wallet has already claimed sale limit");
        
        require(MINT_PRICE * quantity <= msg.value, "Invalid ETH amount provided");

        _saleClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function reverse(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity < MAX_SUPPLY, "Sold out");
        _safeMint(to, quantity);
    }

    function setHiddenURI(string calldata URI) external onlyOwner {
        _hiddenURI = URI;
    }

    function hiddenURI() public view returns (string memory) {
        return _hiddenURI;
    }
    
    function setBaseTokenURI(string calldata URI) external onlyOwner {
        _baseTokenURI = URI;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }

    function baseTokenURI() public view returns (string memory) {
        return _baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : _hiddenURI;
    }

   function withdraw(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":[],"name":"MINT_PRICE","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reverse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff02191690831515021790555060405180608001604052806041815260200162003dcd60419139600a90805190602001906200005092919062000236565b5060405180602001604052806000815250600b90805190602001906200007892919062000236565b503480156200008657600080fd5b506040518060400160405280600a81526020017f546f20546865204a5047000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a5047000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010b92919062000236565b5080600390805190602001906200012492919062000236565b50620001356200016360201b60201c565b60008190555050506200015d620001516200016860201b60201c565b6200017060201b60201c565b6200034b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024490620002e6565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b60006002820490506001821680620002ff57607f821691505b602082108114156200031657620003156200031c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613a72806200035b6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063d547cfb711610064578063d547cfb714610641578063e985e9c51461066c578063f2fde38b146106a9578063f43a22dc146106d2576101cd565b8063b88d4fde14610587578063bbaac02f146105b0578063c002d23d146105d9578063c87b56dd14610604576101cd565b80638da5cb5b116100d15780638da5cb5b146104ec57806395d89b4114610517578063a0712d6814610542578063a22cb4651461055e576101cd565b806370a082311461046d578063715018a6146104aa5780638cc54e7f146104c1576101cd565b80632126a9231161016f57806342842e0e1161013e57806342842e0e146103b357806351cff8d9146103dc578063564566a8146104055780636352211e14610430576101cd565b80632126a9231461030d57806323b872dd1461033657806330176e131461035f57806332cb6b0c14610388576101cd565b8063081812fc116101ab578063081812fc14610251578063095ea7b31461028e5780630f2cdd6c146102b757806318160ddd146102e2576101cd565b806301ffc9a7146101d2578063049c5c491461020f57806306fdde0314610226575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612db1565b6106fd565b604051610206919061316c565b60405180910390f35b34801561021b57600080fd5b506102246107df565b005b34801561023257600080fd5b5061023b610887565b6040516102489190613187565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612e58565b610919565b6040516102859190613105565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b09190612d71565b610995565b005b3480156102c357600080fd5b506102cc610aa0565b6040516102d991906132e9565b60405180910390f35b3480156102ee57600080fd5b506102f7610aa5565b60405161030491906132e9565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612d71565b610abc565b005b34801561034257600080fd5b5061035d60048036038101906103589190612c5b565b610b9c565b005b34801561036b57600080fd5b5061038660048036038101906103819190612e0b565b610bac565b005b34801561039457600080fd5b5061039d610c3e565b6040516103aa91906132e9565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612c5b565b610c44565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612bee565b610c64565b005b34801561041157600080fd5b5061041a610d30565b604051610427919061316c565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612e58565b610d43565b6040516104649190613105565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612bee565b610d59565b6040516104a191906132e9565b60405180910390f35b3480156104b657600080fd5b506104bf610e29565b005b3480156104cd57600080fd5b506104d6610eb1565b6040516104e39190613187565b60405180910390f35b3480156104f857600080fd5b50610501610f43565b60405161050e9190613105565b60405180910390f35b34801561052357600080fd5b5061052c610f6d565b6040516105399190613187565b60405180910390f35b61055c60048036038101906105579190612e58565b610fff565b005b34801561056a57600080fd5b5061058560048036038101906105809190612d31565b6112d6565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612cae565b61144e565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612e0b565b6114ca565b005b3480156105e557600080fd5b506105ee61155c565b6040516105fb91906132e9565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612e58565b611567565b6040516106389190613187565b60405180910390f35b34801561064d57600080fd5b50610656611689565b6040516106639190613187565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612c1b565b61171b565b6040516106a0919061316c565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612bee565b6117af565b005b3480156106de57600080fd5b506106e76118a7565b6040516106f491906132e9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d857506107d7826118ac565b5b9050919050565b6107e7611916565b73ffffffffffffffffffffffffffffffffffffffff16610805610f43565b73ffffffffffffffffffffffffffffffffffffffff161461085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290613269565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b60606002805461089690613568565b80601f01602080910402602001604051908101604052809291908181526020018280546108c290613568565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b60006109248261191e565b61095a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a082610d43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a08576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a27611916565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a595750610a5781610a52611916565b61171b565b155b15610a90576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a9b83838361196c565b505050565b600281565b6000610aaf611a1e565b6001546000540303905090565b610ac4611916565b73ffffffffffffffffffffffffffffffffffffffff16610ae2610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613269565b60405180910390fd5b61029a81610b44610aa5565b610b4e919061339d565b10610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b85906132a9565b60405180910390fd5b610b988282611a23565b5050565b610ba7838383611a41565b505050565b610bb4611916565b73ffffffffffffffffffffffffffffffffffffffff16610bd2610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613269565b60405180910390fd5b8181600b9190610c399291906129d9565b505050565b61029a81565b610c5f8383836040518060200160405280600081525061144e565b505050565b610c6c611916565b73ffffffffffffffffffffffffffffffffffffffff16610c8a610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613269565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b505050565b600860149054906101000a900460ff1681565b6000610d4e82611f32565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e31611916565b73ffffffffffffffffffffffffffffffffffffffff16610e4f610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90613269565b60405180910390fd5b610eaf60006121c1565b565b6060600a8054610ec090613568565b80601f0160208091040260200160405190810160405280929190818152602001828054610eec90613568565b8015610f395780601f10610f0e57610100808354040283529160200191610f39565b820191906000526020600020905b815481529060010190602001808311610f1c57829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f7c90613568565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa890613568565b8015610ff55780601f10610fca57610100808354040283529160200191610ff5565b820191906000526020600020905b815481529060010190602001808311610fd857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613249565b60405180910390fd5b80600081116110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890613229565b60405180910390fd5b60028111156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613209565b60405180910390fd5b600860149054906101000a900460ff16611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906131e9565b60405180910390fd5b61029a82611150610aa5565b61115a919061339d565b111561119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906132a9565b60405180910390fd5b6002600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061121d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611214906132c9565b60405180910390fd5b348266ea7aa67b2d00006112319190613424565b1115611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613289565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c1919061339d565b925050819055506112d23383611a23565b5050565b6112de611916565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611343576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611350611916565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fd611916565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611442919061316c565b60405180910390a35050565b611459848484611a41565b6114788373ffffffffffffffffffffffffffffffffffffffff16612287565b801561148d575061148b8484848461229a565b155b156114c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6114d2611916565b73ffffffffffffffffffffffffffffffffffffffff166114f0610f43565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613269565b60405180910390fd5b8181600a91906115579291906129d9565b505050565b66ea7aa67b2d000081565b60606115728261191e565b6115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906131a9565b60405180910390fd5b60006115bb6123fa565b9050600081511161165657600a80546115d390613568565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff90613568565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b5050505050611681565b806116608461248c565b6040516020016116719291906130d6565b6040516020818303038152906040525b915050919050565b6060600b805461169890613568565b80601f01602080910402602001604051908101604052809291908181526020018280546116c490613568565b80156117115780601f106116e657610100808354040283529160200191611711565b820191906000526020600020905b8154815290600101906020018083116116f457829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117b7611916565b73ffffffffffffffffffffffffffffffffffffffff166117d5610f43565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611892906131c9565b60405180910390fd5b6118a4816121c1565b50565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611929611a1e565b11158015611938575060005482105b8015611965575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611a3d8282604051806020016040528060008152506125ed565b5050565b6000611a4c82611f32565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a73611916565b73ffffffffffffffffffffffffffffffffffffffff161480611aa65750611aa58260000151611aa0611916565b61171b565b5b80611aeb5750611ab4611916565b73ffffffffffffffffffffffffffffffffffffffff16611ad384610919565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b24576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0185858560016125ff565b611c11600084846000015161196c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ec257600054811015611ec15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2b8585856001612605565b5050505050565b611f3a612a5f565b600082905080611f48611a1e565b11158015611f57575060005481105b1561218a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461206c5780925050506121bc565b5b60011561218757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121825780925050506121bc565b61206d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c0611916565b8786866040518563ffffffff1660e01b81526004016122e29493929190613120565b602060405180830381600087803b1580156122fc57600080fd5b505af192505050801561232d57506040513d601f19601f8201168201806040525081019061232a9190612dde565b60015b6123a7573d806000811461235d576040519150601f19603f3d011682016040523d82523d6000602084013e612362565b606091505b5060008151141561239f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461240990613568565b80601f016020809104026020016040519081016040528092919081815260200182805461243590613568565b80156124825780601f1061245757610100808354040283529160200191612482565b820191906000526020600020905b81548152906001019060200180831161246557829003601f168201915b5050505050905090565b606060008214156124d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125e8565b600082905060005b600082146125065780806124ef906135cb565b915050600a826124ff91906133f3565b91506124dc565b60008167ffffffffffffffff81111561252257612521613701565b5b6040519080825280601f01601f1916602001820160405280156125545781602001600182028036833780820191505090505b5090505b600085146125e15760018261256d919061347e565b9150600a8561257c9190613614565b6030612588919061339d565b60f81b81838151811061259e5761259d6136d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125da91906133f3565b9450612558565b8093505050505b919050565b6125fa838383600161260b565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612678576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156126b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126c060008683876125ff565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561288a57506128898773ffffffffffffffffffffffffffffffffffffffff16612287565b5b15612950575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ff600088848060010195508861229a565b612935576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561289057826000541461294b57600080fd5b6129bc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612951575b8160008190555050506129d26000868387612605565b5050505050565b8280546129e590613568565b90600052602060002090601f016020900481019282612a075760008555612a4e565b82601f10612a2057803560ff1916838001178555612a4e565b82800160010185558215612a4e579182015b82811115612a4d578235825591602001919060010190612a32565b5b509050612a5b9190612aa2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612abb576000816000905550600101612aa3565b5090565b6000612ad2612acd84613329565b613304565b905082815260208101848484011115612aee57612aed61373f565b5b612af9848285613526565b509392505050565b600081359050612b10816139e0565b92915050565b600081359050612b25816139f7565b92915050565b600081359050612b3a81613a0e565b92915050565b600081519050612b4f81613a0e565b92915050565b600082601f830112612b6a57612b69613735565b5b8135612b7a848260208601612abf565b91505092915050565b60008083601f840112612b9957612b98613735565b5b8235905067ffffffffffffffff811115612bb657612bb5613730565b5b602083019150836001820283011115612bd257612bd161373a565b5b9250929050565b600081359050612be881613a25565b92915050565b600060208284031215612c0457612c03613749565b5b6000612c1284828501612b01565b91505092915050565b60008060408385031215612c3257612c31613749565b5b6000612c4085828601612b01565b9250506020612c5185828601612b01565b9150509250929050565b600080600060608486031215612c7457612c73613749565b5b6000612c8286828701612b01565b9350506020612c9386828701612b01565b9250506040612ca486828701612bd9565b9150509250925092565b60008060008060808587031215612cc857612cc7613749565b5b6000612cd687828801612b01565b9450506020612ce787828801612b01565b9350506040612cf887828801612bd9565b925050606085013567ffffffffffffffff811115612d1957612d18613744565b5b612d2587828801612b55565b91505092959194509250565b60008060408385031215612d4857612d47613749565b5b6000612d5685828601612b01565b9250506020612d6785828601612b16565b9150509250929050565b60008060408385031215612d8857612d87613749565b5b6000612d9685828601612b01565b9250506020612da785828601612bd9565b9150509250929050565b600060208284031215612dc757612dc6613749565b5b6000612dd584828501612b2b565b91505092915050565b600060208284031215612df457612df3613749565b5b6000612e0284828501612b40565b91505092915050565b60008060208385031215612e2257612e21613749565b5b600083013567ffffffffffffffff811115612e4057612e3f613744565b5b612e4c85828601612b83565b92509250509250929050565b600060208284031215612e6e57612e6d613749565b5b6000612e7c84828501612bd9565b91505092915050565b612e8e816134b2565b82525050565b612e9d816134c4565b82525050565b6000612eae8261335a565b612eb88185613370565b9350612ec8818560208601613535565b612ed18161374e565b840191505092915050565b6000612ee782613365565b612ef18185613381565b9350612f01818560208601613535565b612f0a8161374e565b840191505092915050565b6000612f2082613365565b612f2a8185613392565b9350612f3a818560208601613535565b80840191505092915050565b6000612f53602183613381565b9150612f5e8261375f565b604082019050919050565b6000612f76602683613381565b9150612f81826137ae565b604082019050919050565b6000612f99601283613381565b9150612fa4826137fd565b602082019050919050565b6000612fbc602d83613381565b9150612fc782613826565b604082019050919050565b6000612fdf601783613381565b9150612fea82613875565b602082019050919050565b6000613002603083613381565b915061300d8261389e565b604082019050919050565b6000613025600583613392565b9150613030826138ed565b600582019050919050565b6000613048602083613381565b915061305382613916565b602082019050919050565b600061306b601b83613381565b91506130768261393f565b602082019050919050565b600061308e600883613381565b915061309982613968565b602082019050919050565b60006130b1602583613381565b91506130bc82613991565b604082019050919050565b6130d08161351c565b82525050565b60006130e28285612f15565b91506130ee8284612f15565b91506130f982613018565b91508190509392505050565b600060208201905061311a6000830184612e85565b92915050565b60006080820190506131356000830187612e85565b6131426020830186612e85565b61314f60408301856130c7565b81810360608301526131618184612ea3565b905095945050505050565b60006020820190506131816000830184612e94565b92915050565b600060208201905081810360008301526131a18184612edc565b905092915050565b600060208201905081810360008301526131c281612f46565b9050919050565b600060208201905081810360008301526131e281612f69565b9050919050565b6000602082019050818103600083015261320281612f8c565b9050919050565b6000602082019050818103600083015261322281612faf565b9050919050565b6000602082019050818103600083015261324281612fd2565b9050919050565b6000602082019050818103600083015261326281612ff5565b9050919050565b600060208201905081810360008301526132828161303b565b9050919050565b600060208201905081810360008301526132a28161305e565b9050919050565b600060208201905081810360008301526132c281613081565b9050919050565b600060208201905081810360008301526132e2816130a4565b9050919050565b60006020820190506132fe60008301846130c7565b92915050565b600061330e61331f565b905061331a828261359a565b919050565b6000604051905090565b600067ffffffffffffffff82111561334457613343613701565b5b61334d8261374e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133a88261351c565b91506133b38361351c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133e8576133e7613645565b5b828201905092915050565b60006133fe8261351c565b91506134098361351c565b92508261341957613418613674565b5b828204905092915050565b600061342f8261351c565b915061343a8361351c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561347357613472613645565b5b828202905092915050565b60006134898261351c565b91506134948361351c565b9250828210156134a7576134a6613645565b5b828203905092915050565b60006134bd826134fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613553578082015181840152602081019050613538565b83811115613562576000848401525b50505050565b6000600282049050600182168061358057607f821691505b60208210811415613594576135936136a3565b5b50919050565b6135a38261374e565b810181811067ffffffffffffffff821117156135c2576135c1613701565b5b80604052505050565b60006135d68261351c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561360957613608613645565b5b600182019050919050565b600061361f8261351c565b915061362a8361351c565b92508261363a57613639613674565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f5175616e746974792065786365656473206d6178207175616e7469747920706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f436f6e74726163742063616c6c6572206d7573742062652065787465726e616c60008201527f6c79206f776e6564206163636f756e7400000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642045544820616d6f756e742070726f76696465640000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f57616c6c65742068617320616c726561647920636c61696d65642073616c652060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b6139e9816134b2565b81146139f457600080fd5b50565b613a00816134c4565b8114613a0b57600080fd5b50565b613a17816134d0565b8114613a2257600080fd5b50565b613a2e8161351c565b8114613a3957600080fd5b5056fea2646970667358221220ed04fd2779cc161cb06f013457f7556b5bdbfd628835afa53770db5938cca92664736f6c63430008070033697066733a2f2f516d5468335864394c534874426e657978336336744a5168677363434c324d435855417a4c766d7768707969616d2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063d547cfb711610064578063d547cfb714610641578063e985e9c51461066c578063f2fde38b146106a9578063f43a22dc146106d2576101cd565b8063b88d4fde14610587578063bbaac02f146105b0578063c002d23d146105d9578063c87b56dd14610604576101cd565b80638da5cb5b116100d15780638da5cb5b146104ec57806395d89b4114610517578063a0712d6814610542578063a22cb4651461055e576101cd565b806370a082311461046d578063715018a6146104aa5780638cc54e7f146104c1576101cd565b80632126a9231161016f57806342842e0e1161013e57806342842e0e146103b357806351cff8d9146103dc578063564566a8146104055780636352211e14610430576101cd565b80632126a9231461030d57806323b872dd1461033657806330176e131461035f57806332cb6b0c14610388576101cd565b8063081812fc116101ab578063081812fc14610251578063095ea7b31461028e5780630f2cdd6c146102b757806318160ddd146102e2576101cd565b806301ffc9a7146101d2578063049c5c491461020f57806306fdde0314610226575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612db1565b6106fd565b604051610206919061316c565b60405180910390f35b34801561021b57600080fd5b506102246107df565b005b34801561023257600080fd5b5061023b610887565b6040516102489190613187565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190612e58565b610919565b6040516102859190613105565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b09190612d71565b610995565b005b3480156102c357600080fd5b506102cc610aa0565b6040516102d991906132e9565b60405180910390f35b3480156102ee57600080fd5b506102f7610aa5565b60405161030491906132e9565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612d71565b610abc565b005b34801561034257600080fd5b5061035d60048036038101906103589190612c5b565b610b9c565b005b34801561036b57600080fd5b5061038660048036038101906103819190612e0b565b610bac565b005b34801561039457600080fd5b5061039d610c3e565b6040516103aa91906132e9565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612c5b565b610c44565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612bee565b610c64565b005b34801561041157600080fd5b5061041a610d30565b604051610427919061316c565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612e58565b610d43565b6040516104649190613105565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612bee565b610d59565b6040516104a191906132e9565b60405180910390f35b3480156104b657600080fd5b506104bf610e29565b005b3480156104cd57600080fd5b506104d6610eb1565b6040516104e39190613187565b60405180910390f35b3480156104f857600080fd5b50610501610f43565b60405161050e9190613105565b60405180910390f35b34801561052357600080fd5b5061052c610f6d565b6040516105399190613187565b60405180910390f35b61055c60048036038101906105579190612e58565b610fff565b005b34801561056a57600080fd5b5061058560048036038101906105809190612d31565b6112d6565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612cae565b61144e565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612e0b565b6114ca565b005b3480156105e557600080fd5b506105ee61155c565b6040516105fb91906132e9565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612e58565b611567565b6040516106389190613187565b60405180910390f35b34801561064d57600080fd5b50610656611689565b6040516106639190613187565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612c1b565b61171b565b6040516106a0919061316c565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612bee565b6117af565b005b3480156106de57600080fd5b506106e76118a7565b6040516106f491906132e9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d857506107d7826118ac565b5b9050919050565b6107e7611916565b73ffffffffffffffffffffffffffffffffffffffff16610805610f43565b73ffffffffffffffffffffffffffffffffffffffff161461085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290613269565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b60606002805461089690613568565b80601f01602080910402602001604051908101604052809291908181526020018280546108c290613568565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b60006109248261191e565b61095a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a082610d43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a08576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a27611916565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a595750610a5781610a52611916565b61171b565b155b15610a90576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a9b83838361196c565b505050565b600281565b6000610aaf611a1e565b6001546000540303905090565b610ac4611916565b73ffffffffffffffffffffffffffffffffffffffff16610ae2610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613269565b60405180910390fd5b61029a81610b44610aa5565b610b4e919061339d565b10610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b85906132a9565b60405180910390fd5b610b988282611a23565b5050565b610ba7838383611a41565b505050565b610bb4611916565b73ffffffffffffffffffffffffffffffffffffffff16610bd2610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613269565b60405180910390fd5b8181600b9190610c399291906129d9565b505050565b61029a81565b610c5f8383836040518060200160405280600081525061144e565b505050565b610c6c611916565b73ffffffffffffffffffffffffffffffffffffffff16610c8a610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790613269565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b505050565b600860149054906101000a900460ff1681565b6000610d4e82611f32565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e31611916565b73ffffffffffffffffffffffffffffffffffffffff16610e4f610f43565b73ffffffffffffffffffffffffffffffffffffffff1614610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90613269565b60405180910390fd5b610eaf60006121c1565b565b6060600a8054610ec090613568565b80601f0160208091040260200160405190810160405280929190818152602001828054610eec90613568565b8015610f395780601f10610f0e57610100808354040283529160200191610f39565b820191906000526020600020905b815481529060010190602001808311610f1c57829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f7c90613568565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa890613568565b8015610ff55780601f10610fca57610100808354040283529160200191610ff5565b820191906000526020600020905b815481529060010190602001808311610fd857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613249565b60405180910390fd5b80600081116110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890613229565b60405180910390fd5b60028111156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613209565b60405180910390fd5b600860149054906101000a900460ff16611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906131e9565b60405180910390fd5b61029a82611150610aa5565b61115a919061339d565b111561119b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611192906132a9565b60405180910390fd5b6002600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061121d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611214906132c9565b60405180910390fd5b348266ea7aa67b2d00006112319190613424565b1115611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613289565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c1919061339d565b925050819055506112d23383611a23565b5050565b6112de611916565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611343576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611350611916565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fd611916565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611442919061316c565b60405180910390a35050565b611459848484611a41565b6114788373ffffffffffffffffffffffffffffffffffffffff16612287565b801561148d575061148b8484848461229a565b155b156114c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6114d2611916565b73ffffffffffffffffffffffffffffffffffffffff166114f0610f43565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613269565b60405180910390fd5b8181600a91906115579291906129d9565b505050565b66ea7aa67b2d000081565b60606115728261191e565b6115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906131a9565b60405180910390fd5b60006115bb6123fa565b9050600081511161165657600a80546115d390613568565b80601f01602080910402602001604051908101604052809291908181526020018280546115ff90613568565b801561164c5780601f106116215761010080835404028352916020019161164c565b820191906000526020600020905b81548152906001019060200180831161162f57829003601f168201915b5050505050611681565b806116608461248c565b6040516020016116719291906130d6565b6040516020818303038152906040525b915050919050565b6060600b805461169890613568565b80601f01602080910402602001604051908101604052809291908181526020018280546116c490613568565b80156117115780601f106116e657610100808354040283529160200191611711565b820191906000526020600020905b8154815290600101906020018083116116f457829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117b7611916565b73ffffffffffffffffffffffffffffffffffffffff166117d5610f43565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611892906131c9565b60405180910390fd5b6118a4816121c1565b50565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611929611a1e565b11158015611938575060005482105b8015611965575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611a3d8282604051806020016040528060008152506125ed565b5050565b6000611a4c82611f32565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a73611916565b73ffffffffffffffffffffffffffffffffffffffff161480611aa65750611aa58260000151611aa0611916565b61171b565b5b80611aeb5750611ab4611916565b73ffffffffffffffffffffffffffffffffffffffff16611ad384610919565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b24576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0185858560016125ff565b611c11600084846000015161196c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ec257600054811015611ec15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2b8585856001612605565b5050505050565b611f3a612a5f565b600082905080611f48611a1e565b11158015611f57575060005481105b1561218a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461206c5780925050506121bc565b5b60011561218757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121825780925050506121bc565b61206d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c0611916565b8786866040518563ffffffff1660e01b81526004016122e29493929190613120565b602060405180830381600087803b1580156122fc57600080fd5b505af192505050801561232d57506040513d601f19601f8201168201806040525081019061232a9190612dde565b60015b6123a7573d806000811461235d576040519150601f19603f3d011682016040523d82523d6000602084013e612362565b606091505b5060008151141561239f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461240990613568565b80601f016020809104026020016040519081016040528092919081815260200182805461243590613568565b80156124825780601f1061245757610100808354040283529160200191612482565b820191906000526020600020905b81548152906001019060200180831161246557829003601f168201915b5050505050905090565b606060008214156124d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125e8565b600082905060005b600082146125065780806124ef906135cb565b915050600a826124ff91906133f3565b91506124dc565b60008167ffffffffffffffff81111561252257612521613701565b5b6040519080825280601f01601f1916602001820160405280156125545781602001600182028036833780820191505090505b5090505b600085146125e15760018261256d919061347e565b9150600a8561257c9190613614565b6030612588919061339d565b60f81b81838151811061259e5761259d6136d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125da91906133f3565b9450612558565b8093505050505b919050565b6125fa838383600161260b565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612678576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156126b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126c060008683876125ff565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561288a57506128898773ffffffffffffffffffffffffffffffffffffffff16612287565b5b15612950575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ff600088848060010195508861229a565b612935576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561289057826000541461294b57600080fd5b6129bc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612951575b8160008190555050506129d26000868387612605565b5050505050565b8280546129e590613568565b90600052602060002090601f016020900481019282612a075760008555612a4e565b82601f10612a2057803560ff1916838001178555612a4e565b82800160010185558215612a4e579182015b82811115612a4d578235825591602001919060010190612a32565b5b509050612a5b9190612aa2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612abb576000816000905550600101612aa3565b5090565b6000612ad2612acd84613329565b613304565b905082815260208101848484011115612aee57612aed61373f565b5b612af9848285613526565b509392505050565b600081359050612b10816139e0565b92915050565b600081359050612b25816139f7565b92915050565b600081359050612b3a81613a0e565b92915050565b600081519050612b4f81613a0e565b92915050565b600082601f830112612b6a57612b69613735565b5b8135612b7a848260208601612abf565b91505092915050565b60008083601f840112612b9957612b98613735565b5b8235905067ffffffffffffffff811115612bb657612bb5613730565b5b602083019150836001820283011115612bd257612bd161373a565b5b9250929050565b600081359050612be881613a25565b92915050565b600060208284031215612c0457612c03613749565b5b6000612c1284828501612b01565b91505092915050565b60008060408385031215612c3257612c31613749565b5b6000612c4085828601612b01565b9250506020612c5185828601612b01565b9150509250929050565b600080600060608486031215612c7457612c73613749565b5b6000612c8286828701612b01565b9350506020612c9386828701612b01565b9250506040612ca486828701612bd9565b9150509250925092565b60008060008060808587031215612cc857612cc7613749565b5b6000612cd687828801612b01565b9450506020612ce787828801612b01565b9350506040612cf887828801612bd9565b925050606085013567ffffffffffffffff811115612d1957612d18613744565b5b612d2587828801612b55565b91505092959194509250565b60008060408385031215612d4857612d47613749565b5b6000612d5685828601612b01565b9250506020612d6785828601612b16565b9150509250929050565b60008060408385031215612d8857612d87613749565b5b6000612d9685828601612b01565b9250506020612da785828601612bd9565b9150509250929050565b600060208284031215612dc757612dc6613749565b5b6000612dd584828501612b2b565b91505092915050565b600060208284031215612df457612df3613749565b5b6000612e0284828501612b40565b91505092915050565b60008060208385031215612e2257612e21613749565b5b600083013567ffffffffffffffff811115612e4057612e3f613744565b5b612e4c85828601612b83565b92509250509250929050565b600060208284031215612e6e57612e6d613749565b5b6000612e7c84828501612bd9565b91505092915050565b612e8e816134b2565b82525050565b612e9d816134c4565b82525050565b6000612eae8261335a565b612eb88185613370565b9350612ec8818560208601613535565b612ed18161374e565b840191505092915050565b6000612ee782613365565b612ef18185613381565b9350612f01818560208601613535565b612f0a8161374e565b840191505092915050565b6000612f2082613365565b612f2a8185613392565b9350612f3a818560208601613535565b80840191505092915050565b6000612f53602183613381565b9150612f5e8261375f565b604082019050919050565b6000612f76602683613381565b9150612f81826137ae565b604082019050919050565b6000612f99601283613381565b9150612fa4826137fd565b602082019050919050565b6000612fbc602d83613381565b9150612fc782613826565b604082019050919050565b6000612fdf601783613381565b9150612fea82613875565b602082019050919050565b6000613002603083613381565b915061300d8261389e565b604082019050919050565b6000613025600583613392565b9150613030826138ed565b600582019050919050565b6000613048602083613381565b915061305382613916565b602082019050919050565b600061306b601b83613381565b91506130768261393f565b602082019050919050565b600061308e600883613381565b915061309982613968565b602082019050919050565b60006130b1602583613381565b91506130bc82613991565b604082019050919050565b6130d08161351c565b82525050565b60006130e28285612f15565b91506130ee8284612f15565b91506130f982613018565b91508190509392505050565b600060208201905061311a6000830184612e85565b92915050565b60006080820190506131356000830187612e85565b6131426020830186612e85565b61314f60408301856130c7565b81810360608301526131618184612ea3565b905095945050505050565b60006020820190506131816000830184612e94565b92915050565b600060208201905081810360008301526131a18184612edc565b905092915050565b600060208201905081810360008301526131c281612f46565b9050919050565b600060208201905081810360008301526131e281612f69565b9050919050565b6000602082019050818103600083015261320281612f8c565b9050919050565b6000602082019050818103600083015261322281612faf565b9050919050565b6000602082019050818103600083015261324281612fd2565b9050919050565b6000602082019050818103600083015261326281612ff5565b9050919050565b600060208201905081810360008301526132828161303b565b9050919050565b600060208201905081810360008301526132a28161305e565b9050919050565b600060208201905081810360008301526132c281613081565b9050919050565b600060208201905081810360008301526132e2816130a4565b9050919050565b60006020820190506132fe60008301846130c7565b92915050565b600061330e61331f565b905061331a828261359a565b919050565b6000604051905090565b600067ffffffffffffffff82111561334457613343613701565b5b61334d8261374e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133a88261351c565b91506133b38361351c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133e8576133e7613645565b5b828201905092915050565b60006133fe8261351c565b91506134098361351c565b92508261341957613418613674565b5b828204905092915050565b600061342f8261351c565b915061343a8361351c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561347357613472613645565b5b828202905092915050565b60006134898261351c565b91506134948361351c565b9250828210156134a7576134a6613645565b5b828203905092915050565b60006134bd826134fc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613553578082015181840152602081019050613538565b83811115613562576000848401525b50505050565b6000600282049050600182168061358057607f821691505b60208210811415613594576135936136a3565b5b50919050565b6135a38261374e565b810181811067ffffffffffffffff821117156135c2576135c1613701565b5b80604052505050565b60006135d68261351c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561360957613608613645565b5b600182019050919050565b600061361f8261351c565b915061362a8361351c565b92508261363a57613639613674565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f5175616e746974792065786365656473206d6178207175616e7469747920706560008201527f72207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f436f6e74726163742063616c6c6572206d7573742062652065787465726e616c60008201527f6c79206f776e6564206163636f756e7400000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642045544820616d6f756e742070726f76696465640000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f57616c6c65742068617320616c726561647920636c61696d65642073616c652060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b6139e9816134b2565b81146139f457600080fd5b50565b613a00816134c4565b8114613a0b57600080fd5b50565b613a17816134d0565b8114613a2257600080fd5b50565b613a2e8161351c565b8114613a3957600080fd5b5056fea2646970667358221220ed04fd2779cc161cb06f013457f7556b5bdbfd628835afa53770db5938cca92664736f6c63430008070033

Deployed Bytecode Sourcemap

45451:2790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27920:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46390:94;;;;;;;;;;;;;:::i;:::-;;31305:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32808:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32371:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45679:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27169:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47007:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33665:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47402:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45530:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33906:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48093:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45730:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31114:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28289:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;47297:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31474:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46492:507;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33084:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34162:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47192:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45577:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47738:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47631:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33434:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45634:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27920:305;28022:4;28074:25;28059:40;;;:11;:40;;;;:105;;;;28131:33;28116:48;;;:11;:48;;;;28059:105;:158;;;;28181:36;28205:11;28181:23;:36::i;:::-;28059:158;28039:178;;27920:305;;;:::o;46390:94::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46464:12:::1;;;;;;;;;;;46463:13;46448:12;;:28;;;;;;;;;;;;;;;;;;46390:94::o:0;31305:100::-;31359:13;31392:5;31385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31305:100;:::o;32808:204::-;32876:7;32901:16;32909:7;32901;:16::i;:::-;32896:64;;32926:34;;;;;;;;;;;;;;32896:64;32980:15;:24;32996:7;32980:24;;;;;;;;;;;;;;;;;;;;;32973:31;;32808:204;;;:::o;32371:371::-;32444:13;32460:24;32476:7;32460:15;:24::i;:::-;32444:40;;32505:5;32499:11;;:2;:11;;;32495:48;;;32519:24;;;;;;;;;;;;;;32495:48;32576:5;32560:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32586:37;32603:5;32610:12;:10;:12::i;:::-;32586:16;:37::i;:::-;32585:38;32560:63;32556:138;;;32647:35;;;;;;;;;;;;;;32556:138;32706:28;32715:2;32719:7;32728:5;32706:8;:28::i;:::-;32433:309;32371:371;;:::o;45679:42::-;45720:1;45679:42;:::o;27169:303::-;27213:7;27438:15;:13;:15::i;:::-;27423:12;;27407:13;;:28;:46;27400:53;;27169:303;:::o;47007:177::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45567:3:::1;47108:8;47092:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;47084:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47153:23;47163:2;47167:8;47153:9;:23::i;:::-;47007:177:::0;;:::o;33665:170::-;33799:28;33809:4;33815:2;33819:7;33799:9;:28::i;:::-;33665:170;;;:::o;47402:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47494:3:::1;;47478:13;:19;;;;;;;:::i;:::-;;47402:103:::0;;:::o;45530:40::-;45567:3;45530:40;:::o;33906:185::-;34044:39;34061:4;34067:2;34071:7;34044:39;;;;;;;;;;;;:16;:39::i;:::-;33906:185;;;:::o;48093:145::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48151:15:::1;48169:21;48151:39;;48209:2;48201:20;;:29;48222:7;48201:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48140:98;48093:145:::0;:::o;45730:32::-;;;;;;;;;;;;;:::o;31114:124::-;31178:7;31205:20;31217:7;31205:11;:20::i;:::-;:25;;;31198:32;;31114:124;;;:::o;28289:206::-;28353:7;28394:1;28377:19;;:5;:19;;;28373:60;;;28405:28;;;;;;;;;;;;;;28373:60;28459:12;:19;28472:5;28459:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28451:36;;28444:43;;28289:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;47297:93::-;47339:13;47372:10;47365:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47297:93;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;31474:104::-;31530:13;31563:7;31556:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31474:104;:::o;46492:507::-;46023:10;46010:23;;:9;:23;;;46002:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46567:8:::1;46189:1;46178:8;:12;46170:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;45671:1;46237:8;:22;;46229:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;46596:12:::2;;;;;;;;;;;46588:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45567:3;46666:8;46650:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;46642:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45720:1;46722:12;:24;46735:10;46722:24;;;;;;;;;;;;;;;;:41;46714:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;46859:9;46847:8;45614:11;46834:21;;;;:::i;:::-;:34;;46826:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46941:8;46913:12;:24;46926:10;46913:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;46960:31;46970:10;46982:8;46960:9;:31::i;:::-;46097:1:::1;46492:507:::0;:::o;33084:279::-;33187:12;:10;:12::i;:::-;33175:24;;:8;:24;;;33171:54;;;33208:17;;;;;;;;;;;;;;33171:54;33283:8;33238:18;:32;33257:12;:10;:12::i;:::-;33238:32;;;;;;;;;;;;;;;:42;33271:8;33238:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33336:8;33307:48;;33322:12;:10;:12::i;:::-;33307:48;;;33346:8;33307:48;;;;;;:::i;:::-;;;;;;;;33084:279;;:::o;34162:369::-;34329:28;34339:4;34345:2;34349:7;34329:9;:28::i;:::-;34372:15;:2;:13;;;:15::i;:::-;:76;;;;;34392:56;34423:4;34429:2;34433:7;34442:5;34392:30;:56::i;:::-;34391:57;34372:76;34368:156;;;34472:40;;;;;;;;;;;;;;34368:156;34162:369;;;;:::o;47192:97::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47278:3:::1;;47265:10;:16;;;;;;;:::i;:::-;;47192:97:::0;;:::o;45577:48::-;45614:11;45577:48;:::o;47738:348::-;47803:13;47837:16;47845:7;47837;:16::i;:::-;47829:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47902:28;47933:10;:8;:10::i;:::-;47902:41;;47992:1;47967:14;47961:28;:32;:117;;48068:10;47961:117;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48020:14;48036:18;:7;:16;:18::i;:::-;48003:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47961:117;47954:124;;;47738:348;;;:::o;47631:99::-;47676:13;47709;47702:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47631:99;:::o;33434:164::-;33531:4;33555:18;:25;33574:5;33555:25;;;;;;;;;;;;;;;:35;33581:8;33555:35;;;;;;;;;;;;;;;;;;;;;;;;;33548:42;;33434:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;45634:38::-;45671:1;45634:38;:::o;16511:157::-;16596:4;16635:25;16620:40;;;:11;:40;;;;16613:47;;16511:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;34786:187::-;34843:4;34886:7;34867:15;:13;:15::i;:::-;:26;;:53;;;;;34907:13;;34897:7;:23;34867:53;:98;;;;;34938:11;:20;34950:7;34938:20;;;;;;;;;;;:27;;;;;;;;;;;;34937:28;34867:98;34860:105;;34786:187;;;:::o;42397:196::-;42539:2;42512:15;:24;42528:7;42512:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42577:7;42573:2;42557:28;;42566:5;42557:28;;;;;;;;;;;;42397:196;;;:::o;26893:92::-;26949:7;26893:92;:::o;34981:104::-;35050:27;35060:2;35064:8;35050:27;;;;;;;;;;;;:9;:27::i;:::-;34981:104;;:::o;37899:2112::-;38014:35;38052:20;38064:7;38052:11;:20::i;:::-;38014:58;;38085:22;38127:13;:18;;;38111:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38162:50;38179:13;:18;;;38199:12;:10;:12::i;:::-;38162:16;:50::i;:::-;38111:101;:154;;;;38253:12;:10;:12::i;:::-;38229:36;;:20;38241:7;38229:11;:20::i;:::-;:36;;;38111:154;38085:181;;38284:17;38279:66;;38310:35;;;;;;;;;;;;;;38279:66;38382:4;38360:26;;:13;:18;;;:26;;;38356:67;;38395:28;;;;;;;;;;;;;;38356:67;38452:1;38438:16;;:2;:16;;;38434:52;;;38463:23;;;;;;;;;;;;;;38434:52;38499:43;38521:4;38527:2;38531:7;38540:1;38499:21;:43::i;:::-;38607:49;38624:1;38628:7;38637:13;:18;;;38607:8;:49::i;:::-;38982:1;38952:12;:18;38965:4;38952:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39026:1;38998:12;:16;39011:2;38998:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39072:2;39044:11;:20;39056:7;39044:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39134:15;39089:11;:20;39101:7;39089:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39402:19;39434:1;39424:7;:11;39402:33;;39495:1;39454:43;;:11;:24;39466:11;39454:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39450:445;;;39679:13;;39665:11;:27;39661:219;;;39749:13;:18;;;39717:11;:24;39729:11;39717:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;39832:13;:28;;;39790:11;:24;39802:11;39790:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;39661:219;39450:445;38927:979;39942:7;39938:2;39923:27;;39932:4;39923:27;;;;;;;;;;;;39961:42;39982:4;39988:2;39992:7;40001:1;39961:20;:42::i;:::-;38003:2008;;37899:2112;;;:::o;29944:1108::-;30005:21;;:::i;:::-;30039:12;30054:7;30039:22;;30122:4;30103:15;:13;:15::i;:::-;:23;;:47;;;;;30137:13;;30130:4;:20;30103:47;30099:886;;;30171:31;30205:11;:17;30217:4;30205:17;;;;;;;;;;;30171:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30246:9;:16;;;30241:729;;30317:1;30291:28;;:9;:14;;;:28;;;30287:101;;30355:9;30348:16;;;;;;30287:101;30690:261;30697:4;30690:261;;;30730:6;;;;;;;;30775:11;:17;30787:4;30775:17;;;;;;;;;;;30763:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30849:1;30823:28;;:9;:14;;;:28;;;30819:109;;30891:9;30884:16;;;;;;30819:109;30690:261;;;30241:729;30152:833;30099:886;31013:31;;;;;;;;;;;;;;29944:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;6367:387::-;6427:4;6635:12;6702:7;6690:20;6682:28;;6745:1;6738:4;:8;6731:15;;;6367:387;;;:::o;43085:667::-;43248:4;43285:2;43269:36;;;43306:12;:10;:12::i;:::-;43320:4;43326:7;43335:5;43269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43265:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43520:1;43503:6;:13;:18;43499:235;;;43549:40;;;;;;;;;;;;;;43499:235;43692:6;43686:13;43677:6;43673:2;43669:15;43662:38;43265:480;43398:45;;;43388:55;;;:6;:55;;;;43381:62;;;43085:667;;;;;;:::o;47517:106::-;47569:13;47602;47595:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47517:106;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;35448:163::-;35571:32;35577:2;35581:8;35591:5;35598:4;35571:5;:32::i;:::-;35448:163;;;:::o;44400:159::-;;;;;:::o;45218:158::-;;;;;:::o;35870:1775::-;36009:20;36032:13;;36009:36;;36074:1;36060:16;;:2;:16;;;36056:48;;;36085:19;;;;;;;;;;;;;;36056:48;36131:1;36119:8;:13;36115:44;;;36141:18;;;;;;;;;;;;;;36115:44;36172:61;36202:1;36206:2;36210:12;36224:8;36172:21;:61::i;:::-;36545:8;36510:12;:16;36523:2;36510:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36609:8;36569:12;:16;36582:2;36569:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36668:2;36635:11;:25;36647:12;36635:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36735:15;36685:11;:25;36697:12;36685:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36768:20;36791:12;36768:35;;36818:11;36847:8;36832:12;:23;36818:37;;36876:4;:23;;;;;36884:15;:2;:13;;;:15::i;:::-;36876:23;36872:641;;;36920:314;36976:12;36972:2;36951:38;;36968:1;36951:38;;;;;;;;;;;;37017:69;37056:1;37060:2;37064:14;;;;;;37080:5;37017:30;:69::i;:::-;37012:174;;37122:40;;;;;;;;;;;;;;37012:174;37229:3;37213:12;:19;;36920:314;;37315:12;37298:13;;:29;37294:43;;37329:8;;;37294:43;36872:641;;;37378:120;37434:14;;;;;;37430:2;37409:40;;37426:1;37409:40;;;;;;;;;;;;37493:3;37477:12;:19;;37378:120;;36872:641;37543:12;37527:13;:28;;;;36485:1082;;37577:60;37606:1;37610:2;37614:12;37628:8;37577:20;:60::i;:::-;35998:1647;35870:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:400::-;10723:3;10744:84;10826:1;10821:3;10744:84;:::i;:::-;10737:91;;10837:93;10926:3;10837:93;:::i;:::-;10955:1;10950:3;10946:11;10939:18;;10563:400;;;:::o;10969:366::-;11111:3;11132:67;11196:2;11191:3;11132:67;:::i;:::-;11125:74;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;10969:366;;;:::o;11341:::-;11483:3;11504:67;11568:2;11563:3;11504:67;:::i;:::-;11497:74;;11580:93;11669:3;11580:93;:::i;:::-;11698:2;11693:3;11689:12;11682:19;;11341:366;;;:::o;11713:365::-;11855:3;11876:66;11940:1;11935:3;11876:66;:::i;:::-;11869:73;;11951:93;12040:3;11951:93;:::i;:::-;12069:2;12064:3;12060:12;12053:19;;11713:365;;;:::o;12084:366::-;12226:3;12247:67;12311:2;12306:3;12247:67;:::i;:::-;12240:74;;12323:93;12412:3;12323:93;:::i;:::-;12441:2;12436:3;12432:12;12425:19;;12084:366;;;:::o;12456:118::-;12543:24;12561:5;12543:24;:::i;:::-;12538:3;12531:37;12456:118;;:::o;12580:701::-;12861:3;12883:95;12974:3;12965:6;12883:95;:::i;:::-;12876:102;;12995:95;13086:3;13077:6;12995:95;:::i;:::-;12988:102;;13107:148;13251:3;13107:148;:::i;:::-;13100:155;;13272:3;13265:10;;12580:701;;;;;:::o;13287:222::-;13380:4;13418:2;13407:9;13403:18;13395:26;;13431:71;13499:1;13488:9;13484:17;13475:6;13431:71;:::i;:::-;13287:222;;;;:::o;13515:640::-;13710:4;13748:3;13737:9;13733:19;13725:27;;13762:71;13830:1;13819:9;13815:17;13806:6;13762:71;:::i;:::-;13843:72;13911:2;13900:9;13896:18;13887:6;13843:72;:::i;:::-;13925;13993:2;13982:9;13978:18;13969:6;13925:72;:::i;:::-;14044:9;14038:4;14034:20;14029:2;14018:9;14014:18;14007:48;14072:76;14143:4;14134:6;14072:76;:::i;:::-;14064:84;;13515:640;;;;;;;:::o;14161:210::-;14248:4;14286:2;14275:9;14271:18;14263:26;;14299:65;14361:1;14350:9;14346:17;14337:6;14299:65;:::i;:::-;14161:210;;;;:::o;14377:313::-;14490:4;14528:2;14517:9;14513:18;14505:26;;14577:9;14571:4;14567:20;14563:1;14552:9;14548:17;14541:47;14605:78;14678:4;14669:6;14605:78;:::i;:::-;14597:86;;14377:313;;;;:::o;14696:419::-;14862:4;14900:2;14889:9;14885:18;14877:26;;14949:9;14943:4;14939:20;14935:1;14924:9;14920:17;14913:47;14977:131;15103:4;14977:131;:::i;:::-;14969:139;;14696:419;;;:::o;15121:::-;15287:4;15325:2;15314:9;15310:18;15302:26;;15374:9;15368:4;15364:20;15360:1;15349:9;15345:17;15338:47;15402:131;15528:4;15402:131;:::i;:::-;15394:139;;15121:419;;;:::o;15546:::-;15712:4;15750:2;15739:9;15735:18;15727:26;;15799:9;15793:4;15789:20;15785:1;15774:9;15770:17;15763:47;15827:131;15953:4;15827:131;:::i;:::-;15819:139;;15546:419;;;:::o;15971:::-;16137:4;16175:2;16164:9;16160:18;16152:26;;16224:9;16218:4;16214:20;16210:1;16199:9;16195:17;16188:47;16252:131;16378:4;16252:131;:::i;:::-;16244:139;;15971:419;;;:::o;16396:::-;16562:4;16600:2;16589:9;16585:18;16577:26;;16649:9;16643:4;16639:20;16635:1;16624:9;16620:17;16613:47;16677:131;16803:4;16677:131;:::i;:::-;16669:139;;16396:419;;;:::o;16821:::-;16987:4;17025:2;17014:9;17010:18;17002:26;;17074:9;17068:4;17064:20;17060:1;17049:9;17045:17;17038:47;17102:131;17228:4;17102:131;:::i;:::-;17094:139;;16821:419;;;:::o;17246:::-;17412:4;17450:2;17439:9;17435:18;17427:26;;17499:9;17493:4;17489:20;17485:1;17474:9;17470:17;17463:47;17527:131;17653:4;17527:131;:::i;:::-;17519:139;;17246:419;;;:::o;17671:::-;17837:4;17875:2;17864:9;17860:18;17852:26;;17924:9;17918:4;17914:20;17910:1;17899:9;17895:17;17888:47;17952:131;18078:4;17952:131;:::i;:::-;17944:139;;17671:419;;;:::o;18096:::-;18262:4;18300:2;18289:9;18285:18;18277:26;;18349:9;18343:4;18339:20;18335:1;18324:9;18320:17;18313:47;18377:131;18503:4;18377:131;:::i;:::-;18369:139;;18096:419;;;:::o;18521:::-;18687:4;18725:2;18714:9;18710:18;18702:26;;18774:9;18768:4;18764:20;18760:1;18749:9;18745:17;18738:47;18802:131;18928:4;18802:131;:::i;:::-;18794:139;;18521:419;;;:::o;18946:222::-;19039:4;19077:2;19066:9;19062:18;19054:26;;19090:71;19158:1;19147:9;19143:17;19134:6;19090:71;:::i;:::-;18946:222;;;;:::o;19174:129::-;19208:6;19235:20;;:::i;:::-;19225:30;;19264:33;19292:4;19284:6;19264:33;:::i;:::-;19174:129;;;:::o;19309:75::-;19342:6;19375:2;19369:9;19359:19;;19309:75;:::o;19390:307::-;19451:4;19541:18;19533:6;19530:30;19527:56;;;19563:18;;:::i;:::-;19527:56;19601:29;19623:6;19601:29;:::i;:::-;19593:37;;19685:4;19679;19675:15;19667:23;;19390:307;;;:::o;19703:98::-;19754:6;19788:5;19782:12;19772:22;;19703:98;;;:::o;19807:99::-;19859:6;19893:5;19887:12;19877:22;;19807:99;;;:::o;19912:168::-;19995:11;20029:6;20024:3;20017:19;20069:4;20064:3;20060:14;20045:29;;19912:168;;;;:::o;20086:169::-;20170:11;20204:6;20199:3;20192:19;20244:4;20239:3;20235:14;20220:29;;20086:169;;;;:::o;20261:148::-;20363:11;20400:3;20385:18;;20261:148;;;;:::o;20415:305::-;20455:3;20474:20;20492:1;20474:20;:::i;:::-;20469:25;;20508:20;20526:1;20508:20;:::i;:::-;20503:25;;20662:1;20594:66;20590:74;20587:1;20584:81;20581:107;;;20668:18;;:::i;:::-;20581:107;20712:1;20709;20705:9;20698:16;;20415:305;;;;:::o;20726:185::-;20766:1;20783:20;20801:1;20783:20;:::i;:::-;20778:25;;20817:20;20835:1;20817:20;:::i;:::-;20812:25;;20856:1;20846:35;;20861:18;;:::i;:::-;20846:35;20903:1;20900;20896:9;20891:14;;20726:185;;;;:::o;20917:348::-;20957:7;20980:20;20998:1;20980:20;:::i;:::-;20975:25;;21014:20;21032:1;21014:20;:::i;:::-;21009:25;;21202:1;21134:66;21130:74;21127:1;21124:81;21119:1;21112:9;21105:17;21101:105;21098:131;;;21209:18;;:::i;:::-;21098:131;21257:1;21254;21250:9;21239:20;;20917:348;;;;:::o;21271:191::-;21311:4;21331:20;21349:1;21331:20;:::i;:::-;21326:25;;21365:20;21383:1;21365:20;:::i;:::-;21360:25;;21404:1;21401;21398:8;21395:34;;;21409:18;;:::i;:::-;21395:34;21454:1;21451;21447:9;21439:17;;21271:191;;;;:::o;21468:96::-;21505:7;21534:24;21552:5;21534:24;:::i;:::-;21523:35;;21468:96;;;:::o;21570:90::-;21604:7;21647:5;21640:13;21633:21;21622:32;;21570:90;;;:::o;21666:149::-;21702:7;21742:66;21735:5;21731:78;21720:89;;21666:149;;;:::o;21821:126::-;21858:7;21898:42;21891:5;21887:54;21876:65;;21821:126;;;:::o;21953:77::-;21990:7;22019:5;22008:16;;21953:77;;;:::o;22036:154::-;22120:6;22115:3;22110;22097:30;22182:1;22173:6;22168:3;22164:16;22157:27;22036:154;;;:::o;22196:307::-;22264:1;22274:113;22288:6;22285:1;22282:13;22274:113;;;22373:1;22368:3;22364:11;22358:18;22354:1;22349:3;22345:11;22338:39;22310:2;22307:1;22303:10;22298:15;;22274:113;;;22405:6;22402:1;22399:13;22396:101;;;22485:1;22476:6;22471:3;22467:16;22460:27;22396:101;22245:258;22196:307;;;:::o;22509:320::-;22553:6;22590:1;22584:4;22580:12;22570:22;;22637:1;22631:4;22627:12;22658:18;22648:81;;22714:4;22706:6;22702:17;22692:27;;22648:81;22776:2;22768:6;22765:14;22745:18;22742:38;22739:84;;;22795:18;;:::i;:::-;22739:84;22560:269;22509:320;;;:::o;22835:281::-;22918:27;22940:4;22918:27;:::i;:::-;22910:6;22906:40;23048:6;23036:10;23033:22;23012:18;23000:10;22997:34;22994:62;22991:88;;;23059:18;;:::i;:::-;22991:88;23099:10;23095:2;23088:22;22878:238;22835:281;;:::o;23122:233::-;23161:3;23184:24;23202:5;23184:24;:::i;:::-;23175:33;;23230:66;23223:5;23220:77;23217:103;;;23300:18;;:::i;:::-;23217:103;23347:1;23340:5;23336:13;23329:20;;23122:233;;;:::o;23361:176::-;23393:1;23410:20;23428:1;23410:20;:::i;:::-;23405:25;;23444:20;23462:1;23444:20;:::i;:::-;23439:25;;23483:1;23473:35;;23488:18;;:::i;:::-;23473:35;23529:1;23526;23522:9;23517:14;;23361:176;;;;:::o;23543:180::-;23591:77;23588:1;23581:88;23688:4;23685:1;23678:15;23712:4;23709:1;23702:15;23729:180;23777:77;23774:1;23767:88;23874:4;23871:1;23864:15;23898:4;23895:1;23888:15;23915:180;23963:77;23960:1;23953:88;24060:4;24057:1;24050:15;24084:4;24081:1;24074:15;24101:180;24149:77;24146:1;24139:88;24246:4;24243:1;24236:15;24270:4;24267:1;24260:15;24287:180;24335:77;24332:1;24325:88;24432:4;24429:1;24422:15;24456:4;24453:1;24446:15;24473:117;24582:1;24579;24572:12;24596:117;24705:1;24702;24695:12;24719:117;24828:1;24825;24818:12;24842:117;24951:1;24948;24941:12;24965:117;25074:1;25071;25064:12;25088:117;25197:1;25194;25187:12;25211:102;25252:6;25303:2;25299:7;25294:2;25287:5;25283:14;25279:28;25269:38;;25211:102;;;:::o;25319:220::-;25459:34;25455:1;25447:6;25443:14;25436:58;25528:3;25523:2;25515:6;25511:15;25504:28;25319:220;:::o;25545:225::-;25685:34;25681:1;25673:6;25669:14;25662:58;25754:8;25749:2;25741:6;25737:15;25730:33;25545:225;:::o;25776:168::-;25916:20;25912:1;25904:6;25900:14;25893:44;25776:168;:::o;25950:232::-;26090:34;26086:1;26078:6;26074:14;26067:58;26159:15;26154:2;26146:6;26142:15;26135:40;25950:232;:::o;26188:173::-;26328:25;26324:1;26316:6;26312:14;26305:49;26188:173;:::o;26367:235::-;26507:34;26503:1;26495:6;26491:14;26484:58;26576:18;26571:2;26563:6;26559:15;26552:43;26367:235;:::o;26608:155::-;26748:7;26744:1;26736:6;26732:14;26725:31;26608:155;:::o;26769:182::-;26909:34;26905:1;26897:6;26893:14;26886:58;26769:182;:::o;26957:177::-;27097:29;27093:1;27085:6;27081:14;27074:53;26957:177;:::o;27140:158::-;27280:10;27276:1;27268:6;27264:14;27257:34;27140:158;:::o;27304:224::-;27444:34;27440:1;27432:6;27428:14;27421:58;27513:7;27508:2;27500:6;27496:15;27489:32;27304:224;:::o;27534:122::-;27607:24;27625:5;27607:24;:::i;:::-;27600:5;27597:35;27587:63;;27646:1;27643;27636:12;27587:63;27534:122;:::o;27662:116::-;27732:21;27747:5;27732:21;:::i;:::-;27725:5;27722:32;27712:60;;27768:1;27765;27758:12;27712:60;27662:116;:::o;27784:120::-;27856:23;27873:5;27856:23;:::i;:::-;27849:5;27846:34;27836:62;;27894:1;27891;27884:12;27836:62;27784:120;:::o;27910:122::-;27983:24;28001:5;27983:24;:::i;:::-;27976:5;27973:35;27963:63;;28022:1;28019;28012:12;27963:63;27910:122;:::o

Swarm Source

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