ETH Price: $3,465.66 (+2.11%)
Gas: 9 Gwei

Token

Snake Game NFT (SnakeGameNFT)
 

Overview

Max Total Supply

800 SnakeGameNFT

Holders

349

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SnakeGameNFT
0xc6e4fcc5818e92d54101abb1e2f8bd601fa1198f
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:
SnakeGameNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @dev 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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;


error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}
// File: contracts/SnakeGame.sol



pragma solidity ^0.8.4;




contract SnakeGameNFT is ERC721A, Ownable {

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmXbKhvwxHkN7r9WdEhCoU7tEUqZP5WPmYFeJUJkgWoTzW/";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_FREE = 1;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 800;
    uint256 public price = 0.005 ether;

    bool public paused = true;

    constructor() ERC721A("Snake Game NFT", "SnakeGameNFT") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function freeMint() external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet");

        _setAux(_caller, 1);
        _safeMint(_caller, 1);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(_msgSender(), _number);
    }

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

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806051815260200162003f436051913960099080519060200190620000359291906200021d565b506611c37937e08000600a556001600b60006101000a81548160ff0219169083151502179055503480156200006957600080fd5b506040518060400160405280600e81526020017f536e616b652047616d65204e46540000000000000000000000000000000000008152506040518060400160405280600c81526020017f536e616b6547616d654e465400000000000000000000000000000000000000008152508160029080519060200190620000ee9291906200021d565b508060039080519060200190620001079291906200021d565b50620001186200014660201b60201c565b600081905550505062000140620001346200014f60201b60201c565b6200015760201b60201c565b62000332565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c0180620003426000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c51461069e578063ed6661c2146106db578063f2fde38b14610706578063f43a22dc1461072f576101e3565b8063a22cb465146105e4578063b88d4fde1461060d578063c668286214610636578063c87b56dd14610661576101e3565b806391b7f5ed116100d157806391b7f5ed1461054957806395d89b4114610572578063a035b1fe1461059d578063a0712d68146105c8576101e3565b80636c0360eb1461049f57806370a08231146104ca578063715018a6146105075780638da5cb5b1461051e576101e3565b80632fbba1151161017a57806355f804b31161014957806355f804b3146104045780635b70ea9f1461042d5780635c975abb146104375780636352211e14610462576101e3565b80632fbba1151461037057806332cb6b0c146103995780633ccfd60b146103c457806342842e0e146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f10565b61075a565b60405161021c919061336c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ee7565b61083c565b005b34801561025a57600080fd5b506102636108d5565b6040516102709190613387565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612fa3565b610967565b6040516102ad9190613305565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612eab565b6109e3565b005b3480156102eb57600080fd5b506102f4610aee565b6040516103019190613509565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612d40565b610b05565b60405161033e9190613509565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612da5565b610b17565b005b34801561037c57600080fd5b5061039760048036038101906103929190612fa3565b610b27565b005b3480156103a557600080fd5b506103ae610bb7565b6040516103bb9190613509565b60405180910390f35b3480156103d057600080fd5b506103d9610bbd565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612da5565b610cf5565b005b34801561041057600080fd5b5061042b60048036038101906104269190612f62565b610d15565b005b610435610dab565b005b34801561044357600080fd5b5061044c610f48565b604051610459919061336c565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190612fa3565b610f5b565b6040516104969190613305565b60405180910390f35b3480156104ab57600080fd5b506104b4610f71565b6040516104c19190613387565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612d40565b610fff565b6040516104fe9190613509565b60405180910390f35b34801561051357600080fd5b5061051c6110cf565b005b34801561052a57600080fd5b50610533611157565b6040516105409190613305565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612fa3565b611181565b005b34801561057e57600080fd5b50610587611207565b6040516105949190613387565b60405180910390f35b3480156105a957600080fd5b506105b2611299565b6040516105bf9190613509565b60405180910390f35b6105e260048036038101906105dd9190612fa3565b61129f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612e6f565b6114a4565b005b34801561061957600080fd5b50610634600480360381019061062f9190612df4565b61161c565b005b34801561064257600080fd5b5061064b611698565b6040516106589190613387565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612fa3565b6116d1565b6040516106959190613387565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612d69565b6117b0565b6040516106d2919061336c565b60405180910390f35b3480156106e757600080fd5b506106f0611844565b6040516106fd9190613509565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d40565b611849565b005b34801561073b57600080fd5b50610744611941565b6040516107519190613509565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610835575061083482611946565b5b9050919050565b6108446119b0565b73ffffffffffffffffffffffffffffffffffffffff16610862611157565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90613489565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108e4906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906137d9565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b6000610972826119b8565b6109a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ee82610f5b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a756119b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa75750610aa581610aa06119b0565b6117b0565b155b15610ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae9838383611a06565b505050565b6000610af8611ab8565b6001546000540303905090565b6000610b1082611ac1565b9050919050565b610b22838383611b2b565b505050565b610b2f6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610b4d611157565b73ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90613489565b60405180910390fd5b610bb4610bae6119b0565b82611fe1565b50565b61032081565b610bc56119b0565b73ffffffffffffffffffffffffffffffffffffffff16610be3611157565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613489565b60405180910390fd5b60004790506000610c486119b0565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c6b906132f0565b60006040518083038185875af1925050503d8060008114610ca8576040519150601f19603f3d011682016040523d82523d6000602084013e610cad565b606091505b5050905080610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906134c9565b60405180910390fd5b5050565b610d108383836040518060200160405280600081525061161c565b505050565b610d1d6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610d3b611157565b73ffffffffffffffffffffffffffffffffffffffff1614610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613489565b60405180910390fd5b8060099080519060200190610da7929190612b21565b5050565b6000610db56119b0565b9050600b60009054906101000a900460ff1615610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906133a9565b60405180910390fd5b6001610e11610aee565b610e1b919061360e565b6103201015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613449565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906134e9565b60405180910390fd5b6001610ed882611fff565b67ffffffffffffffff16610eec919061360e565b60011015610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690613429565b60405180910390fd5b610f3a81600161205f565b610f45816001611fe1565b50565b600b60009054906101000a900460ff1681565b6000610f66826120cc565b600001519050919050565b60098054610f7e906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa906137d9565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611067576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110d76119b0565b73ffffffffffffffffffffffffffffffffffffffff166110f5611157565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613489565b60405180910390fd5b611155600061235b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111896119b0565b73ffffffffffffffffffffffffffffffffffffffff166111a7611157565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613489565b60405180910390fd5b80600a8190555050565b606060038054611216906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611242906137d9565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b5050505050905090565b600a5481565b60006112a96119b0565b9050600b60009054906101000a900460ff16156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906133a9565b60405180910390fd5b81611304610aee565b61130e919061360e565b6103201015611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613449565b60405180910390fd5b60008211611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906133e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906134e9565b60405180910390fd5b81600a1015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90613409565b60405180910390fd5b34600a54836114569190613695565b14611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906134a9565b60405180910390fd5b6114a08183611fe1565b5050565b6114ac6119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611511576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061151e6119b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115cb6119b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611610919061336c565b60405180910390a35050565b611627848484611b2b565b6116468373ffffffffffffffffffffffffffffffffffffffff16612421565b801561165b575061165984848484612444565b155b15611692576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116dc826119b8565b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613469565b60405180910390fd5b60006009805461172a906137d9565b90501161174657604051806020016040528060008152506117a9565b6009611751836125a4565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611799939291906132bf565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b6118516119b0565b73ffffffffffffffffffffffffffffffffffffffff1661186f611157565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906133c9565b60405180910390fd5b61193e8161235b565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119c3611ab8565b111580156119d2575060005482105b80156119ff575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b36826120cc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ba1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bc26119b0565b73ffffffffffffffffffffffffffffffffffffffff161480611bf15750611bf085611beb6119b0565b6117b0565b5b80611c365750611bff6119b0565b73ffffffffffffffffffffffffffffffffffffffff16611c1e84610967565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce38585856001612751565b611cef60008487611a06565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f6f576000548214611f6e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fda8585856001612757565b5050505050565b611ffb82826040518060200160405280600081525061275d565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120d4612ba7565b6000829050806120e2611ab8565b111580156120f1575060005481105b15612324576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612206578092505050612356565b5b60011561232157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231c578092505050612356565b612207565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246a6119b0565b8786866040518563ffffffff1660e01b815260040161248c9493929190613320565b602060405180830381600087803b1580156124a657600080fd5b505af19250505080156124d757506040513d601f19601f820116820180604052508101906124d49190612f39565b60015b612551573d8060008114612507576040519150601f19603f3d011682016040523d82523d6000602084013e61250c565b606091505b50600081511415612549576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ec576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274c565b600082905060005b6000821461261e5780806126079061383c565b915050600a826126179190613664565b91506125f4565b60008167ffffffffffffffff811115612660577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126925781602001600182028036833780820191505090505b5090505b60008514612745576001826126ab91906136ef565b9150600a856126ba9190613885565b60306126c6919061360e565b60f81b818381518110612702577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273e9190613664565b9450612696565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612805576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128126000858386612751565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129d38673ffffffffffffffffffffffffffffffffffffffff16612421565b15612a99575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a486000878480600101955087612444565b612a7e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d9578260005414612a9457600080fd5b612b05565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a9a575b816000819055505050612b1b6000858386612757565b50505050565b828054612b2d906137d9565b90600052602060002090601f016020900481019282612b4f5760008555612b96565b82601f10612b6857805160ff1916838001178555612b96565b82800160010185558215612b96579182015b82811115612b95578251825591602001919060010190612b7a565b5b509050612ba39190612bea565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c03576000816000905550600101612beb565b5090565b6000612c1a612c1584613549565b613524565b905082815260208101848484011115612c3257600080fd5b612c3d848285613797565b509392505050565b6000612c58612c538461357a565b613524565b905082815260208101848484011115612c7057600080fd5b612c7b848285613797565b509392505050565b600081359050612c9281613b6f565b92915050565b600081359050612ca781613b86565b92915050565b600081359050612cbc81613b9d565b92915050565b600081519050612cd181613b9d565b92915050565b600082601f830112612ce857600080fd5b8135612cf8848260208601612c07565b91505092915050565b600082601f830112612d1257600080fd5b8135612d22848260208601612c45565b91505092915050565b600081359050612d3a81613bb4565b92915050565b600060208284031215612d5257600080fd5b6000612d6084828501612c83565b91505092915050565b60008060408385031215612d7c57600080fd5b6000612d8a85828601612c83565b9250506020612d9b85828601612c83565b9150509250929050565b600080600060608486031215612dba57600080fd5b6000612dc886828701612c83565b9350506020612dd986828701612c83565b9250506040612dea86828701612d2b565b9150509250925092565b60008060008060808587031215612e0a57600080fd5b6000612e1887828801612c83565b9450506020612e2987828801612c83565b9350506040612e3a87828801612d2b565b925050606085013567ffffffffffffffff811115612e5757600080fd5b612e6387828801612cd7565b91505092959194509250565b60008060408385031215612e8257600080fd5b6000612e9085828601612c83565b9250506020612ea185828601612c98565b9150509250929050565b60008060408385031215612ebe57600080fd5b6000612ecc85828601612c83565b9250506020612edd85828601612d2b565b9150509250929050565b600060208284031215612ef957600080fd5b6000612f0784828501612c98565b91505092915050565b600060208284031215612f2257600080fd5b6000612f3084828501612cad565b91505092915050565b600060208284031215612f4b57600080fd5b6000612f5984828501612cc2565b91505092915050565b600060208284031215612f7457600080fd5b600082013567ffffffffffffffff811115612f8e57600080fd5b612f9a84828501612d01565b91505092915050565b600060208284031215612fb557600080fd5b6000612fc384828501612d2b565b91505092915050565b612fd581613723565b82525050565b612fe481613735565b82525050565b6000612ff5826135c0565b612fff81856135d6565b935061300f8185602086016137a6565b61301881613972565b840191505092915050565b600061302e826135cb565b61303881856135f2565b93506130488185602086016137a6565b61305181613972565b840191505092915050565b6000613067826135cb565b6130718185613603565b93506130818185602086016137a6565b80840191505092915050565b6000815461309a816137d9565b6130a48186613603565b945060018216600081146130bf57600181146130d057613103565b60ff19831686528186019350613103565b6130d9856135ab565b60005b838110156130fb578154818901526001820191506020810190506130dc565b838801955050505b50505092915050565b60006131196006836135f2565b915061312482613983565b602082019050919050565b600061313c6026836135f2565b9150613147826139ac565b604082019050919050565b600061315f600a836135f2565b915061316a826139fb565b602082019050919050565b60006131826016836135f2565b915061318d82613a24565b602082019050919050565b60006131a5601a836135f2565b91506131b082613a4d565b602082019050919050565b60006131c86012836135f2565b91506131d382613a76565b602082019050919050565b60006131eb6015836135f2565b91506131f682613a9f565b602082019050919050565b600061320e6020836135f2565b915061321982613ac8565b602082019050919050565b60006132316016836135f2565b915061323c82613af1565b602082019050919050565b60006132546000836135e7565b915061325f82613b1a565b600082019050919050565b6000613277600e836135f2565b915061328282613b1d565b602082019050919050565b600061329a600c836135f2565b91506132a582613b46565b602082019050919050565b6132b98161378d565b82525050565b60006132cb828661308d565b91506132d7828561305c565b91506132e3828461305c565b9150819050949350505050565b60006132fb82613247565b9150819050919050565b600060208201905061331a6000830184612fcc565b92915050565b60006080820190506133356000830187612fcc565b6133426020830186612fcc565b61334f60408301856132b0565b81810360608301526133618184612fea565b905095945050505050565b60006020820190506133816000830184612fdb565b92915050565b600060208201905081810360008301526133a18184613023565b905092915050565b600060208201905081810360008301526133c28161310c565b9050919050565b600060208201905081810360008301526133e28161312f565b9050919050565b6000602082019050818103600083015261340281613152565b9050919050565b6000602082019050818103600083015261342281613175565b9050919050565b6000602082019050818103600083015261344281613198565b9050919050565b60006020820190508181036000830152613462816131bb565b9050919050565b60006020820190508181036000830152613482816131de565b9050919050565b600060208201905081810360008301526134a281613201565b9050919050565b600060208201905081810360008301526134c281613224565b9050919050565b600060208201905081810360008301526134e28161326a565b9050919050565b600060208201905081810360008301526135028161328d565b9050919050565b600060208201905061351e60008301846132b0565b92915050565b600061352e61353f565b905061353a828261380b565b919050565b6000604051905090565b600067ffffffffffffffff82111561356457613563613943565b5b61356d82613972565b9050602081019050919050565b600067ffffffffffffffff82111561359557613594613943565b5b61359e82613972565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136198261378d565b91506136248361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613659576136586138b6565b5b828201905092915050565b600061366f8261378d565b915061367a8361378d565b92508261368a576136896138e5565b5b828204905092915050565b60006136a08261378d565b91506136ab8361378d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136e4576136e36138b6565b5b828202905092915050565b60006136fa8261378d565b91506137058361378d565b925082821015613718576137176138b6565b5b828203905092915050565b600061372e8261376d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c45780820151818401526020810190506137a9565b838111156137d3576000848401525b50505050565b600060028204905060018216806137f157607f821691505b6020821081141561380557613804613914565b5b50919050565b61381482613972565b810181811067ffffffffffffffff8211171561383357613832613943565b5b80604052505050565b60006138478261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561387a576138796138b6565b5b600182019050919050565b60006138908261378d565b915061389b8361378d565b9250826138ab576138aa6138e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613b7881613723565b8114613b8357600080fd5b50565b613b8f81613735565b8114613b9a57600080fd5b50565b613ba681613741565b8114613bb157600080fd5b50565b613bbd8161378d565b8114613bc857600080fd5b5056fea2646970667358221220c03bafad38e4f689f5df6b785ff821d10e74a09fac8ff95382940136e6e134b664736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d58624b68767778486b4e37723957644568436f5537744555715a503557506d5946654a554a6b67576f547a572f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c51461069e578063ed6661c2146106db578063f2fde38b14610706578063f43a22dc1461072f576101e3565b8063a22cb465146105e4578063b88d4fde1461060d578063c668286214610636578063c87b56dd14610661576101e3565b806391b7f5ed116100d157806391b7f5ed1461054957806395d89b4114610572578063a035b1fe1461059d578063a0712d68146105c8576101e3565b80636c0360eb1461049f57806370a08231146104ca578063715018a6146105075780638da5cb5b1461051e576101e3565b80632fbba1151161017a57806355f804b31161014957806355f804b3146104045780635b70ea9f1461042d5780635c975abb146104375780636352211e14610462576101e3565b80632fbba1151461037057806332cb6b0c146103995780633ccfd60b146103c457806342842e0e146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f10565b61075a565b60405161021c919061336c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ee7565b61083c565b005b34801561025a57600080fd5b506102636108d5565b6040516102709190613387565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612fa3565b610967565b6040516102ad9190613305565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612eab565b6109e3565b005b3480156102eb57600080fd5b506102f4610aee565b6040516103019190613509565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612d40565b610b05565b60405161033e9190613509565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612da5565b610b17565b005b34801561037c57600080fd5b5061039760048036038101906103929190612fa3565b610b27565b005b3480156103a557600080fd5b506103ae610bb7565b6040516103bb9190613509565b60405180910390f35b3480156103d057600080fd5b506103d9610bbd565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612da5565b610cf5565b005b34801561041057600080fd5b5061042b60048036038101906104269190612f62565b610d15565b005b610435610dab565b005b34801561044357600080fd5b5061044c610f48565b604051610459919061336c565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190612fa3565b610f5b565b6040516104969190613305565b60405180910390f35b3480156104ab57600080fd5b506104b4610f71565b6040516104c19190613387565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612d40565b610fff565b6040516104fe9190613509565b60405180910390f35b34801561051357600080fd5b5061051c6110cf565b005b34801561052a57600080fd5b50610533611157565b6040516105409190613305565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612fa3565b611181565b005b34801561057e57600080fd5b50610587611207565b6040516105949190613387565b60405180910390f35b3480156105a957600080fd5b506105b2611299565b6040516105bf9190613509565b60405180910390f35b6105e260048036038101906105dd9190612fa3565b61129f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612e6f565b6114a4565b005b34801561061957600080fd5b50610634600480360381019061062f9190612df4565b61161c565b005b34801561064257600080fd5b5061064b611698565b6040516106589190613387565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612fa3565b6116d1565b6040516106959190613387565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612d69565b6117b0565b6040516106d2919061336c565b60405180910390f35b3480156106e757600080fd5b506106f0611844565b6040516106fd9190613509565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d40565b611849565b005b34801561073b57600080fd5b50610744611941565b6040516107519190613509565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610835575061083482611946565b5b9050919050565b6108446119b0565b73ffffffffffffffffffffffffffffffffffffffff16610862611157565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90613489565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108e4906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906137d9565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b6000610972826119b8565b6109a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ee82610f5b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a756119b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa75750610aa581610aa06119b0565b6117b0565b155b15610ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae9838383611a06565b505050565b6000610af8611ab8565b6001546000540303905090565b6000610b1082611ac1565b9050919050565b610b22838383611b2b565b505050565b610b2f6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610b4d611157565b73ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90613489565b60405180910390fd5b610bb4610bae6119b0565b82611fe1565b50565b61032081565b610bc56119b0565b73ffffffffffffffffffffffffffffffffffffffff16610be3611157565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613489565b60405180910390fd5b60004790506000610c486119b0565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c6b906132f0565b60006040518083038185875af1925050503d8060008114610ca8576040519150601f19603f3d011682016040523d82523d6000602084013e610cad565b606091505b5050905080610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906134c9565b60405180910390fd5b5050565b610d108383836040518060200160405280600081525061161c565b505050565b610d1d6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610d3b611157565b73ffffffffffffffffffffffffffffffffffffffff1614610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613489565b60405180910390fd5b8060099080519060200190610da7929190612b21565b5050565b6000610db56119b0565b9050600b60009054906101000a900460ff1615610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906133a9565b60405180910390fd5b6001610e11610aee565b610e1b919061360e565b6103201015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613449565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906134e9565b60405180910390fd5b6001610ed882611fff565b67ffffffffffffffff16610eec919061360e565b60011015610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690613429565b60405180910390fd5b610f3a81600161205f565b610f45816001611fe1565b50565b600b60009054906101000a900460ff1681565b6000610f66826120cc565b600001519050919050565b60098054610f7e906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa906137d9565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611067576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110d76119b0565b73ffffffffffffffffffffffffffffffffffffffff166110f5611157565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613489565b60405180910390fd5b611155600061235b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111896119b0565b73ffffffffffffffffffffffffffffffffffffffff166111a7611157565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613489565b60405180910390fd5b80600a8190555050565b606060038054611216906137d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611242906137d9565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b5050505050905090565b600a5481565b60006112a96119b0565b9050600b60009054906101000a900460ff16156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906133a9565b60405180910390fd5b81611304610aee565b61130e919061360e565b6103201015611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613449565b60405180910390fd5b60008211611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906133e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906134e9565b60405180910390fd5b81600a1015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90613409565b60405180910390fd5b34600a54836114569190613695565b14611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906134a9565b60405180910390fd5b6114a08183611fe1565b5050565b6114ac6119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611511576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061151e6119b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115cb6119b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611610919061336c565b60405180910390a35050565b611627848484611b2b565b6116468373ffffffffffffffffffffffffffffffffffffffff16612421565b801561165b575061165984848484612444565b155b15611692576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116dc826119b8565b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613469565b60405180910390fd5b60006009805461172a906137d9565b90501161174657604051806020016040528060008152506117a9565b6009611751836125a4565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611799939291906132bf565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b6118516119b0565b73ffffffffffffffffffffffffffffffffffffffff1661186f611157565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613489565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906133c9565b60405180910390fd5b61193e8161235b565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119c3611ab8565b111580156119d2575060005482105b80156119ff575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b36826120cc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ba1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bc26119b0565b73ffffffffffffffffffffffffffffffffffffffff161480611bf15750611bf085611beb6119b0565b6117b0565b5b80611c365750611bff6119b0565b73ffffffffffffffffffffffffffffffffffffffff16611c1e84610967565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce38585856001612751565b611cef60008487611a06565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f6f576000548214611f6e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fda8585856001612757565b5050505050565b611ffb82826040518060200160405280600081525061275d565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120d4612ba7565b6000829050806120e2611ab8565b111580156120f1575060005481105b15612324576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612206578092505050612356565b5b60011561232157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231c578092505050612356565b612207565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246a6119b0565b8786866040518563ffffffff1660e01b815260040161248c9493929190613320565b602060405180830381600087803b1580156124a657600080fd5b505af19250505080156124d757506040513d601f19601f820116820180604052508101906124d49190612f39565b60015b612551573d8060008114612507576040519150601f19603f3d011682016040523d82523d6000602084013e61250c565b606091505b50600081511415612549576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ec576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274c565b600082905060005b6000821461261e5780806126079061383c565b915050600a826126179190613664565b91506125f4565b60008167ffffffffffffffff811115612660577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126925781602001600182028036833780820191505090505b5090505b60008514612745576001826126ab91906136ef565b9150600a856126ba9190613885565b60306126c6919061360e565b60f81b818381518110612702577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561273e9190613664565b9450612696565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127ca576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612805576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128126000858386612751565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129d38673ffffffffffffffffffffffffffffffffffffffff16612421565b15612a99575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a486000878480600101955087612444565b612a7e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d9578260005414612a9457600080fd5b612b05565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a9a575b816000819055505050612b1b6000858386612757565b50505050565b828054612b2d906137d9565b90600052602060002090601f016020900481019282612b4f5760008555612b96565b82601f10612b6857805160ff1916838001178555612b96565b82800160010185558215612b96579182015b82811115612b95578251825591602001919060010190612b7a565b5b509050612ba39190612bea565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c03576000816000905550600101612beb565b5090565b6000612c1a612c1584613549565b613524565b905082815260208101848484011115612c3257600080fd5b612c3d848285613797565b509392505050565b6000612c58612c538461357a565b613524565b905082815260208101848484011115612c7057600080fd5b612c7b848285613797565b509392505050565b600081359050612c9281613b6f565b92915050565b600081359050612ca781613b86565b92915050565b600081359050612cbc81613b9d565b92915050565b600081519050612cd181613b9d565b92915050565b600082601f830112612ce857600080fd5b8135612cf8848260208601612c07565b91505092915050565b600082601f830112612d1257600080fd5b8135612d22848260208601612c45565b91505092915050565b600081359050612d3a81613bb4565b92915050565b600060208284031215612d5257600080fd5b6000612d6084828501612c83565b91505092915050565b60008060408385031215612d7c57600080fd5b6000612d8a85828601612c83565b9250506020612d9b85828601612c83565b9150509250929050565b600080600060608486031215612dba57600080fd5b6000612dc886828701612c83565b9350506020612dd986828701612c83565b9250506040612dea86828701612d2b565b9150509250925092565b60008060008060808587031215612e0a57600080fd5b6000612e1887828801612c83565b9450506020612e2987828801612c83565b9350506040612e3a87828801612d2b565b925050606085013567ffffffffffffffff811115612e5757600080fd5b612e6387828801612cd7565b91505092959194509250565b60008060408385031215612e8257600080fd5b6000612e9085828601612c83565b9250506020612ea185828601612c98565b9150509250929050565b60008060408385031215612ebe57600080fd5b6000612ecc85828601612c83565b9250506020612edd85828601612d2b565b9150509250929050565b600060208284031215612ef957600080fd5b6000612f0784828501612c98565b91505092915050565b600060208284031215612f2257600080fd5b6000612f3084828501612cad565b91505092915050565b600060208284031215612f4b57600080fd5b6000612f5984828501612cc2565b91505092915050565b600060208284031215612f7457600080fd5b600082013567ffffffffffffffff811115612f8e57600080fd5b612f9a84828501612d01565b91505092915050565b600060208284031215612fb557600080fd5b6000612fc384828501612d2b565b91505092915050565b612fd581613723565b82525050565b612fe481613735565b82525050565b6000612ff5826135c0565b612fff81856135d6565b935061300f8185602086016137a6565b61301881613972565b840191505092915050565b600061302e826135cb565b61303881856135f2565b93506130488185602086016137a6565b61305181613972565b840191505092915050565b6000613067826135cb565b6130718185613603565b93506130818185602086016137a6565b80840191505092915050565b6000815461309a816137d9565b6130a48186613603565b945060018216600081146130bf57600181146130d057613103565b60ff19831686528186019350613103565b6130d9856135ab565b60005b838110156130fb578154818901526001820191506020810190506130dc565b838801955050505b50505092915050565b60006131196006836135f2565b915061312482613983565b602082019050919050565b600061313c6026836135f2565b9150613147826139ac565b604082019050919050565b600061315f600a836135f2565b915061316a826139fb565b602082019050919050565b60006131826016836135f2565b915061318d82613a24565b602082019050919050565b60006131a5601a836135f2565b91506131b082613a4d565b602082019050919050565b60006131c86012836135f2565b91506131d382613a76565b602082019050919050565b60006131eb6015836135f2565b91506131f682613a9f565b602082019050919050565b600061320e6020836135f2565b915061321982613ac8565b602082019050919050565b60006132316016836135f2565b915061323c82613af1565b602082019050919050565b60006132546000836135e7565b915061325f82613b1a565b600082019050919050565b6000613277600e836135f2565b915061328282613b1d565b602082019050919050565b600061329a600c836135f2565b91506132a582613b46565b602082019050919050565b6132b98161378d565b82525050565b60006132cb828661308d565b91506132d7828561305c565b91506132e3828461305c565b9150819050949350505050565b60006132fb82613247565b9150819050919050565b600060208201905061331a6000830184612fcc565b92915050565b60006080820190506133356000830187612fcc565b6133426020830186612fcc565b61334f60408301856132b0565b81810360608301526133618184612fea565b905095945050505050565b60006020820190506133816000830184612fdb565b92915050565b600060208201905081810360008301526133a18184613023565b905092915050565b600060208201905081810360008301526133c28161310c565b9050919050565b600060208201905081810360008301526133e28161312f565b9050919050565b6000602082019050818103600083015261340281613152565b9050919050565b6000602082019050818103600083015261342281613175565b9050919050565b6000602082019050818103600083015261344281613198565b9050919050565b60006020820190508181036000830152613462816131bb565b9050919050565b60006020820190508181036000830152613482816131de565b9050919050565b600060208201905081810360008301526134a281613201565b9050919050565b600060208201905081810360008301526134c281613224565b9050919050565b600060208201905081810360008301526134e28161326a565b9050919050565b600060208201905081810360008301526135028161328d565b9050919050565b600060208201905061351e60008301846132b0565b92915050565b600061352e61353f565b905061353a828261380b565b919050565b6000604051905090565b600067ffffffffffffffff82111561356457613563613943565b5b61356d82613972565b9050602081019050919050565b600067ffffffffffffffff82111561359557613594613943565b5b61359e82613972565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136198261378d565b91506136248361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613659576136586138b6565b5b828201905092915050565b600061366f8261378d565b915061367a8361378d565b92508261368a576136896138e5565b5b828204905092915050565b60006136a08261378d565b91506136ab8361378d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136e4576136e36138b6565b5b828202905092915050565b60006136fa8261378d565b91506137058361378d565b925082821015613718576137176138b6565b5b828203905092915050565b600061372e8261376d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137c45780820151818401526020810190506137a9565b838111156137d3576000848401525b50505050565b600060028204905060018216806137f157607f821691505b6020821081141561380557613804613914565b5b50919050565b61381482613972565b810181811067ffffffffffffffff8211171561383357613832613943565b5b80604052505050565b60006138478261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561387a576138796138b6565b5b600182019050919050565b60006138908261378d565b915061389b8361378d565b9250826138ab576138aa6138e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613b7881613723565b8114613b8357600080fd5b50565b613b8f81613735565b8114613b9a57600080fd5b50565b613ba681613741565b8114613bb157600080fd5b50565b613bbd8161378d565b8114613bc857600080fd5b5056fea2646970667358221220c03bafad38e4f689f5df6b785ff821d10e74a09fac8ff95382940136e6e134b664736f6c63430008040033

