ETH Price: $3,011.20 (+5.62%)
Gas: 2 Gwei

Token

TANKIES EVOLVE (TANKIES EVOLVE)
 

Overview

Max Total Supply

1,182 TANKIES EVOLVE

Holders

597

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TANKIES EVOLVE
0xc1ab90bc61b6271b2308847028cee705f7036737
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:
TANKIES_EVOLVE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

// Sources flattened with hardhat v2.9.3 https://hardhat.org

// File contracts/tankies.sol

/**
 *Submitted for verification at Etherscan.io on 2022-04-09
*/

// Sources flattened with hardhat v2.9.3 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]


// 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/token/ERC721/[email protected]

interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);
}
// 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/[email protected]


// 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/token/ERC721/extensions/[email protected]


// 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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// 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/utils/[email protected]


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


// 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/utils/[email protected]


// 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/introspection/[email protected]


// 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/access/[email protected]


// 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/cryptography/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// File contracts/tankies.sol

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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**128.
        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**128.
        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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */

// SPDX-License-Identifier: MIT
// Creator: Tankies


library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

contract TANKIES_EVOLVE is ERC721A, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private _tokenIds;
    bool private _presaleActive = false;
    bool private _saleActive = false;
    bool private _saleForHolders = false;
    string public _prefixURI;
    string public _baseExtension;
    
    uint256 public  _price = 0;
    uint256 private  _maxPresaleMint = 1;
    uint256 private  _maxMint = 2;
                            
    uint256 private  _maxTokens = 1111;
  
    mapping (address => uint256) private _presaleMints;
    mapping (address => uint256) private _saleMints;

    address private constant communityWallet = 0xa5b80FEc68E8ffa3C7f3bDc21e019eBC4aAb8E73;
    //address constant tankiesV1 = 0xC5666DD4a435745B38c7a67cF5211a4D918E779F;
    address constant tankiesV1 = 0xC5666DD4a435745B38c7a67cF5211a4D918E779F;

    bytes32 private merkleRoot = 0x4a43387ab437e9fed4492137223387dbd6af36c5b7a00ee193527c04e1ef8697;

    constructor() ERC721A("TANKIES EVOLVE", "TANKIES EVOLVE") {}

    modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

    modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) {
        require(_wei >= _price * _quantity, "Insufficent funds");
        _;
    }

    modifier withinMaximumSupply(uint256 _quantity) {
        require(totalSupply() + _quantity <= _maxTokens, "Surpasses supply");
        _;
    }

    function airdrop(address[] memory addrs) public onlyOwner {
        for (uint256 i = 0; i < addrs.length; i++) {
            _tokenIds.increment();
           _mintItem(addrs[i], 1);
        }
    }

    function increaseTokenID(uint256 newID) public onlyOwner {
        uint256 currentID = _tokenIds.current();
        require(newID > currentID, "New ID must be greater than current ID");
        uint256 diff = newID - currentID;
        for(uint256 i = 1;i<diff;i++) {
            _tokenIds.increment();
        }
    }

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

    function setBaseURI(string memory _uri) public onlyOwner {
        _prefixURI = _uri;
    }

    function baseExtension() internal view returns (string memory) {
        return _baseExtension;
    }

    function setBaseExtension(string memory _ext) public onlyOwner {
        _baseExtension = _ext;
    }

     function setMerkleRoot(bytes32 _root) public onlyOwner {
        merkleRoot = _root;
    }

    function preSaleActive() public view returns (bool) {
        return _presaleActive;
    }

    function saleActive() public view returns (bool) {
        return _saleActive;
    }

    function saleForHolders() public view returns (bool) {
        return _saleForHolders;
    }

    function isHolder(address addr) public view returns (bool) {
        IERC721A token = IERC721A(tankiesV1);
        if(token.balanceOf(addr) >=1) {
            return true;
        } else {
            return false;
        }
    }

    function resetSaleMintsForAddrs(address[] memory addrs) public onlyOwner {
        for (uint256 i = 0; i < addrs.length; i++) {
            _saleMints[addrs[i]] = 0;
        }
    }

    function togglePreSale() public onlyOwner {
        _presaleActive = !_presaleActive;
    }

    function toggleSale() public onlyOwner {
        _saleActive = !_saleActive;
    }

    function toggleSaleForHolders() public onlyOwner {
        _saleForHolders = !_saleForHolders;
    }
   
    
     function updateMaxTokens(uint256 newMax) public onlyOwner {
        _maxTokens = newMax;
    }

    function updateMaxMint(uint256 newMax) public onlyOwner {
        _maxMint = newMax;
    }

    function updateMaxPresaleMint(uint256 newMax) public onlyOwner {
        _maxPresaleMint = newMax;
    }

    function updatePrice(uint256 newPrice) public onlyOwner {
        _price = newPrice;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId),"ERC721AMetadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        tokenId.toString();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), _baseExtension)) : "";
    }

    function mintForHolders(uint256 _quantity)
        public
        payable
        callerIsUser
    {
        require(
            _quantity > 0 &&
                _saleMints[msg.sender] + _quantity <=
                _maxMint,
            "Minting above public limit"
        );
        require(_saleForHolders);
        IERC721A token = IERC721A(tankiesV1);
        require(token.balanceOf(msg.sender) >= 1, "You don't own Tankie V1");
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted + _quantity <= _maxTokens);
        require(_saleMints[msg.sender] + _quantity <= _maxMint);
        _saleMints[msg.sender] += _quantity;
        //_safeMint(msg.sender, _quantity);
        _mintItem(msg.sender, _quantity);
       
    }


     function mintItems(uint256 _quantity)
        public
        payable
        callerIsUser
    {
        require(
            _quantity > 0 &&
                _saleMints[msg.sender] + _quantity <=
                _maxMint,
            "Minting above public limit"
        );
        require(_saleActive);
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted + _quantity <= _maxTokens);
        require(_saleMints[msg.sender] + _quantity <= _maxMint);
        _saleMints[msg.sender] += _quantity;
        //_safeMint(msg.sender, _quantity);
        _mintItem(msg.sender, _quantity);
       
    }
    
    function _mintItem(address to, uint256 _quantity) internal returns (uint256) {
        _tokenIds.increment();
        uint256 id = _tokenIds.current();
        _safeMint(to, _quantity);
        return id;
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0);
        uint256 balance = address(this).balance;
        payable(address(0x8dc4A512A2b4B7948586BE58aAB877a877Fc4064)).transfer(balance * 285 / 1000);
        payable(address(0x25022Fe34893eA7A18f2D370A5fF96688350B906)).transfer(balance * 285 / 1000);
        payable(address(0x761aCE530C38Fb1B4A7f8e8826eb98a44c7d2075)).transfer(balance * 30 / 1000);

        payable(address(0x3639874A416ae2EDb1017198Ad7A97e35929C1B5)).transfer(balance * 133 / 1000);
        payable(address(0xbcB37767904eE41b0bDE505e767f786dA4bfD19a)).transfer(balance * 133 / 1000);
        payable(address(0x53D5c01D7529AD5dFc1a424fEC698fe7Ae9C4fb0)).transfer(balance * 133 / 1000);
        
    }

}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newID","type":"uint256"}],"name":"increaseTokenID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintForHolders","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintItems","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":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"resetSaleMintsForAddrs","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleForHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_ext","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","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":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleForHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updateMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updateMaxPresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"updateMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526009805462ffffff191690556000600c556001600d556002600e55610457600f557f4a43387ab437e9fed4492137223387dbd6af36c5b7a00ee193527c04e1ef86976012553480156200005657600080fd5b50604080518082018252600e8082526d54414e4b4945532045564f4c564560901b602080840182815285518087019096529285528401528151919291620000a0916001916200012f565b508051620000b69060029060208401906200012f565b505050620000d3620000cd620000d960201b60201c565b620000dd565b62000212565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013d90620001d5565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b600181811c90821680620001ea57607f821691505b602082108114156200020c57634e487b7160e01b600052602260045260246000fd5b50919050565b61286c80620002226000396000f3fe6080604052600436106102515760003560e01c80637d8966e411610139578063ca3cb522116100b6578063dd40d6661161007a578063dd40d666146106a4578063de6c97f9146106c4578063e6c6df59146106e4578063e985e9c514610704578063f2fde38b1461074d578063fdd59bb71461076d57600080fd5b8063ca3cb5221461061c578063cdaa28fd14610631578063ce33b54b14610651578063d4d7b19a14610664578063da3ef23f1461068457600080fd5b806391860f78116100fd57806391860f781461059257806395d89b41146105a7578063a22cb465146105bc578063b88d4fde146105dc578063c87b56dd146105fc57600080fd5b80637d8966e414610507578063844947081461051c5780638d6cc56d146105345780638da5cb5b146105545780638da8b7391461057257600080fd5b80633ccfd60b116101d25780636352211e116101965780636352211e1461045557806368428a1b1461047557806370a0823114610492578063715018a6146104b2578063729ad39e146104c75780637cb64759146104e757600080fd5b80633ccfd60b146103cd57806342842e0e146103e25780634f6ccce7146104025780635367de6a1461042257806355f804b31461043557600080fd5b806318160ddd1161021957806318160ddd14610325578063235b6ea11461036257806323b872dd146103785780632672c902146103985780632f745c59146103ad57600080fd5b806301ffc9a7146102565780630449f2581461028b57806306fdde03146102a9578063081812fc146102cb578063095ea7b314610303575b600080fd5b34801561026257600080fd5b506102766102713660046124b4565b610782565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b5060095462010000900460ff16610276565b3480156102b557600080fd5b506102be6107ef565b6040516102829190612674565b3480156102d757600080fd5b506102eb6102e636600461249c565b610881565b6040516001600160a01b039091168152602001610282565b34801561030f57600080fd5b5061032361031e3660046123c5565b6108c5565b005b34801561033157600080fd5b506103546000546001600160801b03600160801b82048116918116919091031690565b604051908152602001610282565b34801561036e57600080fd5b50610354600c5481565b34801561038457600080fd5b506103236103933660046122d8565b610953565b3480156103a457600080fd5b506102be61095e565b3480156103b957600080fd5b506103546103c83660046123c5565b6109ec565b3480156103d957600080fd5b50610323610ae8565b3480156103ee57600080fd5b506103236103fd3660046122d8565b610d44565b34801561040e57600080fd5b5061035461041d36600461249c565b610d5f565b61032361043036600461249c565b610e09565b34801561044157600080fd5b506103236104503660046124ec565b610f62565b34801561046157600080fd5b506102eb61047036600461249c565b610f9f565b34801561048157600080fd5b50600954610100900460ff16610276565b34801561049e57600080fd5b506103546104ad36600461228c565b610fb1565b3480156104be57600080fd5b50610323610fff565b3480156104d357600080fd5b506103236104e23660046123ee565b611035565b3480156104f357600080fd5b5061032361050236600461249c565b6110be565b34801561051357600080fd5b506103236110ed565b34801561052857600080fd5b5060095460ff16610276565b34801561054057600080fd5b5061032361054f36600461249c565b611134565b34801561056057600080fd5b506007546001600160a01b03166102eb565b34801561057e57600080fd5b5061032361058d36600461249c565b611163565b34801561059e57600080fd5b506102be611192565b3480156105b357600080fd5b506102be61119f565b3480156105c857600080fd5b506103236105d736600461238b565b6111ae565b3480156105e857600080fd5b506103236105f7366004612313565b611244565b34801561060857600080fd5b506102be61061736600461249c565b61127e565b34801561062857600080fd5b50610323611357565b34801561063d57600080fd5b5061032361064c36600461249c565b611395565b61032361065f36600461249c565b611463565b34801561067057600080fd5b5061027661067f36600461228c565b611692565b34801561069057600080fd5b5061032361069f3660046124ec565b611742565b3480156106b057600080fd5b506103236106bf36600461249c565b61177f565b3480156106d057600080fd5b506103236106df3660046123ee565b6117ae565b3480156106f057600080fd5b506103236106ff36600461249c565b611849565b34801561071057600080fd5b5061027661071f3660046122a6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561075957600080fd5b5061032361076836600461228c565b611878565b34801561077957600080fd5b50610323611913565b60006001600160e01b031982166380ac58cd60e01b14806107b357506001600160e01b03198216635b5e139f60e01b145b806107ce57506001600160e01b0319821663780e9d6360e01b145b806107e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fe9061277a565b80601f016020809104026020016040519081016040528092919081815260200182805461082a9061277a565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088c8261195c565b6108a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d082610f9f565b9050806001600160a01b0316836001600160a01b031614156109055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109255750610923813361071f565b155b15610943576040516367d9dca160e11b815260040160405180910390fd5b61094e838383611990565b505050565b61094e8383836119ec565b600b805461096b9061277a565b80601f01602080910402602001604051908101604052809291908181526020018280546109979061277a565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b505050505081565b60006109f783610fb1565b8210610a16576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ae257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a8e5750610ada565b80516001600160a01b031615610aa357805192505b876001600160a01b0316836001600160a01b03161415610ad85786841415610ad1575093506107e992505050565b6001909301925b505b600101610a27565b50600080fd5b6007546001600160a01b03163314610b1b5760405162461bcd60e51b8152600401610b1290612687565b60405180910390fd5b60004711610b2857600080fd5b47738dc4a512a2b4b7948586be58aab877a877fc40646108fc6103e8610b508461011d612718565b610b5a9190612704565b6040518115909202916000818181858888f19350505050158015610b82573d6000803e3d6000fd5b507325022fe34893ea7a18f2d370a5ff96688350b9066108fc6103e8610baa8461011d612718565b610bb49190612704565b6040518115909202916000818181858888f19350505050158015610bdc573d6000803e3d6000fd5b5073761ace530c38fb1b4a7f8e8826eb98a44c7d20756108fc6103e8610c0384601e612718565b610c0d9190612704565b6040518115909202916000818181858888f19350505050158015610c35573d6000803e3d6000fd5b50733639874a416ae2edb1017198ad7a97e35929c1b56108fc6103e8610c5c846085612718565b610c669190612704565b6040518115909202916000818181858888f19350505050158015610c8e573d6000803e3d6000fd5b5073bcb37767904ee41b0bde505e767f786da4bfd19a6108fc6103e8610cb5846085612718565b610cbf9190612704565b6040518115909202916000818181858888f19350505050158015610ce7573d6000803e3d6000fd5b507353d5c01d7529ad5dfc1a424fec698fe7ae9c4fb06108fc6103e8610d0e846085612718565b610d189190612704565b6040518115909202916000818181858888f19350505050158015610d40573d6000803e3d6000fd5b5050565b61094e83838360405180602001604052806000815250611244565b600080546001600160801b031681805b82811015610def57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610de65785831415610ddf5750949350505050565b6001909201915b50600101610d6f565b506040516329c8c00760e21b815260040160405180910390fd5b323314610e585760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b12565b600081118015610e845750600e5433600090815260116020526040902054610e819083906126ec565b11155b610ed05760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d69740000000000006044820152606401610b12565b600954610100900460ff16610ee457600080fd5b6000610eef60085490565b600f54909150610eff83836126ec565b1115610f0a57600080fd5b600e5433600090815260116020526040902054610f289084906126ec565b1115610f3357600080fd5b3360009081526011602052604081208054849290610f529084906126ec565b9091555061094e90503383611c09565b6007546001600160a01b03163314610f8c5760405162461bcd60e51b8152600401610b1290612687565b8051610d4090600a906020840190612180565b6000610faa82611c30565b5192915050565b60006001600160a01b038216610fda576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b031633146110295760405162461bcd60e51b8152600401610b1290612687565b6110336000611d52565b565b6007546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610b1290612687565b60005b8151811015610d4057611079600880546001019055565b6110ab82828151811061109c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001611c09565b50806110b6816127af565b915050611062565b6007546001600160a01b031633146110e85760405162461bcd60e51b8152600401610b1290612687565b601255565b6007546001600160a01b031633146111175760405162461bcd60e51b8152600401610b1290612687565b6009805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b0316331461115e5760405162461bcd60e51b8152600401610b1290612687565b600c55565b6007546001600160a01b0316331461118d5760405162461bcd60e51b8152600401610b1290612687565b600d55565b600a805461096b9061277a565b6060600280546107fe9061277a565b6001600160a01b0382163314156111d85760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124f8484846119ec565b61125b84848484611da4565b611278576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112898261195c565b6112ee5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b12565b60006112f8611eb3565b905061130383611ec2565b5060008151116113225760405180602001604052806000815250611350565b8061132c84611ec2565b600b60405160200161134093929190612575565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113815760405162461bcd60e51b8152600401610b1290612687565b6009805460ff19811660ff90911615179055565b6007546001600160a01b031633146113bf5760405162461bcd60e51b8152600401610b1290612687565b60006113ca60085490565b905080821161142a5760405162461bcd60e51b815260206004820152602660248201527f4e6577204944206d7573742062652067726561746572207468616e2063757272604482015265195b9d08125160d21b6064820152608401610b12565b60006114368284612737565b905060015b8181101561127857611451600880546001019055565b8061145b816127af565b91505061143b565b3233146114b25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b12565b6000811180156114de5750600e54336000908152601160205260409020546114db9083906126ec565b11155b61152a5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d69740000000000006044820152606401610b12565b60095462010000900460ff1661153f57600080fd5b6040516370a0823160e01b815233600482015273c5666dd4a435745b38c7a67cf5211a4d918e779f9060019082906370a082319060240160206040518083038186803b15801561158e57600080fd5b505afa1580156115a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c69190612531565b10156116145760405162461bcd60e51b815260206004820152601760248201527f596f7520646f6e2774206f776e2054616e6b69652056310000000000000000006044820152606401610b12565b600061161f60085490565b600f5490915061162f84836126ec565b111561163a57600080fd5b600e54336000908152601160205260409020546116589085906126ec565b111561166357600080fd5b33600090815260116020526040812080548592906116829084906126ec565b9091555061127890503384611c09565b6040516370a0823160e01b81526001600160a01b038216600482015260009073c5666dd4a435745b38c7a67cf5211a4d918e779f9060019082906370a082319060240160206040518083038186803b1580156116ed57600080fd5b505afa158015611701573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117259190612531565b106117335750600192915050565b50600092915050565b50919050565b6007546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610b1290612687565b8051610d4090600b906020840190612180565b6007546001600160a01b031633146117a95760405162461bcd60e51b8152600401610b1290612687565b600f55565b6007546001600160a01b031633146117d85760405162461bcd60e51b8152600401610b1290612687565b60005b8151811015610d405760006011600084848151811061180a57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611841906127af565b9150506117db565b6007546001600160a01b031633146118735760405162461bcd60e51b8152600401610b1290612687565b600e55565b6007546001600160a01b031633146118a25760405162461bcd60e51b8152600401610b1290612687565b6001600160a01b0381166119075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b12565b61191081611d52565b50565b6007546001600160a01b0316331461193d5760405162461bcd60e51b8152600401610b1290612687565b6009805462ff0000198116620100009182900460ff1615909102179055565b600080546001600160801b0316821080156107e9575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119f782611c30565b80519091506000906001600160a01b0316336001600160a01b03161480611a2557508151611a25903361071f565b80611a40575033611a3584610881565b6001600160a01b0316145b905080611a6057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a955760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611abc57604051633a954ecd60e21b815260040160405180910390fd5b611acc6000848460000151611990565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611bbf576000546001600160801b0316811015611bbf57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000611c19600880546001019055565b6000611c2460085490565b90506113508484611fdb565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611d3957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d375780516001600160a01b031615611cce579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d32579392505050565b611cce565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ea757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611de8903390899088908890600401612637565b602060405180830381600087803b158015611e0257600080fd5b505af1925050508015611e32575060408051601f3d908101601f19168201909252611e2f918101906124d0565b60015b611e8d573d808015611e60576040519150601f19603f3d011682016040523d82523d6000602084013e611e65565b606091505b508051611e85576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611eab565b5060015b949350505050565b6060600a80546107fe9061277a565b606081611ee65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f105780611efa816127af565b9150611f099050600a83612704565b9150611eea565b6000816001600160401b03811115611f3857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f62576020820181803683370190505b5090505b8415611eab57611f77600183612737565b9150611f84600a866127ca565b611f8f9060306126ec565b60f81b818381518110611fb257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fd4600a86612704565b9450611f66565b610d4082826040518060200160405280600081525061094e83838360016000546001600160801b03166001600160a01b03851661202a57604051622e076360e81b815260040160405180910390fd5b836120485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561215a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612130575061212e6000888488611da4565b155b1561214e576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016120d9565b50600080546001600160801b0319166001600160801b0392909216919091179055611c02565b82805461218c9061277a565b90600052602060002090601f0160209004810192826121ae57600085556121f4565b82601f106121c757805160ff19168380011785556121f4565b828001600101855582156121f4579182015b828111156121f45782518255916020019190600101906121d9565b50612200929150612204565b5090565b5b808211156122005760008155600101612205565b60006001600160401b038311156122325761223261280a565b612245601f8401601f19166020016126bc565b905082815283838301111561225957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461228757600080fd5b919050565b60006020828403121561229d578081fd5b61135082612270565b600080604083850312156122b8578081fd5b6122c183612270565b91506122cf60208401612270565b90509250929050565b6000806000606084860312156122ec578081fd5b6122f584612270565b925061230360208501612270565b9150604084013590509250925092565b60008060008060808587031215612328578081fd5b61233185612270565b935061233f60208601612270565b92506040850135915060608501356001600160401b03811115612360578182fd5b8501601f81018713612370578182fd5b61237f87823560208401612219565b91505092959194509250565b6000806040838503121561239d578182fd5b6123a683612270565b9150602083013580151581146123ba578182fd5b809150509250929050565b600080604083850312156123d7578182fd5b6123e083612270565b946020939093013593505050565b60006020808385031215612400578182fd5b82356001600160401b0380821115612416578384fd5b818501915085601f830112612429578384fd5b81358181111561243b5761243b61280a565b8060051b915061244c8483016126bc565b8181528481019084860184860187018a1015612466578788fd5b8795505b8386101561248f5761247b81612270565b83526001959095019491860191860161246a565b5098975050505050505050565b6000602082840312156124ad578081fd5b5035919050565b6000602082840312156124c5578081fd5b813561135081612820565b6000602082840312156124e1578081fd5b815161135081612820565b6000602082840312156124fd578081fd5b81356001600160401b03811115612512578182fd5b8201601f81018413612522578182fd5b611eab84823560208401612219565b600060208284031215612542578081fd5b5051919050565b6000815180845261256181602086016020860161274e565b601f01601f19169290920160200192915050565b6000845160206125888285838a0161274e565b85519184019161259b8184848a0161274e565b85549201918390600181811c90808316806125b757607f831692505b8583108114156125d557634e487b7160e01b88526022600452602488fd5b8080156125e957600181146125fa57612626565b60ff19851688528388019550612626565b60008b815260209020895b8581101561261e5781548a820152908401908801612605565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266a90830184612549565b9695505050505050565b6020815260006113506020830184612549565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156126e4576126e461280a565b604052919050565b600082198211156126ff576126ff6127de565b500190565b600082612713576127136127f4565b500490565b6000816000190483118215151615612732576127326127de565b500290565b600082821015612749576127496127de565b500390565b60005b83811015612769578181015183820152602001612751565b838111156112785750506000910152565b600181811c9082168061278e57607f821691505b6020821081141561173c57634e487b7160e01b600052602260045260246000fd5b60006000198214156127c3576127c36127de565b5060010190565b6000826127d9576127d96127f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461191057600080fdfea264697066735822122033560dd974103f8f444e9c0bc628f425b19ee0566cc95e36c2e38aa2161eba5d64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637d8966e411610139578063ca3cb522116100b6578063dd40d6661161007a578063dd40d666146106a4578063de6c97f9146106c4578063e6c6df59146106e4578063e985e9c514610704578063f2fde38b1461074d578063fdd59bb71461076d57600080fd5b8063ca3cb5221461061c578063cdaa28fd14610631578063ce33b54b14610651578063d4d7b19a14610664578063da3ef23f1461068457600080fd5b806391860f78116100fd57806391860f781461059257806395d89b41146105a7578063a22cb465146105bc578063b88d4fde146105dc578063c87b56dd146105fc57600080fd5b80637d8966e414610507578063844947081461051c5780638d6cc56d146105345780638da5cb5b146105545780638da8b7391461057257600080fd5b80633ccfd60b116101d25780636352211e116101965780636352211e1461045557806368428a1b1461047557806370a0823114610492578063715018a6146104b2578063729ad39e146104c75780637cb64759146104e757600080fd5b80633ccfd60b146103cd57806342842e0e146103e25780634f6ccce7146104025780635367de6a1461042257806355f804b31461043557600080fd5b806318160ddd1161021957806318160ddd14610325578063235b6ea11461036257806323b872dd146103785780632672c902146103985780632f745c59146103ad57600080fd5b806301ffc9a7146102565780630449f2581461028b57806306fdde03146102a9578063081812fc146102cb578063095ea7b314610303575b600080fd5b34801561026257600080fd5b506102766102713660046124b4565b610782565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b5060095462010000900460ff16610276565b3480156102b557600080fd5b506102be6107ef565b6040516102829190612674565b3480156102d757600080fd5b506102eb6102e636600461249c565b610881565b6040516001600160a01b039091168152602001610282565b34801561030f57600080fd5b5061032361031e3660046123c5565b6108c5565b005b34801561033157600080fd5b506103546000546001600160801b03600160801b82048116918116919091031690565b604051908152602001610282565b34801561036e57600080fd5b50610354600c5481565b34801561038457600080fd5b506103236103933660046122d8565b610953565b3480156103a457600080fd5b506102be61095e565b3480156103b957600080fd5b506103546103c83660046123c5565b6109ec565b3480156103d957600080fd5b50610323610ae8565b3480156103ee57600080fd5b506103236103fd3660046122d8565b610d44565b34801561040e57600080fd5b5061035461041d36600461249c565b610d5f565b61032361043036600461249c565b610e09565b34801561044157600080fd5b506103236104503660046124ec565b610f62565b34801561046157600080fd5b506102eb61047036600461249c565b610f9f565b34801561048157600080fd5b50600954610100900460ff16610276565b34801561049e57600080fd5b506103546104ad36600461228c565b610fb1565b3480156104be57600080fd5b50610323610fff565b3480156104d357600080fd5b506103236104e23660046123ee565b611035565b3480156104f357600080fd5b5061032361050236600461249c565b6110be565b34801561051357600080fd5b506103236110ed565b34801561052857600080fd5b5060095460ff16610276565b34801561054057600080fd5b5061032361054f36600461249c565b611134565b34801561056057600080fd5b506007546001600160a01b03166102eb565b34801561057e57600080fd5b5061032361058d36600461249c565b611163565b34801561059e57600080fd5b506102be611192565b3480156105b357600080fd5b506102be61119f565b3480156105c857600080fd5b506103236105d736600461238b565b6111ae565b3480156105e857600080fd5b506103236105f7366004612313565b611244565b34801561060857600080fd5b506102be61061736600461249c565b61127e565b34801561062857600080fd5b50610323611357565b34801561063d57600080fd5b5061032361064c36600461249c565b611395565b61032361065f36600461249c565b611463565b34801561067057600080fd5b5061027661067f36600461228c565b611692565b34801561069057600080fd5b5061032361069f3660046124ec565b611742565b3480156106b057600080fd5b506103236106bf36600461249c565b61177f565b3480156106d057600080fd5b506103236106df3660046123ee565b6117ae565b3480156106f057600080fd5b506103236106ff36600461249c565b611849565b34801561071057600080fd5b5061027661071f3660046122a6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561075957600080fd5b5061032361076836600461228c565b611878565b34801561077957600080fd5b50610323611913565b60006001600160e01b031982166380ac58cd60e01b14806107b357506001600160e01b03198216635b5e139f60e01b145b806107ce57506001600160e01b0319821663780e9d6360e01b145b806107e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fe9061277a565b80601f016020809104026020016040519081016040528092919081815260200182805461082a9061277a565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b600061088c8261195c565b6108a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d082610f9f565b9050806001600160a01b0316836001600160a01b031614156109055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109255750610923813361071f565b155b15610943576040516367d9dca160e11b815260040160405180910390fd5b61094e838383611990565b505050565b61094e8383836119ec565b600b805461096b9061277a565b80601f01602080910402602001604051908101604052809291908181526020018280546109979061277a565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b505050505081565b60006109f783610fb1565b8210610a16576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ae257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a8e5750610ada565b80516001600160a01b031615610aa357805192505b876001600160a01b0316836001600160a01b03161415610ad85786841415610ad1575093506107e992505050565b6001909301925b505b600101610a27565b50600080fd5b6007546001600160a01b03163314610b1b5760405162461bcd60e51b8152600401610b1290612687565b60405180910390fd5b60004711610b2857600080fd5b47738dc4a512a2b4b7948586be58aab877a877fc40646108fc6103e8610b508461011d612718565b610b5a9190612704565b6040518115909202916000818181858888f19350505050158015610b82573d6000803e3d6000fd5b507325022fe34893ea7a18f2d370a5ff96688350b9066108fc6103e8610baa8461011d612718565b610bb49190612704565b6040518115909202916000818181858888f19350505050158015610bdc573d6000803e3d6000fd5b5073761ace530c38fb1b4a7f8e8826eb98a44c7d20756108fc6103e8610c0384601e612718565b610c0d9190612704565b6040518115909202916000818181858888f19350505050158015610c35573d6000803e3d6000fd5b50733639874a416ae2edb1017198ad7a97e35929c1b56108fc6103e8610c5c846085612718565b610c669190612704565b6040518115909202916000818181858888f19350505050158015610c8e573d6000803e3d6000fd5b5073bcb37767904ee41b0bde505e767f786da4bfd19a6108fc6103e8610cb5846085612718565b610cbf9190612704565b6040518115909202916000818181858888f19350505050158015610ce7573d6000803e3d6000fd5b507353d5c01d7529ad5dfc1a424fec698fe7ae9c4fb06108fc6103e8610d0e846085612718565b610d189190612704565b6040518115909202916000818181858888f19350505050158015610d40573d6000803e3d6000fd5b5050565b61094e83838360405180602001604052806000815250611244565b600080546001600160801b031681805b82811015610def57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610de65785831415610ddf5750949350505050565b6001909201915b50600101610d6f565b506040516329c8c00760e21b815260040160405180910390fd5b323314610e585760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b12565b600081118015610e845750600e5433600090815260116020526040902054610e819083906126ec565b11155b610ed05760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d69740000000000006044820152606401610b12565b600954610100900460ff16610ee457600080fd5b6000610eef60085490565b600f54909150610eff83836126ec565b1115610f0a57600080fd5b600e5433600090815260116020526040902054610f289084906126ec565b1115610f3357600080fd5b3360009081526011602052604081208054849290610f529084906126ec565b9091555061094e90503383611c09565b6007546001600160a01b03163314610f8c5760405162461bcd60e51b8152600401610b1290612687565b8051610d4090600a906020840190612180565b6000610faa82611c30565b5192915050565b60006001600160a01b038216610fda576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b031633146110295760405162461bcd60e51b8152600401610b1290612687565b6110336000611d52565b565b6007546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610b1290612687565b60005b8151811015610d4057611079600880546001019055565b6110ab82828151811061109c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001611c09565b50806110b6816127af565b915050611062565b6007546001600160a01b031633146110e85760405162461bcd60e51b8152600401610b1290612687565b601255565b6007546001600160a01b031633146111175760405162461bcd60e51b8152600401610b1290612687565b6009805461ff001981166101009182900460ff1615909102179055565b6007546001600160a01b0316331461115e5760405162461bcd60e51b8152600401610b1290612687565b600c55565b6007546001600160a01b0316331461118d5760405162461bcd60e51b8152600401610b1290612687565b600d55565b600a805461096b9061277a565b6060600280546107fe9061277a565b6001600160a01b0382163314156111d85760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124f8484846119ec565b61125b84848484611da4565b611278576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606112898261195c565b6112ee5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610b12565b60006112f8611eb3565b905061130383611ec2565b5060008151116113225760405180602001604052806000815250611350565b8061132c84611ec2565b600b60405160200161134093929190612575565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113815760405162461bcd60e51b8152600401610b1290612687565b6009805460ff19811660ff90911615179055565b6007546001600160a01b031633146113bf5760405162461bcd60e51b8152600401610b1290612687565b60006113ca60085490565b905080821161142a5760405162461bcd60e51b815260206004820152602660248201527f4e6577204944206d7573742062652067726561746572207468616e2063757272604482015265195b9d08125160d21b6064820152608401610b12565b60006114368284612737565b905060015b8181101561127857611451600880546001019055565b8061145b816127af565b91505061143b565b3233146114b25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610b12565b6000811180156114de5750600e54336000908152601160205260409020546114db9083906126ec565b11155b61152a5760405162461bcd60e51b815260206004820152601a60248201527f4d696e74696e672061626f7665207075626c6963206c696d69740000000000006044820152606401610b12565b60095462010000900460ff1661153f57600080fd5b6040516370a0823160e01b815233600482015273c5666dd4a435745b38c7a67cf5211a4d918e779f9060019082906370a082319060240160206040518083038186803b15801561158e57600080fd5b505afa1580156115a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c69190612531565b10156116145760405162461bcd60e51b815260206004820152601760248201527f596f7520646f6e2774206f776e2054616e6b69652056310000000000000000006044820152606401610b12565b600061161f60085490565b600f5490915061162f84836126ec565b111561163a57600080fd5b600e54336000908152601160205260409020546116589085906126ec565b111561166357600080fd5b33600090815260116020526040812080548592906116829084906126ec565b9091555061127890503384611c09565b6040516370a0823160e01b81526001600160a01b038216600482015260009073c5666dd4a435745b38c7a67cf5211a4d918e779f9060019082906370a082319060240160206040518083038186803b1580156116ed57600080fd5b505afa158015611701573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117259190612531565b106117335750600192915050565b50600092915050565b50919050565b6007546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610b1290612687565b8051610d4090600b906020840190612180565b6007546001600160a01b031633146117a95760405162461bcd60e51b8152600401610b1290612687565b600f55565b6007546001600160a01b031633146117d85760405162461bcd60e51b8152600401610b1290612687565b60005b8151811015610d405760006011600084848151811061180a57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611841906127af565b9150506117db565b6007546001600160a01b031633146118735760405162461bcd60e51b8152600401610b1290612687565b600e55565b6007546001600160a01b031633146118a25760405162461bcd60e51b8152600401610b1290612687565b6001600160a01b0381166119075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b12565b61191081611d52565b50565b6007546001600160a01b0316331461193d5760405162461bcd60e51b8152600401610b1290612687565b6009805462ff0000198116620100009182900460ff1615909102179055565b600080546001600160801b0316821080156107e9575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119f782611c30565b80519091506000906001600160a01b0316336001600160a01b03161480611a2557508151611a25903361071f565b80611a40575033611a3584610881565b6001600160a01b0316145b905080611a6057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a955760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611abc57604051633a954ecd60e21b815260040160405180910390fd5b611acc6000848460000151611990565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611bbf576000546001600160801b0316811015611bbf57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000611c19600880546001019055565b6000611c2460085490565b90506113508484611fdb565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611d3957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d375780516001600160a01b031615611cce579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d32579392505050565b611cce565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611ea757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611de8903390899088908890600401612637565b602060405180830381600087803b158015611e0257600080fd5b505af1925050508015611e32575060408051601f3d908101601f19168201909252611e2f918101906124d0565b60015b611e8d573d808015611e60576040519150601f19603f3d011682016040523d82523d6000602084013e611e65565b606091505b508051611e85576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611eab565b5060015b949350505050565b6060600a80546107fe9061277a565b606081611ee65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f105780611efa816127af565b9150611f099050600a83612704565b9150611eea565b6000816001600160401b03811115611f3857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f62576020820181803683370190505b5090505b8415611eab57611f77600183612737565b9150611f84600a866127ca565b611f8f9060306126ec565b60f81b818381518110611fb257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611fd4600a86612704565b9450611f66565b610d4082826040518060200160405280600081525061094e83838360016000546001600160801b03166001600160a01b03851661202a57604051622e076360e81b815260040160405180910390fd5b836120485760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561215a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015612130575061212e6000888488611da4565b155b1561214e576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016120d9565b50600080546001600160801b0319166001600160801b0392909216919091179055611c02565b82805461218c9061277a565b90600052602060002090601f0160209004810192826121ae57600085556121f4565b82601f106121c757805160ff19168380011785556121f4565b828001600101855582156121f4579182015b828111156121f45782518255916020019190600101906121d9565b50612200929150612204565b5090565b5b808211156122005760008155600101612205565b60006001600160401b038311156122325761223261280a565b612245601f8401601f19166020016126bc565b905082815283838301111561225957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461228757600080fd5b919050565b60006020828403121561229d578081fd5b61135082612270565b600080604083850312156122b8578081fd5b6122c183612270565b91506122cf60208401612270565b90509250929050565b6000806000606084860312156122ec578081fd5b6122f584612270565b925061230360208501612270565b9150604084013590509250925092565b60008060008060808587031215612328578081fd5b61233185612270565b935061233f60208601612270565b92506040850135915060608501356001600160401b03811115612360578182fd5b8501601f81018713612370578182fd5b61237f87823560208401612219565b91505092959194509250565b6000806040838503121561239d578182fd5b6123a683612270565b9150602083013580151581146123ba578182fd5b809150509250929050565b600080604083850312156123d7578182fd5b6123e083612270565b946020939093013593505050565b60006020808385031215612400578182fd5b82356001600160401b0380821115612416578384fd5b818501915085601f830112612429578384fd5b81358181111561243b5761243b61280a565b8060051b915061244c8483016126bc565b8181528481019084860184860187018a1015612466578788fd5b8795505b8386101561248f5761247b81612270565b83526001959095019491860191860161246a565b5098975050505050505050565b6000602082840312156124ad578081fd5b5035919050565b6000602082840312156124c5578081fd5b813561135081612820565b6000602082840312156124e1578081fd5b815161135081612820565b6000602082840312156124fd578081fd5b81356001600160401b03811115612512578182fd5b8201601f81018413612522578182fd5b611eab84823560208401612219565b600060208284031215612542578081fd5b5051919050565b6000815180845261256181602086016020860161274e565b601f01601f19169290920160200192915050565b6000845160206125888285838a0161274e565b85519184019161259b8184848a0161274e565b85549201918390600181811c90808316806125b757607f831692505b8583108114156125d557634e487b7160e01b88526022600452602488fd5b8080156125e957600181146125fa57612626565b60ff19851688528388019550612626565b60008b815260209020895b8581101561261e5781548a820152908401908801612605565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266a90830184612549565b9695505050505050565b6020815260006113506020830184612549565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156126e4576126e461280a565b604052919050565b600082198211156126ff576126ff6127de565b500190565b600082612713576127136127f4565b500490565b6000816000190483118215151615612732576127326127de565b500290565b600082821015612749576127496127de565b500390565b60005b83811015612769578181015183820152602001612751565b838111156112785750506000910152565b600181811c9082168061278e57607f821691505b6020821081141561173c57634e487b7160e01b600052602260045260246000fd5b60006000198214156127c3576127c36127de565b5060010190565b6000826127d9576127d96127f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461191057600080fdfea264697066735822122033560dd974103f8f444e9c0bc628f425b19ee0566cc95e36c2e38aa2161eba5d64736f6c63430008040033