Deployed Bytecode Sourcemap

52042:2628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27002:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54108:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30115:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31618:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31181:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26251:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53567:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32483:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53901:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52349:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53684:209;;;;;;;;;;;;;:::i;:::-;;32724:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54197:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53043:407;;;:::i;:::-;;52439:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29923:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52093:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27371:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54014:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30284:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52396:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52539:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31894:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32980:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52207:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54305:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32252:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52260:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52303:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27002:305;27104:4;27156:25;27141:40;;;:11;:40;;;;:105;;;;27213:33;27198:48;;;:11;:48;;;;27141:105;:158;;;;27263:36;27287:11;27263:23;:36::i;:::-;27141:158;27121:178;;27002:305;;;:::o;54108:81::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54175:6:::1;54166;;:15;;;;;;;;;;;;;;;;;;54108:81:::0;:::o;30115:100::-;30169:13;30202:5;30195:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30115:100;:::o;31618:204::-;31686:7;31711:16;31719:7;31711;:16::i;:::-;31706:64;;31736:34;;;;;;;;;;;;;;31706:64;31790:15;:24;31806:7;31790:24;;;;;;;;;;;;;;;;;;;;;31783:31;;31618:204;;;:::o;31181:371::-;31254:13;31270:24;31286:7;31270:15;:24::i;:::-;31254:40;;31315:5;31309:11;;:2;:11;;;31305:48;;;31329:24;;;;;;;;;;;;;;31305:48;31386:5;31370:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31396:37;31413:5;31420:12;:10;:12::i;:::-;31396:16;:37::i;:::-;31395:38;31370:63;31366:138;;;31457:35;;;;;;;;;;;;;;31366:138;31516:28;31525:2;31529:7;31538:5;31516:8;:28::i;:::-;31181:371;;;:::o;26251:303::-;26295:7;26520:15;:13;:15::i;:::-;26505:12;;26489:13;;:28;:46;26482:53;;26251:303;:::o;53567:109::-;53620:7;53647:21;53661:6;53647:13;:21::i;:::-;53640:28;;53567:109;;;:::o;32483:170::-;32617:28;32627:4;32633:2;32637:7;32617:9;:28::i;:::-;32483:170;;;:::o;53901:105::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53966:32:::1;53976:12;:10;:12::i;:::-;53990:7;53966:9;:32::i;:::-;53901:105:::0;:::o;52349:40::-;52386:3;52349:40;:::o;53684:209::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53734:15:::1;53752:21;53734:39;;53785:12;53803;:10;:12::i;:::-;:17;;53828:7;53803:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53784:56;;;53859:7;53851:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;4370:1;;53684:209::o:0;32724:185::-;32862:39;32879:4;32885:2;32889:7;32862:39;;;;;;;;;;;;:16;:39::i;:::-;32724:185;;;:::o;54197:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54281:8:::1;54271:7;:18;;;;;;;;;;;;:::i;:::-;;54197:100:::0;:::o;53043:407::-;53091:15;53109:12;:10;:12::i;:::-;53091:30;;53141:6;;;;;;;;;;;53140:7;53132:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:1;53191:13;:11;:13::i;:::-;:17;;;;:::i;:::-;52386:3;53177:31;;53169:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53263:7;53250:20;;:9;:20;;;53242:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;53346:1;53326:16;53334:7;53326;:16::i;:::-;53318:25;;:29;;;;:::i;:::-;52295:1;53306:41;;53298:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53391:19;53399:7;53408:1;53391:7;:19::i;:::-;53421:21;53431:7;53440:1;53421:9;:21::i;:::-;53043:407;:::o;52439:25::-;;;;;;;;;;;;;:::o;29923:125::-;29987:7;30014:21;30027:7;30014:12;:21::i;:::-;:26;;;30007:33;;29923:125;;;:::o;52093:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27371:206::-;27435:7;27476:1;27459:19;;:5;:19;;;27455:60;;;27487:28;;;;;;;;;;;;;;27455:60;27541:12;:19;27554:5;27541:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27533:36;;27526:43;;27371:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;54014:86::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54086:6:::1;54078:5;:14;;;;54014:86:::0;:::o;30284:104::-;30340:13;30373:7;30366:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30284:104;:::o;52396:34::-;;;;:::o;52539:496::-;52598:15;52616:12;:10;:12::i;:::-;52598:30;;52648:6;;;;;;;;;;;52647:7;52639:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;52714:7;52698:13;:11;:13::i;:::-;:23;;;;:::i;:::-;52386:3;52684:37;;52676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52773:1;52763:7;:11;52755:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;52821:7;52808:20;;:9;:20;;;52800:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52878:7;52340:2;52864:21;;52856:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;52951:9;52942:5;;52932:7;:15;;;;:::i;:::-;:28;52924:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53000:27;53010:7;53019;53000:9;:27::i;:::-;52539:496;;:::o;31894:287::-;32005:12;:10;:12::i;:::-;31993:24;;:8;:24;;;31989:54;;;32026:17;;;;;;;;;;;;;;31989:54;32101:8;32056:18;:32;32075:12;:10;:12::i;:::-;32056:32;;;;;;;;;;;;;;;:42;32089:8;32056:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32154:8;32125:48;;32140:12;:10;:12::i;:::-;32125:48;;;32164:8;32125:48;;;;;;:::i;:::-;;;;;;;;31894:287;;:::o;32980:369::-;33147:28;33157:4;33163:2;33167:7;33147:9;:28::i;:::-;33190:15;:2;:13;;;:15::i;:::-;:76;;;;;33210:56;33241:4;33247:2;33251:7;33260:5;33210:30;:56::i;:::-;33209:57;33190:76;33186:156;;;33290:40;;;;;;;;;;;;;;33186:156;32980:369;;;;:::o;52207:46::-;;;;;;;;;;;;;;;;;;;:::o;54305:362::-;54371:13;54405:17;54413:8;54405:7;:17::i;:::-;54397:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54490:1;54472:7;54466:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;54548:7;54572:26;54589:8;54572:16;:26::i;:::-;54615:13;;;;;;;;;;;;;;;;;54515:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54466:193;54459:200;;54305:362;;;:::o;32252:164::-;32349:4;32373:18;:25;32392:5;32373:25;;;;;;;;;;;;;;;:35;32399:8;32373:35;;;;;;;;;;;;;;;;;;;;;;;;;32366:42;;32252:164;;;;:::o;52260:36::-;52295:1;52260:36;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;52303:39::-;52340:2;52303:39;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;33604:174::-;33661:4;33704:7;33685:15;:13;:15::i;:::-;:26;;:53;;;;;33725:13;;33715:7;:23;33685:53;:85;;;;;33743:11;:20;33755:7;33743:20;;;;;;;;;;;:27;;;;;;;;;;;;33742:28;33685:85;33678:92;;33604:174;;;:::o;42830:196::-;42972:2;42945:15;:24;42961:7;42945:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43010:7;43006:2;42990:28;;42999:5;42990:28;;;;;;;;;;;;42830:196;;;:::o;53458:101::-;53523:7;53550:1;53543:8;;53458:101;:::o;27659:137::-;27720:7;27755:12;:19;27768:5;27755:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27747:41;;27740:48;;27659:137;;;:::o;37778:2130::-;37893:35;37931:21;37944:7;37931:12;:21::i;:::-;37893:59;;37991:4;37969:26;;:13;:18;;;:26;;;37965:67;;38004:28;;;;;;;;;;;;;;37965:67;38045:22;38087:4;38071:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38108:36;38125:4;38131:12;:10;:12::i;:::-;38108:16;:36::i;:::-;38071:73;:126;;;;38185:12;:10;:12::i;:::-;38161:36;;:20;38173:7;38161:11;:20::i;:::-;:36;;;38071:126;38045:153;;38216:17;38211:66;;38242:35;;;;;;;;;;;;;;38211:66;38306:1;38292:16;;:2;:16;;;38288:52;;;38317:23;;;;;;;;;;;;;;38288:52;38353:43;38375:4;38381:2;38385:7;38394:1;38353:21;:43::i;:::-;38461:35;38478:1;38482:7;38491:4;38461:8;:35::i;:::-;38822:1;38792:12;:18;38805:4;38792:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38866:1;38838:12;:16;38851:2;38838:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38884:31;38918:11;:20;38930:7;38918:20;;;;;;;;;;;38884:54;;38969:2;38953:8;:13;;;:18;;;;;;;;;;;;;;;;;;39019:15;38986:8;:23;;;:49;;;;;;;;;;;;;;;;;;39287:19;39319:1;39309:7;:11;39287:33;;39335:31;39369:11;:24;39381:11;39369:24;;;;;;;;;;;39335:58;;39437:1;39412:27;;:8;:13;;;;;;;;;;;;:27;;;39408:384;;;39622:13;;39607:11;:28;39603:174;;39676:4;39660:8;:13;;;:20;;;;;;;;;;;;;;;;;;39729:13;:28;;;39703:8;:23;;;:54;;;;;;;;;;;;;;;;;;39603:174;39408:384;37778:2130;;;39839:7;39835:2;39820:27;;39829:4;39820:27;;;;;;;;;;;;39858:42;39879:4;39885:2;39889:7;39898:1;39858:20;:42::i;:::-;37778:2130;;;;;:::o;33862:104::-;33931:27;33941:2;33945:8;33931:27;;;;;;;;;;;;:9;:27::i;:::-;33862:104;;:::o;28149:112::-;28204:6;28230:12;:19;28243:5;28230:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;28223:30;;28149:112;;;:::o;28449:101::-;28539:3;28513:12;:19;28526:5;28513:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;28449:101;;:::o;28752:1109::-;28814:21;;:::i;:::-;28848:12;28863:7;28848:22;;28931:4;28912:15;:13;:15::i;:::-;:23;;:47;;;;;28946:13;;28939:4;:20;28912:47;28908:886;;;28980:31;29014:11;:17;29026:4;29014:17;;;;;;;;;;;28980:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29055:9;:16;;;29050:729;;29126:1;29100:28;;:9;:14;;;:28;;;29096:101;;29164:9;29157:16;;;;;;29096:101;29499:261;29506:4;29499:261;;;29539:6;;;;;;;;29584:11;:17;29596:4;29584:17;;;;;;;;;;;29572:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29658:1;29632:28;;:9;:14;;;:28;;;29628:109;;29700:9;29693:16;;;;;;29628:109;29499:261;;;29050:729;28908:886;;29822:31;;;;;;;;;;;;;;28752:1109;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5349:191;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;43518:667::-;43681:4;43718:2;43702:36;;;43739:12;:10;:12::i;:::-;43753:4;43759:7;43768:5;43702:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43698:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43953:1;43936:6;:13;:18;43932:235;;;43982:40;;;;;;;;;;;;;;43932:235;44125:6;44119:13;44110:6;44106:2;44102:15;44095:38;43698:480;43831:45;;;43821:55;;;:6;:55;;;;43814:62;;;43518:667;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44833:159::-;;;;;:::o;45651:158::-;;;;;:::o;34340:1751::-;34463:20;34486:13;;34463:36;;34528:1;34514:16;;:2;:16;;;34510:48;;;34539:19;;;;;;;;;;;;;;34510:48;34585:1;34573:8;:13;34569:44;;;34595:18;;;;;;;;;;;;;;34569:44;34626:61;34656:1;34660:2;34664:12;34678:8;34626:21;:61::i;:::-;34999:8;34964:12;:16;34977:2;34964:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35063:8;35023:12;:16;35036:2;35023:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35122:2;35089:11;:25;35101:12;35089:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35189:15;35139:11;:25;35151:12;35139:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35222:20;35245:12;35222:35;;35272:11;35301:8;35286:12;:23;35272:37;;35330:15;:2;:13;;;:15::i;:::-;35326:633;;;35366:314;35422:12;35418:2;35397:38;;35414:1;35397:38;;;;;;;;;;;;35463:69;35502:1;35506:2;35510:14;;;;;;35526:5;35463:30;:69::i;:::-;35458:174;;35568:40;;;;;;;;;;;;;;35458:174;35675:3;35659:12;:19;;35366:314;;35761:12;35744:13;;:29;35740:43;;35775:8;;;35740:43;35326:633;;;35824:120;35880:14;;;;;;35876:2;35855:40;;35872:1;35855:40;;;;;;;;;;;;35939:3;35923:12;:19;;35824:120;;35326:633;35989:12;35973:13;:28;;;;34340:1751;;36023:60;36052:1;36056:2;36060:12;36074:8;36023:20;:60::i;:::-;34340:1751;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7730:845::-;7833:3;7870:5;7864:12;7899:36;7925:9;7899:36;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8071:1;8060:9;8056:17;8087:1;8082:137;;;;8233:1;8228:341;;;;8049:520;;8082:137;8166:4;8162:9;8151;8147:25;8142:3;8135:38;8202:6;8197:3;8193:16;8186:23;;8082:137;;8228:341;8295:38;8327:5;8295:38;:::i;:::-;8355:1;8369:154;8383:6;8380:1;8377:13;8369:154;;;8457:7;8451:14;8447:1;8442:3;8438:11;8431:35;8507:1;8498:7;8494:15;8483:26;;8405:4;8402:1;8398:12;8393:17;;8369:154;;;8552:6;8547:3;8543:16;8536:23;;8235:334;;8049:520;;7837:738;;;;;;:::o;8581:365::-;8723:3;8744:66;8808:1;8803:3;8744:66;:::i;:::-;8737:73;;8819:93;8908:3;8819:93;:::i;:::-;8937:2;8932:3;8928:12;8921:19;;8727:219;;;:::o;8952:366::-;9094:3;9115:67;9179:2;9174:3;9115:67;:::i;:::-;9108:74;;9191:93;9280:3;9191:93;:::i;:::-;9309:2;9304:3;9300:12;9293:19;;9098:220;;;:::o;9324:366::-;9466:3;9487:67;9551:2;9546:3;9487:67;:::i;:::-;9480:74;;9563:93;9652:3;9563:93;:::i;:::-;9681:2;9676:3;9672:12;9665:19;;9470:220;;;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9842:220;;;:::o;10068:366::-;10210:3;10231:67;10295:2;10290:3;10231:67;:::i;:::-;10224:74;;10307:93;10396:3;10307:93;:::i;:::-;10425:2;10420:3;10416:12;10409:19;;10214:220;;;:::o;10440:366::-;10582:3;10603:67;10667:2;10662:3;10603:67;:::i;:::-;10596:74;;10679:93;10768:3;10679:93;:::i;:::-;10797:2;10792:3;10788:12;10781:19;;10586:220;;;:::o;10812:366::-;10954:3;10975:67;11039:2;11034:3;10975:67;:::i;:::-;10968:74;;11051:93;11140:3;11051:93;:::i;:::-;11169:2;11164:3;11160:12;11153:19;;10958:220;;;:::o;11184:366::-;11326:3;11347:67;11411:2;11406:3;11347:67;:::i;:::-;11340:74;;11423:93;11512:3;11423:93;:::i;:::-;11541:2;11536:3;11532:12;11525:19;;11330:220;;;:::o;11556:366::-;11698:3;11719:67;11783:2;11778:3;11719:67;:::i;:::-;11712:74;;11795:93;11884:3;11795:93;:::i;:::-;11913:2;11908:3;11904:12;11897:19;;11702:220;;;:::o;11928:398::-;12087:3;12108:83;12189:1;12184:3;12108:83;:::i;:::-;12101:90;;12200:93;12289:3;12200:93;:::i;:::-;12318:1;12313:3;12309:11;12302:18;;12091:235;;;:::o;12332:366::-;12474:3;12495:67;12559:2;12554:3;12495:67;:::i;:::-;12488:74;;12571:93;12660:3;12571:93;:::i;:::-;12689:2;12684:3;12680:12;12673:19;;12478:220;;;:::o;12704:366::-;12846:3;12867:67;12931:2;12926:3;12867:67;:::i;:::-;12860:74;;12943:93;13032:3;12943:93;:::i;:::-;13061:2;13056:3;13052:12;13045:19;;12850:220;;;:::o;13076:118::-;13163:24;13181:5;13163:24;:::i;:::-;13158:3;13151:37;13141:53;;:::o;13200:589::-;13425:3;13447:92;13535:3;13526:6;13447:92;:::i;:::-;13440:99;;13556:95;13647:3;13638:6;13556:95;:::i;:::-;13549:102;;13668:95;13759:3;13750:6;13668:95;:::i;:::-;13661:102;;13780:3;13773:10;;13429:360;;;;;;:::o;13795:379::-;13979:3;14001:147;14144:3;14001:147;:::i;:::-;13994:154;;14165:3;14158:10;;13983:191;;;:::o;14180:222::-;14273:4;14311:2;14300:9;14296:18;14288:26;;14324:71;14392:1;14381:9;14377:17;14368:6;14324:71;:::i;:::-;14278:124;;;;:::o;14408:640::-;14603:4;14641:3;14630:9;14626:19;14618:27;;14655:71;14723:1;14712:9;14708:17;14699:6;14655:71;:::i;:::-;14736:72;14804:2;14793:9;14789:18;14780:6;14736:72;:::i;:::-;14818;14886:2;14875:9;14871:18;14862:6;14818:72;:::i;:::-;14937:9;14931:4;14927:20;14922:2;14911:9;14907:18;14900:48;14965:76;15036:4;15027:6;14965:76;:::i;:::-;14957:84;;14608:440;;;;;;;:::o;15054:210::-;15141:4;15179:2;15168:9;15164:18;15156:26;;15192:65;15254:1;15243:9;15239:17;15230:6;15192:65;:::i;:::-;15146:118;;;;:::o;15270:313::-;15383:4;15421:2;15410:9;15406:18;15398:26;;15470:9;15464:4;15460:20;15456:1;15445:9;15441:17;15434:47;15498:78;15571:4;15562:6;15498:78;:::i;:::-;15490:86;;15388:195;;;;:::o;15589:419::-;15755:4;15793:2;15782:9;15778:18;15770:26;;15842:9;15836:4;15832:20;15828:1;15817:9;15813:17;15806:47;15870:131;15996:4;15870:131;:::i;:::-;15862:139;;15760:248;;;:::o;16014:419::-;16180:4;16218:2;16207:9;16203:18;16195:26;;16267:9;16261:4;16257:20;16253:1;16242:9;16238:17;16231:47;16295:131;16421:4;16295:131;:::i;:::-;16287:139;;16185:248;;;:::o;16439:419::-;16605:4;16643:2;16632:9;16628:18;16620:26;;16692:9;16686:4;16682:20;16678:1;16667:9;16663:17;16656:47;16720:131;16846:4;16720:131;:::i;:::-;16712:139;;16610:248;;;:::o;16864:419::-;17030:4;17068:2;17057:9;17053:18;17045:26;;17117:9;17111:4;17107:20;17103:1;17092:9;17088:17;17081:47;17145:131;17271:4;17145:131;:::i;:::-;17137:139;;17035:248;;;:::o;17289:419::-;17455:4;17493:2;17482:9;17478:18;17470:26;;17542:9;17536:4;17532:20;17528:1;17517:9;17513:17;17506:47;17570:131;17696:4;17570:131;:::i;:::-;17562:139;;17460:248;;;:::o;17714:419::-;17880:4;17918:2;17907:9;17903:18;17895:26;;17967:9;17961:4;17957:20;17953:1;17942:9;17938:17;17931:47;17995:131;18121:4;17995:131;:::i;:::-;17987:139;;17885:248;;;:::o;18139:419::-;18305:4;18343:2;18332:9;18328:18;18320:26;;18392:9;18386:4;18382:20;18378:1;18367:9;18363:17;18356:47;18420:131;18546:4;18420:131;:::i;:::-;18412:139;;18310:248;;;:::o;18564:419::-;18730:4;18768:2;18757:9;18753:18;18745:26;;18817:9;18811:4;18807:20;18803:1;18792:9;18788:17;18781:47;18845:131;18971:4;18845:131;:::i;:::-;18837:139;;18735:248;;;:::o;18989:419::-;19155:4;19193:2;19182:9;19178:18;19170:26;;19242:9;19236:4;19232:20;19228:1;19217:9;19213:17;19206:47;19270:131;19396:4;19270:131;:::i;:::-;19262:139;;19160:248;;;:::o;19414:419::-;19580:4;19618:2;19607:9;19603:18;19595:26;;19667:9;19661:4;19657:20;19653:1;19642:9;19638:17;19631:47;19695:131;19821:4;19695:131;:::i;:::-;19687:139;;19585:248;;;:::o;19839:419::-;20005:4;20043:2;20032:9;20028:18;20020:26;;20092:9;20086:4;20082:20;20078:1;20067:9;20063:17;20056:47;20120:131;20246:4;20120:131;:::i;:::-;20112:139;;20010:248;;;:::o;20264:222::-;20357:4;20395:2;20384:9;20380:18;20372:26;;20408:71;20476:1;20465:9;20461:17;20452:6;20408:71;:::i;:::-;20362:124;;;;:::o;20492:129::-;20526:6;20553:20;;:::i;:::-;20543:30;;20582:33;20610:4;20602:6;20582:33;:::i;:::-;20533:88;;;:::o;20627:75::-;20660:6;20693:2;20687:9;20677:19;;20667:35;:::o;20708:307::-;20769:4;20859:18;20851:6;20848:30;20845:2;;;20881:18;;:::i;:::-;20845:2;20919:29;20941:6;20919:29;:::i;:::-;20911:37;;21003:4;20997;20993:15;20985:23;;20774:241;;;:::o;21021:308::-;21083:4;21173:18;21165:6;21162:30;21159:2;;;21195:18;;:::i;:::-;21159:2;21233:29;21255:6;21233:29;:::i;:::-;21225:37;;21317:4;21311;21307:15;21299:23;;21088:241;;;:::o;21335:141::-;21384:4;21407:3;21399:11;;21430:3;21427:1;21420:14;21464:4;21461:1;21451:18;21443:26;;21389:87;;;:::o;21482:98::-;21533:6;21567:5;21561:12;21551:22;;21540:40;;;:::o;21586:99::-;21638:6;21672:5;21666:12;21656:22;;21645:40;;;:::o;21691:168::-;21774:11;21808:6;21803:3;21796:19;21848:4;21843:3;21839:14;21824:29;;21786:73;;;;:::o;21865:147::-;21966:11;22003:3;21988:18;;21978:34;;;;:::o;22018:169::-;22102:11;22136:6;22131:3;22124:19;22176:4;22171:3;22167:14;22152:29;;22114:73;;;;:::o;22193:148::-;22295:11;22332:3;22317:18;;22307:34;;;;:::o;22347:305::-;22387:3;22406:20;22424:1;22406:20;:::i;:::-;22401:25;;22440:20;22458:1;22440:20;:::i;:::-;22435:25;;22594:1;22526:66;22522:74;22519:1;22516:81;22513:2;;;22600:18;;:::i;:::-;22513:2;22644:1;22641;22637:9;22630:16;;22391:261;;;;:::o;22658:185::-;22698:1;22715:20;22733:1;22715:20;:::i;:::-;22710:25;;22749:20;22767:1;22749:20;:::i;:::-;22744:25;;22788:1;22778:2;;22793:18;;:::i;:::-;22778:2;22835:1;22832;22828:9;22823:14;;22700:143;;;;:::o;22849:348::-;22889:7;22912:20;22930:1;22912:20;:::i;:::-;22907:25;;22946:20;22964:1;22946:20;:::i;:::-;22941:25;;23134:1;23066:66;23062:74;23059:1;23056:81;23051:1;23044:9;23037:17;23033:105;23030:2;;;23141:18;;:::i;:::-;23030:2;23189:1;23186;23182:9;23171:20;;22897:300;;;;:::o;23203:191::-;23243:4;23263:20;23281:1;23263:20;:::i;:::-;23258:25;;23297:20;23315:1;23297:20;:::i;:::-;23292:25;;23336:1;23333;23330:8;23327:2;;;23341:18;;:::i;:::-;23327:2;23386:1;23383;23379:9;23371:17;;23248:146;;;;:::o;23400:96::-;23437:7;23466:24;23484:5;23466:24;:::i;:::-;23455:35;;23445:51;;;:::o;23502:90::-;23536:7;23579:5;23572:13;23565:21;23554:32;;23544:48;;;:::o;23598:149::-;23634:7;23674:66;23667:5;23663:78;23652:89;;23642:105;;;:::o;23753:126::-;23790:7;23830:42;23823:5;23819:54;23808:65;;23798:81;;;:::o;23885:77::-;23922:7;23951:5;23940:16;;23930:32;;;:::o;23968:154::-;24052:6;24047:3;24042;24029:30;24114:1;24105:6;24100:3;24096:16;24089:27;24019:103;;;:::o;24128:307::-;24196:1;24206:113;24220:6;24217:1;24214:13;24206:113;;;24305:1;24300:3;24296:11;24290:18;24286:1;24281:3;24277:11;24270:39;24242:2;24239:1;24235:10;24230:15;;24206:113;;;24337:6;24334:1;24331:13;24328:2;;;24417:1;24408:6;24403:3;24399:16;24392:27;24328:2;24177:258;;;;:::o;24441:320::-;24485:6;24522:1;24516:4;24512:12;24502:22;;24569:1;24563:4;24559:12;24590:18;24580:2;;24646:4;24638:6;24634:17;24624:27;;24580:2;24708;24700:6;24697:14;24677:18;24674:38;24671:2;;;24727:18;;:::i;:::-;24671:2;24492:269;;;;:::o;24767:281::-;24850:27;24872:4;24850:27;:::i;:::-;24842:6;24838:40;24980:6;24968:10;24965:22;24944:18;24932:10;24929:34;24926:62;24923:2;;;24991:18;;:::i;:::-;24923:2;25031:10;25027:2;25020:22;24810:238;;;:::o;25054:233::-;25093:3;25116:24;25134:5;25116:24;:::i;:::-;25107:33;;25162:66;25155:5;25152:77;25149:2;;;25232:18;;:::i;:::-;25149:2;25279:1;25272:5;25268:13;25261:20;;25097:190;;;:::o;25293:176::-;25325:1;25342:20;25360:1;25342:20;:::i;:::-;25337:25;;25376:20;25394:1;25376:20;:::i;:::-;25371:25;;25415:1;25405:2;;25420:18;;:::i;:::-;25405:2;25461:1;25458;25454:9;25449:14;;25327:142;;;;:::o;25475:180::-;25523:77;25520:1;25513:88;25620:4;25617:1;25610:15;25644:4;25641:1;25634:15;25661:180;25709:77;25706:1;25699:88;25806:4;25803:1;25796:15;25830:4;25827:1;25820:15;25847:180;25895:77;25892:1;25885:88;25992:4;25989:1;25982:15;26016:4;26013:1;26006:15;26033:180;26081:77;26078:1;26071:88;26178:4;26175:1;26168:15;26202:4;26199:1;26192:15;26219:102;26260:6;26311:2;26307:7;26302:2;26295:5;26291:14;26287:28;26277:38;;26267:54;;;:::o;26327:156::-;26467:8;26463:1;26455:6;26451:14;26444:32;26433:50;:::o;26489:225::-;26629:34;26625:1;26617:6;26613:14;26606:58;26698:8;26693:2;26685:6;26681:15;26674:33;26595:119;:::o;26720:160::-;26860:12;26856:1;26848:6;26844:14;26837:36;26826:54;:::o;26886:172::-;27026:24;27022:1;27014:6;27010:14;27003:48;26992:66;:::o;27064:176::-;27204:28;27200:1;27192:6;27188:14;27181:52;27170:70;:::o;27246:168::-;27386:20;27382:1;27374:6;27370:14;27363:44;27352:62;:::o;27420:171::-;27560:23;27556:1;27548:6;27544:14;27537:47;27526:65;:::o;27597:182::-;27737:34;27733:1;27725:6;27721:14;27714:58;27703:76;:::o;27785:172::-;27925:24;27921:1;27913:6;27909:14;27902:48;27891:66;:::o;27963:114::-;28069:8;:::o;28083:164::-;28223:16;28219:1;28211:6;28207:14;28200:40;28189:58;:::o;28253:162::-;28393:14;28389:1;28381:6;28377:14;28370:38;28359:56;:::o;28421:122::-;28494:24;28512:5;28494:24;:::i;:::-;28487:5;28484:35;28474:2;;28533:1;28530;28523:12;28474:2;28464:79;:::o;28549:116::-;28619:21;28634:5;28619:21;:::i;:::-;28612:5;28609:32;28599:2;;28655:1;28652;28645:12;28599:2;28589:76;:::o;28671:120::-;28743:23;28760:5;28743:23;:::i;:::-;28736:5;28733:34;28723:2;;28781:1;28778;28771:12;28723:2;28713:78;:::o;28797:122::-;28870:24;28888:5;28870:24;:::i;:::-;28863:5;28860:35;28850:2;;28909:1;28906;28899:12;28850:2;28840:79;:::o

Swarm Source

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