Deployed Bytecode Sourcemap

58238:6899:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40336:372;;;;;;;;;;-1:-1:-1;40336:372:0;;;;;:::i;:::-;;:::i;:::-;;;8039:14:1;;8032:22;8014:41;;8002:2;7987:18;40336:372:0;;;;;;;;61027:94;;;;;;;;;;-1:-1:-1;61098:15:0;;;;;;;61027:94;;42946:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44449:204::-;;;;;;;;;;-1:-1:-1;44449:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7337:32:1;;;7319:51;;7307:2;7292:18;44449:204:0;7274:102:1;44012:371:0;;;;;;;;;;-1:-1:-1;44012:371:0;;;;;:::i;:::-;;:::i;:::-;;37573:280;;;;;;;;;;;;37626:7;37818:12;-1:-1:-1;;;;;;;;37818:12:0;;;;37802:13;;;:28;;;;37795:35;;37573:280;;;;11094:25:1;;;11082:2;11067:18;37573:280:0;11049:76:1;58602:26:0;;;;;;;;;;;;;;;;45306:170;;;;;;;;;;-1:-1:-1;45306:170:0;;;;;:::i;:::-;;:::i;58561:28::-;;;;;;;;;;;;;:::i;39159:1105::-;;;;;;;;;;-1:-1:-1;39159:1105:0;;;;;:::i;:::-;;:::i;64367:765::-;;;;;;;;;;;;;:::i;45547:185::-;;;;;;;;;;-1:-1:-1;45547:185:0;;;;;:::i;:::-;;:::i;38146:713::-;;;;;;;;;;-1:-1:-1;38146:713:0;;;;;:::i;:::-;;:::i;63493:639::-;;;;;;:::i;:::-;;:::i;60409:93::-;;;;;;;;;;-1:-1:-1;60409:93:0;;;;;:::i;:::-;;:::i;42755:124::-;;;;;;;;;;-1:-1:-1;42755:124:0;;;;;:::i;:::-;;:::i;60933:86::-;;;;;;;;;;-1:-1:-1;61000:11:0;;;;;;;60933:86;;40772:206;;;;;;;;;;-1:-1:-1;40772:206:0;;;;;:::i;:::-;;:::i;31132:103::-;;;;;;;;;;;;;:::i;59754:203::-;;;;;;;;;;-1:-1:-1;59754:203:0;;;;;:::i;:::-;;:::i;60733:92::-;;;;;;;;;;-1:-1:-1;60733:92:0;;;;;:::i;:::-;;:::i;61668:84::-;;;;;;;;;;;;;:::i;60833:92::-;;;;;;;;;;-1:-1:-1;60903:14:0;;;;60833:92;;62198;;;;;;;;;;-1:-1:-1;62198:92:0;;;;;:::i;:::-;;:::i;30481:87::-;;;;;;;;;;-1:-1:-1;30554:6:0;;-1:-1:-1;;;;;30554:6:0;30481:87;;62084:106;;;;;;;;;;-1:-1:-1;62084:106:0;;;;;:::i;:::-;;:::i;58530:24::-;;;;;;;;;;;;;:::i;43115:104::-;;;;;;;;;;;;;:::i;44725:279::-;;;;;;;;;;-1:-1:-1;44725:279:0;;;;;:::i;:::-;;:::i;45803:342::-;;;;;;;;;;-1:-1:-1;45803:342:0;;;;;:::i;:::-;;:::i;62302:398::-;;;;;;;;;;-1:-1:-1;62302:398:0;;;;;:::i;:::-;;:::i;61567:93::-;;;;;;;;;;;;;:::i;59965:325::-;;;;;;;;;;-1:-1:-1;59965:325:0;;;;;:::i;:::-;;:::i;62708:774::-;;;;;;:::i;:::-;;:::i;61129:237::-;;;;;;;;;;-1:-1:-1;61129:237:0;;;;;:::i;:::-;;:::i;60621:103::-;;;;;;;;;;-1:-1:-1;60621:103:0;;;;;:::i;:::-;;:::i;61880:96::-;;;;;;;;;;-1:-1:-1;61880:96:0;;;;;:::i;:::-;;:::i;61374:185::-;;;;;;;;;;-1:-1:-1;61374:185:0;;;;;:::i;:::-;;:::i;61984:92::-;;;;;;;;;;-1:-1:-1;61984:92:0;;;;;:::i;:::-;;:::i;45075:164::-;;;;;;;;;;-1:-1:-1;45075:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45196:25:0;;;45172:4;45196:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45075:164;31390:201;;;;;;;;;;-1:-1:-1;31390:201:0;;;;;:::i;:::-;;:::i;61760:102::-;;;;;;;;;;;;;:::i;40336:372::-;40438:4;-1:-1:-1;;;;;;40475:40:0;;-1:-1:-1;;;40475:40:0;;:105;;-1:-1:-1;;;;;;;40532:48:0;;-1:-1:-1;;;40532:48:0;40475:105;:172;;;-1:-1:-1;;;;;;;40597:50:0;;-1:-1:-1;;;40597:50:0;40475:172;:225;;;-1:-1:-1;;;;;;;;;;29358:40:0;;;40664:36;40455:245;40336:372;-1:-1:-1;;40336:372:0:o;42946:100::-;43000:13;43033:5;43026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42946:100;:::o;44449:204::-;44517:7;44542:16;44550:7;44542;:16::i;:::-;44537:64;;44567:34;;-1:-1:-1;;;44567:34:0;;;;;;;;;;;44537:64;-1:-1:-1;44621:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44621:24:0;;44449:204::o;44012:371::-;44085:13;44101:24;44117:7;44101:15;:24::i;:::-;44085:40;;44146:5;-1:-1:-1;;;;;44140:11:0;:2;-1:-1:-1;;;;;44140:11:0;;44136:48;;;44160:24;;-1:-1:-1;;;44160:24:0;;;;;;;;;;;44136:48;26112:10;-1:-1:-1;;;;;44201:21:0;;;;;;:63;;-1:-1:-1;44227:37:0;44244:5;26112:10;45075:164;:::i;44227:37::-;44226:38;44201:63;44197:138;;;44288:35;;-1:-1:-1;;;44288:35:0;;;;;;;;;;;44197:138;44347:28;44356:2;44360:7;44369:5;44347:8;:28::i;:::-;44012:371;;;:::o;45306:170::-;45440:28;45450:4;45456:2;45460:7;45440:9;:28::i;58561:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39159:1105::-;39248:7;39281:16;39291:5;39281:9;:16::i;:::-;39272:5;:25;39268:61;;39306:23;;-1:-1:-1;;;39306:23:0;;;;;;;;;;;39268:61;39340:22;39365:13;;-1:-1:-1;;;;;39365:13:0;;39340:22;;39615:557;39635:14;39631:1;:18;39615:557;;;39675:31;39709:14;;;:11;:14;;;;;;;;;39675:48;;;;;;;;;-1:-1:-1;;;;;39675:48:0;;;;-1:-1:-1;;;39675:48:0;;-1:-1:-1;;;;;39675:48:0;;;;;;;;-1:-1:-1;;;39675:48:0;;;;;;;;;;;;;;;;39742:73;;39787:8;;;39742:73;39837:14;;-1:-1:-1;;;;;39837:28:0;;39833:111;;39910:14;;;-1:-1:-1;39833:111:0;39987:5;-1:-1:-1;;;;;39966:26:0;:17;-1:-1:-1;;;;;39966:26:0;;39962:195;;;40036:5;40021:11;:20;40017:85;;;-1:-1:-1;40077:1:0;-1:-1:-1;40070:8:0;;-1:-1:-1;;;40070:8:0;40017:85;40124:13;;;;;39962:195;39615:557;;39651:3;;39615:557;;;;40248:8;;;64367:765;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;;;;;;;;;64449:1:::1;64425:21;:25;64417:34;;;::::0;::::1;;64480:21;64528:42;64512:91;64598:4;64582:13;64480:21:::0;64592:3:::1;64582:13;:::i;:::-;:20;;;;:::i;:::-;64512:91;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64630:42:0::1;64614:91;64700:4;64684:13;:7:::0;64694:3:::1;64684:13;:::i;:::-;:20;;;;:::i;:::-;64614:91;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64732:42:0::1;64716:90;64801:4;64786:12;:7:::0;64796:2:::1;64786:12;:::i;:::-;:19;;;;:::i;:::-;64716:90;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64835:42:0::1;64819:91;64905:4;64889:13;:7:::0;64899:3:::1;64889:13;:::i;:::-;:20;;;;:::i;:::-;64819:91;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64937:42:0::1;64921:91;65007:4;64991:13;:7:::0;65001:3:::1;64991:13;:::i;:::-;:20;;;;:::i;:::-;64921:91;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;65039:42:0::1;65023:91;65109:4;65093:13;:7:::0;65103:3:::1;65093:13;:::i;:::-;:20;;;;:::i;:::-;65023:91;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;30772:1;64367:765::o:0;45547:185::-;45685:39;45702:4;45708:2;45712:7;45685:39;;;;;;;;;;;;:16;:39::i;38146:713::-;38213:7;38258:13;;-1:-1:-1;;;;;38258:13:0;38213:7;;38472:328;38492:14;38488:1;:18;38472:328;;;38532:31;38566:14;;;:11;:14;;;;;;;;;38532:48;;;;;;;;;-1:-1:-1;;;;;38532:48:0;;;;-1:-1:-1;;;38532:48:0;;-1:-1:-1;;;;;38532:48:0;;;;;;;;-1:-1:-1;;;38532:48:0;;;;;;;;;;;;;;38599:186;;38664:5;38649:11;:20;38645:85;;;-1:-1:-1;38705:1:0;38146:713;-1:-1:-1;;;;38146:713:0:o;38645:85::-;38752:13;;;;;38599:186;-1:-1:-1;38508:3:0;;38472:328;;;;38828:23;;-1:-1:-1;;;38828:23:0;;;;;;;;;;;63493:639;59365:9;59378:10;59365:23;59357:66;;;;-1:-1:-1;;;59357:66:0;;10078:2:1;59357:66:0;;;10060:21:1;10117:2;10097:18;;;10090:30;10156:32;10136:18;;;10129:60;10206:18;;59357:66:0;10050:180:1;59357:66:0;63636:1:::1;63624:9;:13;:97;;;;-1:-1:-1::0;63713:8:0::1;::::0;63669:10:::1;63658:22;::::0;;;:10:::1;:22;::::0;;;;;:34:::1;::::0;63683:9;;63658:34:::1;:::i;:::-;:63;;63624:97;63602:173;;;::::0;-1:-1:-1;;;63602:173:0;;8909:2:1;63602:173:0::1;::::0;::::1;8891:21:1::0;8948:2;8928:18;;;8921:30;8987:28;8967:18;;;8960:56;9033:18;;63602:173:0::1;8881:176:1::0;63602:173:0::1;63794:11;::::0;::::1;::::0;::::1;;;63786:20;;;::::0;::::1;;63817:19;63839;:9;57737:14:::0;;57645:114;63839:19:::1;63904:10;::::0;63817:41;;-1:-1:-1;63877:23:0::1;63891:9:::0;63817:41;63877:23:::1;:::i;:::-;:37;;63869:46;;;::::0;::::1;;63972:8;::::0;63945:10:::1;63934:22;::::0;;;:10:::1;:22;::::0;;;;;:34:::1;::::0;63959:9;;63934:34:::1;:::i;:::-;:46;;63926:55;;;::::0;::::1;;64003:10;63992:22;::::0;;;:10:::1;:22;::::0;;;;:35;;64018:9;;63992:22;:35:::1;::::0;64018:9;;63992:35:::1;:::i;:::-;::::0;;;-1:-1:-1;64083:32:0::1;::::0;-1:-1:-1;64093:10:0::1;64105:9:::0;64083::::1;:32::i;60409:93::-:0;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;60477:17;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;42755:124::-:0;42819:7;42846:20;42858:7;42846:11;:20::i;:::-;:25;;42755:124;-1:-1:-1;;42755:124:0:o;40772:206::-;40836:7;-1:-1:-1;;;;;40860:19:0;;40856:60;;40888:28;;-1:-1:-1;;;40888:28:0;;;;;;;;;;;40856:60;-1:-1:-1;;;;;;40942:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40942:27:0;;40772:206::o;31132:103::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;31197:30:::1;31224:1;31197:18;:30::i;:::-;31132:103::o:0;59754:203::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;59828:9:::1;59823:127;59847:5;:12;59843:1;:16;59823:127;;;59881:21;:9;57856:19:::0;;57874:1;57856:19;;;57767:127;59881:21:::1;59916:22;59926:5;59932:1;59926:8;;;;;;-1:-1:-1::0;;;59926:8:0::1;;;;;;;;;;;;;;;59936:1;59916:9;:22::i;:::-;-1:-1:-1::0;59861:3:0;::::1;::::0;::::1;:::i;:::-;;;;59823:127;;60733:92:::0;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;60799:10:::1;:18:::0;60733:92::o;61668:84::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;61733:11:::1;::::0;;-1:-1:-1;;61718:26:0;::::1;61733:11;::::0;;;::::1;;;61732:12;61718:26:::0;;::::1;;::::0;;61668:84::o;62198:92::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;62265:6:::1;:17:::0;62198:92::o;62084:106::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;62158:15:::1;:24:::0;62084:106::o;58530:24::-;;;;;;;:::i;43115:104::-;43171:13;43204:7;43197:14;;;;;:::i;44725:279::-;-1:-1:-1;;;;;44816:24:0;;26112:10;44816:24;44812:54;;;44849:17;;-1:-1:-1;;;44849:17:0;;;;;;;;;;;44812:54;26112:10;44879:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44879:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44879:53:0;;;;;;;;;;44948:48;;8014:41:1;;;44879:42:0;;26112:10;44948:48;;7987:18:1;44948:48:0;;;;;;;44725:279;;:::o;45803:342::-;45970:28;45980:4;45986:2;45990:7;45970:9;:28::i;:::-;46014:48;46037:4;46043:2;46047:7;46056:5;46014:22;:48::i;:::-;46009:129;;46086:40;;-1:-1:-1;;;46086:40:0;;;;;;;;;;;46009:129;45803:342;;;;:::o;62302:398::-;62375:13;62409:16;62417:7;62409;:16::i;:::-;62401:76;;;;-1:-1:-1;;;62401:76:0;;8492:2:1;62401:76:0;;;8474:21:1;8531:2;8511:18;;;8504:30;8570:34;8550:18;;;8543:62;-1:-1:-1;;;8621:18:1;;;8614:46;8677:19;;62401:76:0;8464:238:1;62401:76:0;62488:28;62519:10;:8;:10::i;:::-;62488:41;;62540:18;:7;:16;:18::i;:::-;;62607:1;62582:14;62576:28;:32;:116;;;;;;;;;;;;;;;;;62635:14;62651:18;:7;:16;:18::i;:::-;62671:14;62618:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62576:116;62569:123;62302:398;-1:-1:-1;;;62302:398:0:o;61567:93::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;61638:14:::1;::::0;;-1:-1:-1;;61620:32:0;::::1;61638:14;::::0;;::::1;61637:15;61620:32;::::0;;61567:93::o;59965:325::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;60033:17:::1;60053:19;:9;57737:14:::0;;57645:114;60053:19:::1;60033:39;;60099:9;60091:5;:17;60083:68;;;::::0;-1:-1:-1;;;60083:68:0;;9671:2:1;60083:68:0::1;::::0;::::1;9653:21:1::0;9710:2;9690:18;;;9683:30;9749:34;9729:18;;;9722:62;-1:-1:-1;;;9800:18:1;;;9793:36;9846:19;;60083:68:0::1;9643:228:1::0;60083:68:0::1;60162:12;60177:17;60185:9:::0;60177:5;:17:::1;:::i;:::-;60162:32:::0;-1:-1:-1;60221:1:0::1;60205:78;60225:4;60223:1;:6;60205:78;;;60250:21;:9;57856:19:::0;;57874:1;57856:19;;;57767:127;60250:21:::1;60230:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60205:78;;62708:774:::0;59365:9;59378:10;59365:23;59357:66;;;;-1:-1:-1;;;59357:66:0;;10078:2:1;59357:66:0;;;10060:21:1;10117:2;10097:18;;;10090:30;10156:32;10136:18;;;10129:60;10206:18;;59357:66:0;10050:180:1;59357:66:0;62856:1:::1;62844:9;:13;:97;;;;-1:-1:-1::0;62933:8:0::1;::::0;62889:10:::1;62878:22;::::0;;;:10:::1;:22;::::0;;;;;:34:::1;::::0;62903:9;;62878:34:::1;:::i;:::-;:63;;62844:97;62822:173;;;::::0;-1:-1:-1;;;62822:173:0;;8909:2:1;62822:173:0::1;::::0;::::1;8891:21:1::0;8948:2;8928:18;;;8921:30;8987:28;8967:18;;;8960:56;9033:18;;62822:173:0::1;8881:176:1::0;62822:173:0::1;63014:15;::::0;;;::::1;;;63006:24;;;::::0;::::1;;63096:27;::::0;-1:-1:-1;;;63096:27:0;;63112:10:::1;63096:27;::::0;::::1;7319:51:1::0;59103:42:0::1;::::0;63127:1:::1;::::0;59103:42;;63096:15:::1;::::0;7292:18:1;;63096:27:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:32;;63088:68;;;::::0;-1:-1:-1;;;63088:68:0;;10798:2:1;63088:68:0::1;::::0;::::1;10780:21:1::0;10837:2;10817:18;;;10810:30;10876:25;10856:18;;;10849:53;10919:18;;63088:68:0::1;10770:173:1::0;63088:68:0::1;63167:19;63189;:9;57737:14:::0;;57645:114;63189:19:::1;63254:10;::::0;63167:41;;-1:-1:-1;63227:23:0::1;63241:9:::0;63167:41;63227:23:::1;:::i;:::-;:37;;63219:46;;;::::0;::::1;;63322:8;::::0;63295:10:::1;63284:22;::::0;;;:10:::1;:22;::::0;;;;;:34:::1;::::0;63309:9;;63284:34:::1;:::i;:::-;:46;;63276:55;;;::::0;::::1;;63353:10;63342:22;::::0;;;:10:::1;:22;::::0;;;;:35;;63368:9;;63342:22;:35:::1;::::0;63368:9;;63342:35:::1;:::i;:::-;::::0;;;-1:-1:-1;63433:32:0::1;::::0;-1:-1:-1;63443:10:0::1;63455:9:::0;63433::::1;:32::i;61129:237::-:0;61249:21;;-1:-1:-1;;;61249:21:0;;-1:-1:-1;;;;;7337:32:1;;61249:21:0;;;7319:51:1;61182:4:0;;59103:42;;61273:1;;59103:42;;61249:15;;7292:18:1;;61249:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:25;61246:113;;-1:-1:-1;61298:4:0;;61129:237;-1:-1:-1;;61129:237:0:o;61246:113::-;-1:-1:-1;61342:5:0;;61129:237;-1:-1:-1;;61129:237:0:o;61246:113::-;61129:237;;;;:::o;60621:103::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;60695:21;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;61880:96::-:0;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;61949:10:::1;:19:::0;61880:96::o;61374:185::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;61463:9:::1;61458:94;61482:5;:12;61478:1;:16;61458:94;;;61539:1;61516:10;:20;61527:5;61533:1;61527:8;;;;;;-1:-1:-1::0;;;61527:8:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;61516:20:0::1;-1:-1:-1::0;;;;;61516:20:0::1;;;;;;;;;;;;:24;;;;61496:3;;;;;:::i;:::-;;;;61458:94;;61984:92:::0;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;62051:8:::1;:17:::0;61984:92::o;31390:201::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31479:22:0;::::1;31471:73;;;::::0;-1:-1:-1;;;31471:73:0;;9264:2:1;31471:73:0::1;::::0;::::1;9246:21:1::0;9303:2;9283:18;;;9276:30;9342:34;9322:18;;;9315:62;-1:-1:-1;;;9393:18:1;;;9386:36;9439:19;;31471:73:0::1;9236:228:1::0;31471:73:0::1;31555:28;31574:8;31555:18;:28::i;:::-;31390:201:::0;:::o;61760:102::-;30554:6;;-1:-1:-1;;;;;30554:6:0;26112:10;30701:23;30693:68;;;;-1:-1:-1;;;30693:68:0;;;;;;;:::i;:::-;61839:15:::1;::::0;;-1:-1:-1;;61820:34:0;::::1;61839:15:::0;;;;::::1;;;61838:16;61820:34:::0;;::::1;;::::0;;61760:102::o;46400:144::-;46457:4;46491:13;;-1:-1:-1;;;;;46491:13:0;46481:23;;:55;;;;-1:-1:-1;;46509:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46509:27:0;;;;46508:28;;46400:144::o;53616:196::-;53731:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53731:29:0;-1:-1:-1;;;;;53731:29:0;;;;;;;;;53776:28;;53731:24;;53776:28;;;;;;;53616:196;;;:::o;49117:2112::-;49232:35;49270:20;49282:7;49270:11;:20::i;:::-;49345:18;;49232:58;;-1:-1:-1;49303:22:0;;-1:-1:-1;;;;;49329:34:0;26112:10;-1:-1:-1;;;;;49329:34:0;;:101;;;-1:-1:-1;49397:18:0;;49380:50;;26112:10;45075:164;:::i;49380:50::-;49329:154;;;-1:-1:-1;26112:10:0;49447:20;49459:7;49447:11;:20::i;:::-;-1:-1:-1;;;;;49447:36:0;;49329:154;49303:181;;49502:17;49497:66;;49528:35;;-1:-1:-1;;;49528:35:0;;;;;;;;;;;49497:66;49600:4;-1:-1:-1;;;;;49578:26:0;:13;:18;;;-1:-1:-1;;;;;49578:26:0;;49574:67;;49613:28;;-1:-1:-1;;;49613:28:0;;;;;;;;;;;49574:67;-1:-1:-1;;;;;49656:16:0;;49652:52;;49681:23;;-1:-1:-1;;;49681:23:0;;;;;;;;;;;49652:52;49825:49;49842:1;49846:7;49855:13;:18;;;49825:8;:49::i;:::-;-1:-1:-1;;;;;50170:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;50170:31:0;;;-1:-1:-1;;;;;50170:31:0;;;-1:-1:-1;;50170:31:0;;;;;;;50216:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50216:29:0;;;;;;;;;;;50262:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50307:61:0;;;;-1:-1:-1;;;50352:15:0;50307:61;;;;;;;;;;;50642:11;;;50672:24;;;;;:29;50642:11;;50672:29;50668:445;;50897:13;;-1:-1:-1;;;;;50897:13:0;50883:27;;50879:219;;;50967:18;;;50935:24;;;:11;:24;;;;;;;;:50;;51050:28;;;;-1:-1:-1;;;;;51008:70:0;-1:-1:-1;;;51008:70:0;-1:-1:-1;;;;;;51008:70:0;;;-1:-1:-1;;;;;50935:50:0;;;51008:70;;;;;;;50879:219;49117:2112;51160:7;51156:2;-1:-1:-1;;;;;51141:27:0;51150:4;-1:-1:-1;;;;;51141:27:0;;;;;;;;;;;51179:42;49117:2112;;;;;:::o;64144:215::-;64212:7;64232:21;:9;57856:19;;57874:1;57856:19;;;57767:127;64232:21;64264:10;64277:19;:9;57737:14;;57645:114;64277:19;64264:32;;64307:24;64317:2;64321:9;64307;:24::i;41610:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;41776:13:0;;41720:7;;-1:-1:-1;;;;;41776:13:0;41769:20;;41765:861;;;41810:31;41844:17;;;:11;:17;;;;;;;;;41810:51;;;;;;;;;-1:-1:-1;;;;;41810:51:0;;;;-1:-1:-1;;;41810:51:0;;-1:-1:-1;;;;;41810:51:0;;;;;;;;-1:-1:-1;;;41810:51:0;;;;;;;;;;;;;;41880:731;;41930:14;;-1:-1:-1;;;;;41930:28:0;;41926:101;;41994:9;41610:1083;-1:-1:-1;;;41610:1083:0:o;41926:101::-;-1:-1:-1;;;42371:6:0;42416:17;;;;:11;:17;;;;;;;;;42404:29;;;;;;;;;-1:-1:-1;;;;;42404:29:0;;;;;-1:-1:-1;;;42404:29:0;;-1:-1:-1;;;;;42404:29:0;;;;;;;;-1:-1:-1;;;42404:29:0;;;;;;;;;;;;;42464:28;42460:109;;42532:9;41610:1083;-1:-1:-1;;;41610:1083:0:o;42460:109::-;42331:261;;;41765:861;;42654:31;;-1:-1:-1;;;42654:31:0;;;;;;;;;;;31751:191;31844:6;;;-1:-1:-1;;;;;31861:17:0;;;-1:-1:-1;;;;;;31861:17:0;;;;;;;31894:40;;31844:6;;;31861:17;31844:6;;31894:40;;31825:16;;31894:40;31751:191;;:::o;54377:790::-;54532:4;-1:-1:-1;;;;;54553:13:0;;18370:19;:23;54549:611;;54589:72;;-1:-1:-1;;;54589:72:0;;-1:-1:-1;;;;;54589:36:0;;;;;:72;;26112:10;;54640:4;;54646:7;;54655:5;;54589:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54589:72:0;;;;;;;;-1:-1:-1;;54589:72:0;;;;;;;;;;;;:::i;:::-;;;54585:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54835:13:0;;54831:259;;54885:40;;-1:-1:-1;;;54885:40:0;;;;;;;;;;;54831:259;55040:6;55034:13;55025:6;55021:2;55017:15;55010:38;54585:520;-1:-1:-1;;;;;;54712:55:0;-1:-1:-1;;;54712:55:0;;-1:-1:-1;54705:62:0;;54549:611;-1:-1:-1;55144:4:0;54549:611;54377:790;;;;;;:::o;60298:103::-;60350:13;60383:10;60376:17;;;;;:::i;26619:723::-;26675:13;26896:10;26892:53;;-1:-1:-1;;26923:10:0;;;;;;;;;;;;-1:-1:-1;;;26923:10:0;;;;;26619:723::o;26892:53::-;26970:5;26955:12;27011:78;27018:9;;27011:78;;27044:8;;;;:::i;:::-;;-1:-1:-1;27067:10:0;;-1:-1:-1;27075:2:0;27067:10;;:::i;:::-;;;27011:78;;;27099:19;27131:6;-1:-1:-1;;;;;27121:17:0;;;;;-1:-1:-1;;;27121:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27121:17:0;;27099:39;;27149:154;27156:10;;27149:154;;27183:11;27193:1;27183:11;;:::i;:::-;;-1:-1:-1;27252:10:0;27260:2;27252:5;:10;:::i;:::-;27239:24;;:2;:24;:::i;:::-;27226:39;;27209:6;27216;27209:14;;;;;;-1:-1:-1;;;27209:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;27209:56:0;;;;;;;;-1:-1:-1;27280:11:0;27289:2;27280:11;;:::i;:::-;;;27149:154;;46552:104;46621:27;46631:2;46635:8;46621:27;;;;;;;;;;;;47142:32;47148:2;47152:8;47162:5;47169:4;47580:20;47603:13;-1:-1:-1;;;;;47603:13:0;-1:-1:-1;;;;;47631:16:0;;47627:48;;47656:19;;-1:-1:-1;;;47656:19:0;;;;;;;;;;;47627:48;47690:13;47686:44;;47712:18;;-1:-1:-1;;;47712:18:0;;;;;;;;;;;47686:44;-1:-1:-1;;;;;48082:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;48141:49:0;;-1:-1:-1;;;;;48082:44:0;;;;;;;48141:49;;;;-1:-1:-1;;48082:44:0;;;;;;48141:49;;;;;;;;;;;;;;;;48207:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48257:66:0;;;;-1:-1:-1;;;48307:15:0;48257:66;;;;;;;;;;;48207:25;;48392:328;48412:8;48408:1;:12;48392:328;;;48451:38;;48476:12;;-1:-1:-1;;;;;48451:38:0;;;48468:1;;48451:38;;48468:1;;48451:38;48512:4;:68;;;;;48521:59;48552:1;48556:2;48560:12;48574:5;48521:22;:59::i;:::-;48520:60;48512:68;48508:164;;;48612:40;;-1:-1:-1;;;48612:40:0;;;;;;;;;;;48508:164;48690:14;;;;;48422:3;48392:328;;;-1:-1:-1;48736:13:0;:37;;-1:-1:-1;;;;;;48736:37:0;-1:-1:-1;;;;;48736:37:0;;;;;;;;;;48795:60;45803:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:196::-;662:6;715:2;703:9;694:7;690:23;686:32;683:2;;;736:6;728;721:22;683:2;764:29;783:9;764:29;:::i;804:270::-;872:6;880;933:2;921:9;912:7;908:23;904:32;901:2;;;954:6;946;939:22;901:2;982:29;1001:9;982:29;:::i;:::-;972:39;;1030:38;1064:2;1053:9;1049:18;1030:38;:::i;:::-;1020:48;;891:183;;;;;:::o;1079:338::-;1156:6;1164;1172;1225:2;1213:9;1204:7;1200:23;1196:32;1193:2;;;1246:6;1238;1231:22;1193:2;1274:29;1293:9;1274:29;:::i;:::-;1264:39;;1322:38;1356:2;1345:9;1341:18;1322:38;:::i;:::-;1312:48;;1407:2;1396:9;1392:18;1379:32;1369:42;;1183:234;;;;;:::o;1422:696::-;1517:6;1525;1533;1541;1594:3;1582:9;1573:7;1569:23;1565:33;1562:2;;;1616:6;1608;1601:22;1562:2;1644:29;1663:9;1644:29;:::i;:::-;1634:39;;1692:38;1726:2;1715:9;1711:18;1692:38;:::i;:::-;1682:48;;1777:2;1766:9;1762:18;1749:32;1739:42;;1832:2;1821:9;1817:18;1804:32;-1:-1:-1;;;;;1851:6:1;1848:30;1845:2;;;1896:6;1888;1881:22;1845:2;1924:22;;1977:4;1969:13;;1965:27;-1:-1:-1;1955:2:1;;2011:6;2003;1996:22;1955:2;2039:73;2104:7;2099:2;2086:16;2081:2;2077;2073:11;2039:73;:::i;:::-;2029:83;;;1552:566;;;;;;;:::o;2123:367::-;2188:6;2196;2249:2;2237:9;2228:7;2224:23;2220:32;2217:2;;;2270:6;2262;2255:22;2217:2;2298:29;2317:9;2298:29;:::i;:::-;2288:39;;2377:2;2366:9;2362:18;2349:32;2424:5;2417:13;2410:21;2403:5;2400:32;2390:2;;2451:6;2443;2436:22;2390:2;2479:5;2469:15;;;2207:283;;;;;:::o;2495:264::-;2563:6;2571;2624:2;2612:9;2603:7;2599:23;2595:32;2592:2;;;2645:6;2637;2630:22;2592:2;2673:29;2692:9;2673:29;:::i;:::-;2663:39;2749:2;2734:18;;;;2721:32;;-1:-1:-1;;;2582:177:1:o;2764:1008::-;2848:6;2879:2;2922;2910:9;2901:7;2897:23;2893:32;2890:2;;;2943:6;2935;2928:22;2890:2;2988:9;2975:23;-1:-1:-1;;;;;3058:2:1;3050:6;3047:14;3044:2;;;3079:6;3071;3064:22;3044:2;3122:6;3111:9;3107:22;3097:32;;3167:7;3160:4;3156:2;3152:13;3148:27;3138:2;;3194:6;3186;3179:22;3138:2;3235;3222:16;3257:2;3253;3250:10;3247:2;;;3263:18;;:::i;:::-;3309:2;3306:1;3302:10;3292:20;;3332:28;3356:2;3352;3348:11;3332:28;:::i;:::-;3394:15;;;3425:12;;;;3457:11;;;3487;;;3483:20;;3480:33;-1:-1:-1;3477:2:1;;;3531:6;3523;3516:22;3477:2;3558:6;3549:15;;3573:169;3587:2;3584:1;3581:9;3573:169;;;3644:23;3663:3;3644:23;:::i;:::-;3632:36;;3605:1;3598:9;;;;;3688:12;;;;3720;;3573:169;;;-1:-1:-1;3761:5:1;2859:913;-1:-1:-1;;;;;;;;2859:913:1:o;3777:190::-;3836:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:2;;;3910:6;3902;3895:22;3857:2;-1:-1:-1;3938:23:1;;3847:120;-1:-1:-1;3847:120:1:o;3972:255::-;4030:6;4083:2;4071:9;4062:7;4058:23;4054:32;4051:2;;;4104:6;4096;4089:22;4051:2;4148:9;4135:23;4167:30;4191:5;4167:30;:::i;4232:259::-;4301:6;4354:2;4342:9;4333:7;4329:23;4325:32;4322:2;;;4375:6;4367;4360:22;4322:2;4412:9;4406:16;4431:30;4455:5;4431:30;:::i;4496:480::-;4565:6;4618:2;4606:9;4597:7;4593:23;4589:32;4586:2;;;4639:6;4631;4624:22;4586:2;4684:9;4671:23;-1:-1:-1;;;;;4709:6:1;4706:30;4703:2;;;4754:6;4746;4739:22;4703:2;4782:22;;4835:4;4827:13;;4823:27;-1:-1:-1;4813:2:1;;4869:6;4861;4854:22;4813:2;4897:73;4962:7;4957:2;4944:16;4939:2;4935;4931:11;4897:73;:::i;5176:194::-;5246:6;5299:2;5287:9;5278:7;5274:23;5270:32;5267:2;;;5320:6;5312;5305:22;5267:2;-1:-1:-1;5348:16:1;;5257:113;-1:-1:-1;5257:113:1:o;5375:257::-;5416:3;5454:5;5448:12;5481:6;5476:3;5469:19;5497:63;5553:6;5546:4;5541:3;5537:14;5530:4;5523:5;5519:16;5497:63;:::i;:::-;5614:2;5593:15;-1:-1:-1;;5589:29:1;5580:39;;;;5621:4;5576:50;;5424:208;-1:-1:-1;;5424:208:1:o;5637:1531::-;5861:3;5899:6;5893:13;5925:4;5938:51;5982:6;5977:3;5972:2;5964:6;5960:15;5938:51;:::i;:::-;6052:13;;6011:16;;;;6074:55;6052:13;6011:16;6096:15;;;6074:55;:::i;:::-;6220:13;;6151:20;;;6191:3;;6280:1;6302:18;;;;6355;;;;6382:2;;6460:4;6450:8;6446:19;6434:31;;6382:2;6523;6513:8;6510:16;6490:18;6487:40;6484:2;;;-1:-1:-1;;;6550:33:1;;6606:4;6603:1;6596:15;6636:4;6557:3;6624:17;6484:2;6667:18;6694:110;;;;6818:1;6813:330;;;;6660:483;;6694:110;-1:-1:-1;;6729:24:1;;6715:39;;6774:20;;;;-1:-1:-1;6694:110:1;;6813:330;11457:4;11476:17;;;11526:4;11510:21;;6908:3;6924:169;6938:8;6935:1;6932:15;6924:169;;;7020:14;;7005:13;;;6998:37;7063:16;;;;6955:10;;6924:169;;;6928:3;;7124:8;7117:5;7113:20;7106:27;;6660:483;-1:-1:-1;7159:3:1;;5869:1299;-1:-1:-1;;;;;;;;;;;5869:1299:1:o;7381:488::-;-1:-1:-1;;;;;7650:15:1;;;7632:34;;7702:15;;7697:2;7682:18;;7675:43;7749:2;7734:18;;7727:34;;;7797:3;7792:2;7777:18;;7770:31;;;7575:4;;7818:45;;7843:19;;7835:6;7818:45;:::i;:::-;7810:53;7584:285;-1:-1:-1;;;;;;7584:285:1:o;8066:219::-;8215:2;8204:9;8197:21;8178:4;8235:44;8275:2;8264:9;8260:18;8252:6;8235:44;:::i;10235:356::-;10437:2;10419:21;;;10456:18;;;10449:30;10515:34;10510:2;10495:18;;10488:62;10582:2;10567:18;;10409:182::o;11130:275::-;11201:2;11195:9;11266:2;11247:13;;-1:-1:-1;;11243:27:1;11231:40;;-1:-1:-1;;;;;11286:34:1;;11322:22;;;11283:62;11280:2;;;11348:18;;:::i;:::-;11384:2;11377:22;11175:230;;-1:-1:-1;11175:230:1:o;11542:128::-;11582:3;11613:1;11609:6;11606:1;11603:13;11600:2;;;11619:18;;:::i;:::-;-1:-1:-1;11655:9:1;;11590:80::o;11675:120::-;11715:1;11741;11731:2;;11746:18;;:::i;:::-;-1:-1:-1;11780:9:1;;11721:74::o;11800:168::-;11840:7;11906:1;11902;11898:6;11894:14;11891:1;11888:21;11883:1;11876:9;11869:17;11865:45;11862:2;;;11913:18;;:::i;:::-;-1:-1:-1;11953:9:1;;11852:116::o;11973:125::-;12013:4;12041:1;12038;12035:8;12032:2;;;12046:18;;:::i;:::-;-1:-1:-1;12083:9:1;;12022:76::o;12103:258::-;12175:1;12185:113;12199:6;12196:1;12193:13;12185:113;;;12275:11;;;12269:18;12256:11;;;12249:39;12221:2;12214:10;12185:113;;;12316:6;12313:1;12310:13;12307:2;;;-1:-1:-1;;12351:1:1;12333:16;;12326:27;12156:205::o;12366:380::-;12445:1;12441:12;;;;12488;;;12509:2;;12563:4;12555:6;12551:17;12541:27;;12509:2;12616;12608:6;12605:14;12585:18;12582:38;12579:2;;;12662:10;12657:3;12653:20;12650:1;12643:31;12697:4;12694:1;12687:15;12725:4;12722:1;12715:15;12751:135;12790:3;-1:-1:-1;;12811:17:1;;12808:2;;;12831:18;;:::i;:::-;-1:-1:-1;12878:1:1;12867:13;;12798:88::o;12891:112::-;12923:1;12949;12939:2;;12954:18;;:::i;:::-;-1:-1:-1;12988:9:1;;12929:74::o;13008:127::-;13069:10;13064:3;13060:20;13057:1;13050:31;13100:4;13097:1;13090:15;13124:4;13121:1;13114:15;13140:127;13201:10;13196:3;13192:20;13189:1;13182:31;13232:4;13229:1;13222:15;13256:4;13253:1;13246:15;13272:127;13333:10;13328:3;13324:20;13321:1;13314:31;13364:4;13361:1;13354:15;13388:4;13385:1;13378:15;13404:131;-1:-1:-1;;;;;;13478:32:1;;13468:43;;13458:2;;13525:1;13522;13515:12

Swarm Source

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