ETH Price: $3,329.50 (-4.41%)
Gas: 3 Gwei

Token

OpenSnake Game (OpenSnakeGame)
 

Overview

Max Total Supply

900 OpenSnakeGame

Holders

888

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OpenSnakeGame
0x01b746a786febf635a1e3eba30aca0cc96416044
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:
OpenSnakeGame

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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);
}

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


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

pragma solidity ^0.8.4;

contract OpenSnakeGame is ERC721A, Ownable {
    string public baseURI = "https://storageapi.fleek.co/256e1077-3ba4-4f13-9298-2a063e646bf9-bucket/OpenSnake/json/";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_FREE = 1;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 900;
    uint256 public price = 0.002 ether;

    bool public paused = true;

    constructor() ERC721A("OpenSnake Game", "OpenSnakeGame") {
        _safeMint(msg.sender, 1);
    }

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

        _safeMint(_caller, amount);
    }

    function freeMint() public{
        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":"uint256","name":"amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","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":"nonpayable","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":"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"}]

608060405260405180608001604052806057815260200162004694605791396009908051906020019062000035929190620007e8565b5066071afd498d0000600a556001600b60006101000a81548160ff0219169083151502179055503480156200006957600080fd5b506040518060400160405280600e81526020017f4f70656e536e616b652047616d650000000000000000000000000000000000008152506040518060400160405280600d81526020017f4f70656e536e616b6547616d65000000000000000000000000000000000000008152508160029080519060200190620000ee929190620007e8565b50806003908051906020019062000107929190620007e8565b50620001186200015960201b60201c565b600081905550505062000140620001346200016260201b60201c565b6200016a60201b60201c565b620001533360016200023060201b60201c565b62000ae9565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002528282604051806020016040528060008152506200025660201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002c4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000300576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200031560008583866200064760201b60201c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050620004e38673ffffffffffffffffffffffffffffffffffffffff166200064d60201b620019111760201c565b15620005b6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200056160008784806001019550876200067060201b60201c565b62000598576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620004ea578260005414620005b057600080fd5b62000623565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620005b7575b816000819055505050620006416000858386620007e260201b60201c565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200069e6200016260201b60201c565b8786866040518563ffffffff1660e01b8152600401620006c2949392919062000944565b602060405180830381600087803b158015620006dd57600080fd5b505af19250505080156200071157506040513d601f19601f820116820180604052508101906200070e9190620008af565b60015b6200078f573d806000811462000744576040519150601f19603f3d011682016040523d82523d6000602084013e62000749565b606091505b5060008151141562000787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620007f69062000a54565b90600052602060002090601f0160209004810192826200081a576000855562000866565b82601f106200083557805160ff191683800117855562000866565b8280016001018555821562000866579182015b828111156200086557825182559160200191906001019062000848565b5b50905062000875919062000879565b5090565b5b80821115620008945760008160009055506001016200087a565b5090565b600081519050620008a98162000acf565b92915050565b600060208284031215620008c857620008c762000ab9565b5b6000620008d88482850162000898565b91505092915050565b620008ec81620009b4565b82525050565b6000620008ff8262000998565b6200090b8185620009a3565b93506200091d81856020860162000a1e565b620009288162000abe565b840191505092915050565b6200093e8162000a14565b82525050565b60006080820190506200095b6000830187620008e1565b6200096a6020830186620008e1565b62000979604083018562000933565b81810360608301526200098d8184620008f2565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620009c182620009f4565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a3e57808201518184015260208101905062000a21565b8381111562000a4e576000848401525b50505050565b6000600282049050600182168062000a6d57607f821691505b6020821081141562000a845762000a8362000a8a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000ada81620009c8565b811462000ae657600080fd5b50565b613b9b8062000af96000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106ab578063ed6661c2146106e8578063f2fde38b14610713578063f43a22dc1461073c576101e3565b8063a22cb465146105f1578063b88d4fde1461061a578063c668286214610643578063c87b56dd1461066e576101e3565b80638da5cb5b116100d15780638da5cb5b1461054757806391b7f5ed1461057257806395d89b411461059b578063a035b1fe146105c6576101e3565b80636352211e1461048b5780636c0360eb146104c857806370a08231146104f3578063715018a614610530576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103f757806355f804b3146104205780635b70ea9f146104495780635c975abb14610460576101e3565b806323b872dd146103635780632fbba1151461038c57806332cb6b0c146103b55780633ccfd60b146103e0576101e3565b8063081812fc116101b6578063081812fc14610295578063095ea7b3146102d257806318160ddd146102fb5780631e7269c514610326576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e5780630788370314610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ebf565b610767565b60405161021c919061330c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e92565b610849565b005b34801561025a57600080fd5b506102636108e2565b6040516102709190613327565b60405180910390f35b610293600480360381019061028e9190612f62565b610974565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612f62565b610b37565b6040516102c991906132a5565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190612e52565b610bb3565b005b34801561030757600080fd5b50610310610cbe565b60405161031d9190613489565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190612ccf565b610cd5565b60405161035a9190613489565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612d3c565b610ce7565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612f62565b610cf7565b005b3480156103c157600080fd5b506103ca610d87565b6040516103d79190613489565b60405180910390f35b3480156103ec57600080fd5b506103f5610d8d565b005b34801561040357600080fd5b5061041e60048036038101906104199190612d3c565b610ec5565b005b34801561042c57600080fd5b5061044760048036038101906104429190612f19565b610ee5565b005b34801561045557600080fd5b5061045e610f7b565b005b34801561046c57600080fd5b50610475611118565b604051610482919061330c565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612f62565b61112b565b6040516104bf91906132a5565b60405180910390f35b3480156104d457600080fd5b506104dd611141565b6040516104ea9190613327565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190612ccf565b6111cf565b6040516105279190613489565b60405180910390f35b34801561053c57600080fd5b5061054561129f565b005b34801561055357600080fd5b5061055c611327565b60405161056991906132a5565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190612f62565b611351565b005b3480156105a757600080fd5b506105b06113d7565b6040516105bd9190613327565b60405180910390f35b3480156105d257600080fd5b506105db611469565b6040516105e89190613489565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612e12565b61146f565b005b34801561062657600080fd5b50610641600480360381019061063c9190612d8f565b6115e7565b005b34801561064f57600080fd5b50610658611663565b6040516106659190613327565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612f62565b61169c565b6040516106a29190613327565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612cfc565b61177b565b6040516106df919061330c565b60405180910390f35b3480156106f457600080fd5b506106fd61180f565b60405161070a9190613489565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612ccf565b611814565b005b34801561074857600080fd5b5061075161190c565b60405161075e9190613489565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610842575061084182611934565b5b9050919050565b61085161199e565b73ffffffffffffffffffffffffffffffffffffffff1661086f611327565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc90613409565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108f190613759565b80601f016020809104026020016040519081016040528092919081815260200182805461091d90613759565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b5050505050905090565b600061097e61199e565b9050600b60009054906101000a900460ff16156109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790613349565b60405180910390fd5b816109d9610cbe565b6109e3919061358e565b6103841015610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e906133c9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613469565b60405180910390fd5b81600a1015610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090613389565b60405180910390fd5b3482600a54610ae89190613615565b1115610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090613429565b60405180910390fd5b610b3381836119a6565b5050565b6000610b42826119c4565b610b78576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bbe8261112b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c26576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4561199e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c775750610c7581610c7061199e565b61177b565b155b15610cae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb9838383611a12565b505050565b6000610cc8611ac4565b6001546000540303905090565b6000610ce082611acd565b9050919050565b610cf2838383611b37565b505050565b610cff61199e565b73ffffffffffffffffffffffffffffffffffffffff16610d1d611327565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613409565b60405180910390fd5b610d84610d7e61199e565b826119a6565b50565b61038481565b610d9561199e565b73ffffffffffffffffffffffffffffffffffffffff16610db3611327565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613409565b60405180910390fd5b60004790506000610e1861199e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e3b90613290565b60006040518083038185875af1925050503d8060008114610e78576040519150601f19603f3d011682016040523d82523d6000602084013e610e7d565b606091505b5050905080610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613449565b60405180910390fd5b5050565b610ee0838383604051806020016040528060008152506115e7565b505050565b610eed61199e565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611327565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890613409565b60405180910390fd5b8060099080519060200190610f77929190612aa0565b5050565b6000610f8561199e565b9050600b60009054906101000a900460ff1615610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613349565b60405180910390fd5b6001610fe1610cbe565b610feb919061358e565b610384101561102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906133c9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490613469565b60405180910390fd5b60016110a882611fed565b67ffffffffffffffff166110bc919061358e565b600110156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906133a9565b60405180910390fd5b61110a81600161204d565b6111158160016119a6565b50565b600b60009054906101000a900460ff1681565b6000611136826120ba565b600001519050919050565b6009805461114e90613759565b80601f016020809104026020016040519081016040528092919081815260200182805461117a90613759565b80156111c75780601f1061119c576101008083540402835291602001916111c7565b820191906000526020600020905b8154815290600101906020018083116111aa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112a761199e565b73ffffffffffffffffffffffffffffffffffffffff166112c5611327565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613409565b60405180910390fd5b6113256000612349565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61135961199e565b73ffffffffffffffffffffffffffffffffffffffff16611377611327565b73ffffffffffffffffffffffffffffffffffffffff16146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613409565b60405180910390fd5b80600a8190555050565b6060600380546113e690613759565b80601f016020809104026020016040519081016040528092919081815260200182805461141290613759565b801561145f5780601f106114345761010080835404028352916020019161145f565b820191906000526020600020905b81548152906001019060200180831161144257829003601f168201915b5050505050905090565b600a5481565b61147761199e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114dc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114e961199e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661159661199e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115db919061330c565b60405180910390a35050565b6115f2848484611b37565b6116118373ffffffffffffffffffffffffffffffffffffffff16611911565b801561162657506116248484848461240f565b155b1561165d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116a7826119c4565b6116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd906133e9565b60405180910390fd5b6000600980546116f590613759565b9050116117115760405180602001604052806000815250611774565b600961171c8361256f565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117649392919061325f565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b61181c61199e565b73ffffffffffffffffffffffffffffffffffffffff1661183a611327565b73ffffffffffffffffffffffffffffffffffffffff1614611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613369565b60405180910390fd5b61190981612349565b50565b600a81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6119c08282604051806020016040528060008152506126d0565b5050565b6000816119cf611ac4565b111580156119de575060005482105b8015611a0b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b42826120ba565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bce61199e565b73ffffffffffffffffffffffffffffffffffffffff161480611bfd5750611bfc85611bf761199e565b61177b565b5b80611c425750611c0b61199e565b73ffffffffffffffffffffffffffffffffffffffff16611c2a84610b37565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c7b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ce2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cef8585856001612a94565b611cfb60008487611a12565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f7b576000548214611f7a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fe68585856001612a9a565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120c2612b26565b6000829050806120d0611ac4565b111580156120df575060005481105b15612312576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f4578092505050612344565b5b60011561230f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461230a578092505050612344565b6121f5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261243561199e565b8786866040518563ffffffff1660e01b815260040161245794939291906132c0565b602060405180830381600087803b15801561247157600080fd5b505af19250505080156124a257506040513d601f19601f8201168201806040525081019061249f9190612eec565b60015b61251c573d80600081146124d2576040519150601f19603f3d011682016040523d82523d6000602084013e6124d7565b606091505b50600081511415612514576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125b7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126cb565b600082905060005b600082146125e95780806125d2906137bc565b915050600a826125e291906135e4565b91506125bf565b60008167ffffffffffffffff811115612605576126046138f2565b5b6040519080825280601f01601f1916602001820160405280156126375781602001600182028036833780820191505090505b5090505b600085146126c457600182612650919061366f565b9150600a8561265f9190613805565b603061266b919061358e565b60f81b818381518110612681576126806138c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126bd91906135e4565b945061263b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561273d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612778576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127856000858386612a94565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129468673ffffffffffffffffffffffffffffffffffffffff16611911565b15612a0c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129bb600087848060010195508761240f565b6129f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561294c578260005414612a0757600080fd5b612a78565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a0d575b816000819055505050612a8e6000858386612a9a565b50505050565b50505050565b50505050565b828054612aac90613759565b90600052602060002090601f016020900481019282612ace5760008555612b15565b82601f10612ae757805160ff1916838001178555612b15565b82800160010185558215612b15579182015b82811115612b14578251825591602001919060010190612af9565b5b509050612b229190612b69565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b82576000816000905550600101612b6a565b5090565b6000612b99612b94846134c9565b6134a4565b905082815260208101848484011115612bb557612bb4613926565b5b612bc0848285613717565b509392505050565b6000612bdb612bd6846134fa565b6134a4565b905082815260208101848484011115612bf757612bf6613926565b5b612c02848285613717565b509392505050565b600081359050612c1981613b09565b92915050565b600081359050612c2e81613b20565b92915050565b600081359050612c4381613b37565b92915050565b600081519050612c5881613b37565b92915050565b600082601f830112612c7357612c72613921565b5b8135612c83848260208601612b86565b91505092915050565b600082601f830112612ca157612ca0613921565b5b8135612cb1848260208601612bc8565b91505092915050565b600081359050612cc981613b4e565b92915050565b600060208284031215612ce557612ce4613930565b5b6000612cf384828501612c0a565b91505092915050565b60008060408385031215612d1357612d12613930565b5b6000612d2185828601612c0a565b9250506020612d3285828601612c0a565b9150509250929050565b600080600060608486031215612d5557612d54613930565b5b6000612d6386828701612c0a565b9350506020612d7486828701612c0a565b9250506040612d8586828701612cba565b9150509250925092565b60008060008060808587031215612da957612da8613930565b5b6000612db787828801612c0a565b9450506020612dc887828801612c0a565b9350506040612dd987828801612cba565b925050606085013567ffffffffffffffff811115612dfa57612df961392b565b5b612e0687828801612c5e565b91505092959194509250565b60008060408385031215612e2957612e28613930565b5b6000612e3785828601612c0a565b9250506020612e4885828601612c1f565b9150509250929050565b60008060408385031215612e6957612e68613930565b5b6000612e7785828601612c0a565b9250506020612e8885828601612cba565b9150509250929050565b600060208284031215612ea857612ea7613930565b5b6000612eb684828501612c1f565b91505092915050565b600060208284031215612ed557612ed4613930565b5b6000612ee384828501612c34565b91505092915050565b600060208284031215612f0257612f01613930565b5b6000612f1084828501612c49565b91505092915050565b600060208284031215612f2f57612f2e613930565b5b600082013567ffffffffffffffff811115612f4d57612f4c61392b565b5b612f5984828501612c8c565b91505092915050565b600060208284031215612f7857612f77613930565b5b6000612f8684828501612cba565b91505092915050565b612f98816136a3565b82525050565b612fa7816136b5565b82525050565b6000612fb882613540565b612fc28185613556565b9350612fd2818560208601613726565b612fdb81613935565b840191505092915050565b6000612ff18261354b565b612ffb8185613572565b935061300b818560208601613726565b61301481613935565b840191505092915050565b600061302a8261354b565b6130348185613583565b9350613044818560208601613726565b80840191505092915050565b6000815461305d81613759565b6130678186613583565b945060018216600081146130825760018114613093576130c6565b60ff198316865281860193506130c6565b61309c8561352b565b60005b838110156130be5781548189015260018201915060208101905061309f565b838801955050505b50505092915050565b60006130dc600683613572565b91506130e782613946565b602082019050919050565b60006130ff602683613572565b915061310a8261396f565b604082019050919050565b6000613122601683613572565b915061312d826139be565b602082019050919050565b6000613145601a83613572565b9150613150826139e7565b602082019050919050565b6000613168601283613572565b915061317382613a10565b602082019050919050565b600061318b601583613572565b915061319682613a39565b602082019050919050565b60006131ae602083613572565b91506131b982613a62565b602082019050919050565b60006131d1601683613572565b91506131dc82613a8b565b602082019050919050565b60006131f4600083613567565b91506131ff82613ab4565b600082019050919050565b6000613217600e83613572565b915061322282613ab7565b602082019050919050565b600061323a600c83613572565b915061324582613ae0565b602082019050919050565b6132598161370d565b82525050565b600061326b8286613050565b9150613277828561301f565b9150613283828461301f565b9150819050949350505050565b600061329b826131e7565b9150819050919050565b60006020820190506132ba6000830184612f8f565b92915050565b60006080820190506132d56000830187612f8f565b6132e26020830186612f8f565b6132ef6040830185613250565b81810360608301526133018184612fad565b905095945050505050565b60006020820190506133216000830184612f9e565b92915050565b600060208201905081810360008301526133418184612fe6565b905092915050565b60006020820190508181036000830152613362816130cf565b9050919050565b60006020820190508181036000830152613382816130f2565b9050919050565b600060208201905081810360008301526133a281613115565b9050919050565b600060208201905081810360008301526133c281613138565b9050919050565b600060208201905081810360008301526133e28161315b565b9050919050565b600060208201905081810360008301526134028161317e565b9050919050565b60006020820190508181036000830152613422816131a1565b9050919050565b60006020820190508181036000830152613442816131c4565b9050919050565b600060208201905081810360008301526134628161320a565b9050919050565b600060208201905081810360008301526134828161322d565b9050919050565b600060208201905061349e6000830184613250565b92915050565b60006134ae6134bf565b90506134ba828261378b565b919050565b6000604051905090565b600067ffffffffffffffff8211156134e4576134e36138f2565b5b6134ed82613935565b9050602081019050919050565b600067ffffffffffffffff821115613515576135146138f2565b5b61351e82613935565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135998261370d565b91506135a48361370d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135d9576135d8613836565b5b828201905092915050565b60006135ef8261370d565b91506135fa8361370d565b92508261360a57613609613865565b5b828204905092915050565b60006136208261370d565b915061362b8361370d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366457613663613836565b5b828202905092915050565b600061367a8261370d565b91506136858361370d565b92508282101561369857613697613836565b5b828203905092915050565b60006136ae826136ed565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613744578082015181840152602081019050613729565b83811115613753576000848401525b50505050565b6000600282049050600182168061377157607f821691505b6020821081141561378557613784613894565b5b50919050565b61379482613935565b810181811067ffffffffffffffff821117156137b3576137b26138f2565b5b80604052505050565b60006137c78261370d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137fa576137f9613836565b5b600182019050919050565b60006138108261370d565b915061381b8361370d565b92508261382b5761382a613865565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613b12816136a3565b8114613b1d57600080fd5b50565b613b29816136b5565b8114613b3457600080fd5b50565b613b40816136c1565b8114613b4b57600080fd5b50565b613b578161370d565b8114613b6257600080fd5b5056fea2646970667358221220b456ee4248897d7326d1819f76f9753e47539de169c04793fc27d9a4d28a0d0364736f6c6343000807003368747470733a2f2f73746f726167656170692e666c65656b2e636f2f32353665313037372d336261342d346631332d393239382d3261303633653634366266392d6275636b65742f4f70656e536e616b652f6a736f6e2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c5146106ab578063ed6661c2146106e8578063f2fde38b14610713578063f43a22dc1461073c576101e3565b8063a22cb465146105f1578063b88d4fde1461061a578063c668286214610643578063c87b56dd1461066e576101e3565b80638da5cb5b116100d15780638da5cb5b1461054757806391b7f5ed1461057257806395d89b411461059b578063a035b1fe146105c6576101e3565b80636352211e1461048b5780636c0360eb146104c857806370a08231146104f3578063715018a614610530576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103f757806355f804b3146104205780635b70ea9f146104495780635c975abb14610460576101e3565b806323b872dd146103635780632fbba1151461038c57806332cb6b0c146103b55780633ccfd60b146103e0576101e3565b8063081812fc116101b6578063081812fc14610295578063095ea7b3146102d257806318160ddd146102fb5780631e7269c514610326576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e5780630788370314610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ebf565b610767565b60405161021c919061330c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e92565b610849565b005b34801561025a57600080fd5b506102636108e2565b6040516102709190613327565b60405180910390f35b610293600480360381019061028e9190612f62565b610974565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612f62565b610b37565b6040516102c991906132a5565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190612e52565b610bb3565b005b34801561030757600080fd5b50610310610cbe565b60405161031d9190613489565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190612ccf565b610cd5565b60405161035a9190613489565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612d3c565b610ce7565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612f62565b610cf7565b005b3480156103c157600080fd5b506103ca610d87565b6040516103d79190613489565b60405180910390f35b3480156103ec57600080fd5b506103f5610d8d565b005b34801561040357600080fd5b5061041e60048036038101906104199190612d3c565b610ec5565b005b34801561042c57600080fd5b5061044760048036038101906104429190612f19565b610ee5565b005b34801561045557600080fd5b5061045e610f7b565b005b34801561046c57600080fd5b50610475611118565b604051610482919061330c565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612f62565b61112b565b6040516104bf91906132a5565b60405180910390f35b3480156104d457600080fd5b506104dd611141565b6040516104ea9190613327565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190612ccf565b6111cf565b6040516105279190613489565b60405180910390f35b34801561053c57600080fd5b5061054561129f565b005b34801561055357600080fd5b5061055c611327565b60405161056991906132a5565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190612f62565b611351565b005b3480156105a757600080fd5b506105b06113d7565b6040516105bd9190613327565b60405180910390f35b3480156105d257600080fd5b506105db611469565b6040516105e89190613489565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612e12565b61146f565b005b34801561062657600080fd5b50610641600480360381019061063c9190612d8f565b6115e7565b005b34801561064f57600080fd5b50610658611663565b6040516106659190613327565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190612f62565b61169c565b6040516106a29190613327565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612cfc565b61177b565b6040516106df919061330c565b60405180910390f35b3480156106f457600080fd5b506106fd61180f565b60405161070a9190613489565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612ccf565b611814565b005b34801561074857600080fd5b5061075161190c565b60405161075e9190613489565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610842575061084182611934565b5b9050919050565b61085161199e565b73ffffffffffffffffffffffffffffffffffffffff1661086f611327565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc90613409565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108f190613759565b80601f016020809104026020016040519081016040528092919081815260200182805461091d90613759565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b5050505050905090565b600061097e61199e565b9050600b60009054906101000a900460ff16156109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790613349565b60405180910390fd5b816109d9610cbe565b6109e3919061358e565b6103841015610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e906133c9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90613469565b60405180910390fd5b81600a1015610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090613389565b60405180910390fd5b3482600a54610ae89190613615565b1115610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090613429565b60405180910390fd5b610b3381836119a6565b5050565b6000610b42826119c4565b610b78576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bbe8261112b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c26576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4561199e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c775750610c7581610c7061199e565b61177b565b155b15610cae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb9838383611a12565b505050565b6000610cc8611ac4565b6001546000540303905090565b6000610ce082611acd565b9050919050565b610cf2838383611b37565b505050565b610cff61199e565b73ffffffffffffffffffffffffffffffffffffffff16610d1d611327565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613409565b60405180910390fd5b610d84610d7e61199e565b826119a6565b50565b61038481565b610d9561199e565b73ffffffffffffffffffffffffffffffffffffffff16610db3611327565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613409565b60405180910390fd5b60004790506000610e1861199e565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e3b90613290565b60006040518083038185875af1925050503d8060008114610e78576040519150601f19603f3d011682016040523d82523d6000602084013e610e7d565b606091505b5050905080610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613449565b60405180910390fd5b5050565b610ee0838383604051806020016040528060008152506115e7565b505050565b610eed61199e565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611327565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890613409565b60405180910390fd5b8060099080519060200190610f77929190612aa0565b5050565b6000610f8561199e565b9050600b60009054906101000a900460ff1615610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613349565b60405180910390fd5b6001610fe1610cbe565b610feb919061358e565b610384101561102f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611026906133c9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490613469565b60405180910390fd5b60016110a882611fed565b67ffffffffffffffff166110bc919061358e565b600110156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906133a9565b60405180910390fd5b61110a81600161204d565b6111158160016119a6565b50565b600b60009054906101000a900460ff1681565b6000611136826120ba565b600001519050919050565b6009805461114e90613759565b80601f016020809104026020016040519081016040528092919081815260200182805461117a90613759565b80156111c75780601f1061119c576101008083540402835291602001916111c7565b820191906000526020600020905b8154815290600101906020018083116111aa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112a761199e565b73ffffffffffffffffffffffffffffffffffffffff166112c5611327565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613409565b60405180910390fd5b6113256000612349565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61135961199e565b73ffffffffffffffffffffffffffffffffffffffff16611377611327565b73ffffffffffffffffffffffffffffffffffffffff16146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490613409565b60405180910390fd5b80600a8190555050565b6060600380546113e690613759565b80601f016020809104026020016040519081016040528092919081815260200182805461141290613759565b801561145f5780601f106114345761010080835404028352916020019161145f565b820191906000526020600020905b81548152906001019060200180831161144257829003601f168201915b5050505050905090565b600a5481565b61147761199e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114dc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114e961199e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661159661199e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115db919061330c565b60405180910390a35050565b6115f2848484611b37565b6116118373ffffffffffffffffffffffffffffffffffffffff16611911565b801561162657506116248484848461240f565b155b1561165d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116a7826119c4565b6116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd906133e9565b60405180910390fd5b6000600980546116f590613759565b9050116117115760405180602001604052806000815250611774565b600961171c8361256f565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117649392919061325f565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b61181c61199e565b73ffffffffffffffffffffffffffffffffffffffff1661183a611327565b73ffffffffffffffffffffffffffffffffffffffff1614611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790613409565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790613369565b60405180910390fd5b61190981612349565b50565b600a81565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6119c08282604051806020016040528060008152506126d0565b5050565b6000816119cf611ac4565b111580156119de575060005482105b8015611a0b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b42826120ba565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bce61199e565b73ffffffffffffffffffffffffffffffffffffffff161480611bfd5750611bfc85611bf761199e565b61177b565b5b80611c425750611c0b61199e565b73ffffffffffffffffffffffffffffffffffffffff16611c2a84610b37565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c7b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ce2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cef8585856001612a94565b611cfb60008487611a12565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f7b576000548214611f7a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fe68585856001612a9a565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120c2612b26565b6000829050806120d0611ac4565b111580156120df575060005481105b15612312576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f4578092505050612344565b5b60011561230f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461230a578092505050612344565b6121f5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261243561199e565b8786866040518563ffffffff1660e01b815260040161245794939291906132c0565b602060405180830381600087803b15801561247157600080fd5b505af19250505080156124a257506040513d601f19601f8201168201806040525081019061249f9190612eec565b60015b61251c573d80600081146124d2576040519150601f19603f3d011682016040523d82523d6000602084013e6124d7565b606091505b50600081511415612514576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125b7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126cb565b600082905060005b600082146125e95780806125d2906137bc565b915050600a826125e291906135e4565b91506125bf565b60008167ffffffffffffffff811115612605576126046138f2565b5b6040519080825280601f01601f1916602001820160405280156126375781602001600182028036833780820191505090505b5090505b600085146126c457600182612650919061366f565b9150600a8561265f9190613805565b603061266b919061358e565b60f81b818381518110612681576126806138c3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126bd91906135e4565b945061263b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561273d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612778576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127856000858386612a94565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129468673ffffffffffffffffffffffffffffffffffffffff16611911565b15612a0c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129bb600087848060010195508761240f565b6129f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561294c578260005414612a0757600080fd5b612a78565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a0d575b816000819055505050612a8e6000858386612a9a565b50505050565b50505050565b50505050565b828054612aac90613759565b90600052602060002090601f016020900481019282612ace5760008555612b15565b82601f10612ae757805160ff1916838001178555612b15565b82800160010185558215612b15579182015b82811115612b14578251825591602001919060010190612af9565b5b509050612b229190612b69565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b82576000816000905550600101612b6a565b5090565b6000612b99612b94846134c9565b6134a4565b905082815260208101848484011115612bb557612bb4613926565b5b612bc0848285613717565b509392505050565b6000612bdb612bd6846134fa565b6134a4565b905082815260208101848484011115612bf757612bf6613926565b5b612c02848285613717565b509392505050565b600081359050612c1981613b09565b92915050565b600081359050612c2e81613b20565b92915050565b600081359050612c4381613b37565b92915050565b600081519050612c5881613b37565b92915050565b600082601f830112612c7357612c72613921565b5b8135612c83848260208601612b86565b91505092915050565b600082601f830112612ca157612ca0613921565b5b8135612cb1848260208601612bc8565b91505092915050565b600081359050612cc981613b4e565b92915050565b600060208284031215612ce557612ce4613930565b5b6000612cf384828501612c0a565b91505092915050565b60008060408385031215612d1357612d12613930565b5b6000612d2185828601612c0a565b9250506020612d3285828601612c0a565b9150509250929050565b600080600060608486031215612d5557612d54613930565b5b6000612d6386828701612c0a565b9350506020612d7486828701612c0a565b9250506040612d8586828701612cba565b9150509250925092565b60008060008060808587031215612da957612da8613930565b5b6000612db787828801612c0a565b9450506020612dc887828801612c0a565b9350506040612dd987828801612cba565b925050606085013567ffffffffffffffff811115612dfa57612df961392b565b5b612e0687828801612c5e565b91505092959194509250565b60008060408385031215612e2957612e28613930565b5b6000612e3785828601612c0a565b9250506020612e4885828601612c1f565b9150509250929050565b60008060408385031215612e6957612e68613930565b5b6000612e7785828601612c0a565b9250506020612e8885828601612cba565b9150509250929050565b600060208284031215612ea857612ea7613930565b5b6000612eb684828501612c1f565b91505092915050565b600060208284031215612ed557612ed4613930565b5b6000612ee384828501612c34565b91505092915050565b600060208284031215612f0257612f01613930565b5b6000612f1084828501612c49565b91505092915050565b600060208284031215612f2f57612f2e613930565b5b600082013567ffffffffffffffff811115612f4d57612f4c61392b565b5b612f5984828501612c8c565b91505092915050565b600060208284031215612f7857612f77613930565b5b6000612f8684828501612cba565b91505092915050565b612f98816136a3565b82525050565b612fa7816136b5565b82525050565b6000612fb882613540565b612fc28185613556565b9350612fd2818560208601613726565b612fdb81613935565b840191505092915050565b6000612ff18261354b565b612ffb8185613572565b935061300b818560208601613726565b61301481613935565b840191505092915050565b600061302a8261354b565b6130348185613583565b9350613044818560208601613726565b80840191505092915050565b6000815461305d81613759565b6130678186613583565b945060018216600081146130825760018114613093576130c6565b60ff198316865281860193506130c6565b61309c8561352b565b60005b838110156130be5781548189015260018201915060208101905061309f565b838801955050505b50505092915050565b60006130dc600683613572565b91506130e782613946565b602082019050919050565b60006130ff602683613572565b915061310a8261396f565b604082019050919050565b6000613122601683613572565b915061312d826139be565b602082019050919050565b6000613145601a83613572565b9150613150826139e7565b602082019050919050565b6000613168601283613572565b915061317382613a10565b602082019050919050565b600061318b601583613572565b915061319682613a39565b602082019050919050565b60006131ae602083613572565b91506131b982613a62565b602082019050919050565b60006131d1601683613572565b91506131dc82613a8b565b602082019050919050565b60006131f4600083613567565b91506131ff82613ab4565b600082019050919050565b6000613217600e83613572565b915061322282613ab7565b602082019050919050565b600061323a600c83613572565b915061324582613ae0565b602082019050919050565b6132598161370d565b82525050565b600061326b8286613050565b9150613277828561301f565b9150613283828461301f565b9150819050949350505050565b600061329b826131e7565b9150819050919050565b60006020820190506132ba6000830184612f8f565b92915050565b60006080820190506132d56000830187612f8f565b6132e26020830186612f8f565b6132ef6040830185613250565b81810360608301526133018184612fad565b905095945050505050565b60006020820190506133216000830184612f9e565b92915050565b600060208201905081810360008301526133418184612fe6565b905092915050565b60006020820190508181036000830152613362816130cf565b9050919050565b60006020820190508181036000830152613382816130f2565b9050919050565b600060208201905081810360008301526133a281613115565b9050919050565b600060208201905081810360008301526133c281613138565b9050919050565b600060208201905081810360008301526133e28161315b565b9050919050565b600060208201905081810360008301526134028161317e565b9050919050565b60006020820190508181036000830152613422816131a1565b9050919050565b60006020820190508181036000830152613442816131c4565b9050919050565b600060208201905081810360008301526134628161320a565b9050919050565b600060208201905081810360008301526134828161322d565b9050919050565b600060208201905061349e6000830184613250565b92915050565b60006134ae6134bf565b90506134ba828261378b565b919050565b6000604051905090565b600067ffffffffffffffff8211156134e4576134e36138f2565b5b6134ed82613935565b9050602081019050919050565b600067ffffffffffffffff821115613515576135146138f2565b5b61351e82613935565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135998261370d565b91506135a48361370d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135d9576135d8613836565b5b828201905092915050565b60006135ef8261370d565b91506135fa8361370d565b92508261360a57613609613865565b5b828204905092915050565b60006136208261370d565b915061362b8361370d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366457613663613836565b5b828202905092915050565b600061367a8261370d565b91506136858361370d565b92508282101561369857613697613836565b5b828203905092915050565b60006136ae826136ed565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613744578082015181840152602081019050613729565b83811115613753576000848401525b50505050565b6000600282049050600182168061377157607f821691505b6020821081141561378557613784613894565b5b50919050565b61379482613935565b810181811067ffffffffffffffff821117156137b3576137b26138f2565b5b80604052505050565b60006137c78261370d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137fa576137f9613836565b5b600182019050919050565b60006138108261370d565b915061381b8361370d565b92508261382b5761382a613865565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613b12816136a3565b8114613b1d57600080fd5b50565b613b29816136b5565b8114613b3457600080fd5b50565b613b40816136c1565b8114613b4b57600080fd5b50565b613b578161370d565b8114613b6257600080fd5b5056fea2646970667358221220b456ee4248897d7326d1819f76f9753e47539de169c04793fc27d9a4d28a0d0364736f6c63430008070033

Deployed Bytecode Sourcemap

51939:2612:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26969:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53989:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30082:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52483:444;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31585:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31148:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26218:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53448:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32450:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53782:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52251:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53565:209;;;;;;;;;;;;;:::i;:::-;;32691:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54078:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52935:396;;;;;;;;;;;;;:::i;:::-;;52341:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29890:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51989:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27338:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4759:103;;;;;;;;;;;;;:::i;:::-;;4108:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53895:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30251:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52298:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31861:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32947:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52109:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54186:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32219:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52162:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5017:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52205:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26969:305;27071:4;27123:25;27108:40;;;:11;:40;;;;:105;;;;27180:33;27165:48;;;:11;:48;;;;27108:105;:158;;;;27230:36;27254:11;27230:23;:36::i;:::-;27108:158;27088:178;;26969:305;;;:::o;53989:81::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54056:6:::1;54047;;:15;;;;;;;;;;;;;;;;;;53989:81:::0;:::o;30082:100::-;30136:13;30169:5;30162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30082:100;:::o;52483:444::-;52541:15;52559:12;:10;:12::i;:::-;52541:30;;52591:6;;;;;;;;;;;52590:7;52582:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;52657:6;52641:13;:11;:13::i;:::-;:22;;;;:::i;:::-;52288:3;52627:36;;52619:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52718:7;52705:20;;:9;:20;;;52697:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52775:6;52242:2;52761:20;;52753:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;52844:9;52834:6;52828:5;;:12;;;;:::i;:::-;:25;;52820:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52893:26;52903:7;52912:6;52893:9;:26::i;:::-;52530:397;52483:444;:::o;31585:204::-;31653:7;31678:16;31686:7;31678;:16::i;:::-;31673:64;;31703:34;;;;;;;;;;;;;;31673:64;31757:15;:24;31773:7;31757:24;;;;;;;;;;;;;;;;;;;;;31750:31;;31585:204;;;:::o;31148:371::-;31221:13;31237:24;31253:7;31237:15;:24::i;:::-;31221:40;;31282:5;31276:11;;:2;:11;;;31272:48;;;31296:24;;;;;;;;;;;;;;31272:48;31353:5;31337:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31363:37;31380:5;31387:12;:10;:12::i;:::-;31363:16;:37::i;:::-;31362:38;31337:63;31333:138;;;31424:35;;;;;;;;;;;;;;31333:138;31483:28;31492:2;31496:7;31505:5;31483:8;:28::i;:::-;31210:309;31148:371;;:::o;26218:303::-;26262:7;26487:15;:13;:15::i;:::-;26472:12;;26456:13;;:28;:46;26449:53;;26218:303;:::o;53448:109::-;53501:7;53528:21;53542:6;53528:13;:21::i;:::-;53521:28;;53448:109;;;:::o;32450:170::-;32584:28;32594:4;32600:2;32604:7;32584:9;:28::i;:::-;32450:170;;;:::o;53782:105::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53847:32:::1;53857:12;:10;:12::i;:::-;53871:7;53847:9;:32::i;:::-;53782:105:::0;:::o;52251:40::-;52288:3;52251:40;:::o;53565:209::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53615:15:::1;53633:21;53615:39;;53666:12;53684;:10;:12::i;:::-;:17;;53709:7;53684:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53665:56;;;53740:7;53732:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;53604:170;;53565:209::o:0;32691:185::-;32829:39;32846:4;32852:2;32856:7;32829:39;;;;;;;;;;;;:16;:39::i;:::-;32691:185;;;:::o;54078:100::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54162:8:::1;54152:7;:18;;;;;;;;;;;;:::i;:::-;;54078:100:::0;:::o;52935:396::-;52972:15;52990:12;:10;:12::i;:::-;52972:30;;53022:6;;;;;;;;;;;53021:7;53013:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;53088:1;53072:13;:11;:13::i;:::-;:17;;;;:::i;:::-;52288:3;53058:31;;53050:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53144:7;53131:20;;:9;:20;;;53123:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;53227:1;53207:16;53215:7;53207;:16::i;:::-;53199:25;;:29;;;;:::i;:::-;52197:1;53187:41;;53179:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53272:19;53280:7;53289:1;53272:7;:19::i;:::-;53302:21;53312:7;53321:1;53302:9;:21::i;:::-;52961:370;52935:396::o;52341:25::-;;;;;;;;;;;;;:::o;29890:125::-;29954:7;29981:21;29994:7;29981:12;:21::i;:::-;:26;;;29974:33;;29890:125;;;:::o;51989:113::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27338:206::-;27402:7;27443:1;27426:19;;:5;:19;;;27422:60;;;27454:28;;;;;;;;;;;;;;27422:60;27508:12;:19;27521:5;27508:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27500:36;;27493:43;;27338:206;;;:::o;4759:103::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4824:30:::1;4851:1;4824:18;:30::i;:::-;4759:103::o:0;4108:87::-;4154:7;4181:6;;;;;;;;;;;4174:13;;4108:87;:::o;53895:86::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53967:6:::1;53959:5;:14;;;;53895:86:::0;:::o;30251:104::-;30307:13;30340:7;30333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30251:104;:::o;52298:34::-;;;;:::o;31861:287::-;31972:12;:10;:12::i;:::-;31960:24;;:8;:24;;;31956:54;;;31993:17;;;;;;;;;;;;;;31956:54;32068:8;32023:18;:32;32042:12;:10;:12::i;:::-;32023:32;;;;;;;;;;;;;;;:42;32056:8;32023:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32121:8;32092:48;;32107:12;:10;:12::i;:::-;32092:48;;;32131:8;32092:48;;;;;;:::i;:::-;;;;;;;;31861:287;;:::o;32947:369::-;33114:28;33124:4;33130:2;33134:7;33114:9;:28::i;:::-;33157:15;:2;:13;;;:15::i;:::-;:76;;;;;33177:56;33208:4;33214:2;33218:7;33227:5;33177:30;:56::i;:::-;33176:57;33157:76;33153:156;;;33257:40;;;;;;;;;;;;;;33153:156;32947:369;;;;:::o;52109:46::-;;;;;;;;;;;;;;;;;;;:::o;54186:362::-;54252:13;54286:17;54294:8;54286:7;:17::i;:::-;54278:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54371:1;54353:7;54347:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;54429:7;54453:26;54470:8;54453:16;:26::i;:::-;54496:13;;;;;;;;;;;;;;;;;54396:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54347:193;54340:200;;54186:362;;;:::o;32219:164::-;32316:4;32340:18;:25;32359:5;32340:25;;;;;;;;;;;;;;;:35;32366:8;32340:35;;;;;;;;;;;;;;;;;;;;;;;;;32333:42;;32219:164;;;;:::o;52162:36::-;52197:1;52162:36;:::o;5017:201::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5126:1:::1;5106:22;;:8;:22;;;;5098:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5182:28;5201:8;5182:18;:28::i;:::-;5017:201:::0;:::o;52205:39::-;52242:2;52205:39;:::o;6809:326::-;6869:4;7126:1;7104:7;:19;;;:23;7097:30;;6809:326;;;:::o;16915:157::-;17000:4;17039:25;17024:40;;;:11;:40;;;;17017:47;;16915:157;;;:::o;2832:98::-;2885:7;2912:10;2905:17;;2832:98;:::o;33829:104::-;33898:27;33908:2;33912:8;33898:27;;;;;;;;;;;;:9;:27::i;:::-;33829:104;;:::o;33571:174::-;33628:4;33671:7;33652:15;:13;:15::i;:::-;:26;;:53;;;;;33692:13;;33682:7;:23;33652:53;:85;;;;;33710:11;:20;33722:7;33710:20;;;;;;;;;;;:27;;;;;;;;;;;;33709:28;33652:85;33645:92;;33571:174;;;:::o;42797:196::-;42939:2;42912:15;:24;42928:7;42912:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42977:7;42973:2;42957:28;;42966:5;42957:28;;;;;;;;;;;;42797:196;;;:::o;53339:101::-;53404:7;53431:1;53424:8;;53339:101;:::o;27626:137::-;27687:7;27722:12;:19;27735:5;27722:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27714:41;;27707:48;;27626:137;;;:::o;37745:2130::-;37860:35;37898:21;37911:7;37898:12;:21::i;:::-;37860:59;;37958:4;37936:26;;:13;:18;;;:26;;;37932:67;;37971:28;;;;;;;;;;;;;;37932:67;38012:22;38054:4;38038:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38075:36;38092:4;38098:12;:10;:12::i;:::-;38075:16;:36::i;:::-;38038:73;:126;;;;38152:12;:10;:12::i;:::-;38128:36;;:20;38140:7;38128:11;:20::i;:::-;:36;;;38038:126;38012:153;;38183:17;38178:66;;38209:35;;;;;;;;;;;;;;38178:66;38273:1;38259:16;;:2;:16;;;38255:52;;;38284:23;;;;;;;;;;;;;;38255:52;38320:43;38342:4;38348:2;38352:7;38361:1;38320:21;:43::i;:::-;38428:35;38445:1;38449:7;38458:4;38428:8;:35::i;:::-;38789:1;38759:12;:18;38772:4;38759:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38833:1;38805:12;:16;38818:2;38805:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38851:31;38885:11;:20;38897:7;38885:20;;;;;;;;;;;38851:54;;38936:2;38920:8;:13;;;:18;;;;;;;;;;;;;;;;;;38986:15;38953:8;:23;;;:49;;;;;;;;;;;;;;;;;;39254:19;39286:1;39276:7;:11;39254:33;;39302:31;39336:11;:24;39348:11;39336:24;;;;;;;;;;;39302:58;;39404:1;39379:27;;:8;:13;;;;;;;;;;;;:27;;;39375:384;;;39589:13;;39574:11;:28;39570:174;;39643:4;39627:8;:13;;;:20;;;;;;;;;;;;;;;;;;39696:13;:28;;;39670:8;:23;;;:54;;;;;;;;;;;;;;;;;;39570:174;39375:384;38734:1036;;;39806:7;39802:2;39787:27;;39796:4;39787:27;;;;;;;;;;;;39825:42;39846:4;39852:2;39856:7;39865:1;39825:20;:42::i;:::-;37849:2026;;37745:2130;;;:::o;28116:112::-;28171:6;28197:12;:19;28210:5;28197:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;28190:30;;28116:112;;;:::o;28416:101::-;28506:3;28480:12;:19;28493:5;28480:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;28416:101;;:::o;28719:1109::-;28781:21;;:::i;:::-;28815:12;28830:7;28815:22;;28898:4;28879:15;:13;:15::i;:::-;:23;;:47;;;;;28913:13;;28906:4;:20;28879:47;28875:886;;;28947:31;28981:11;:17;28993:4;28981:17;;;;;;;;;;;28947:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29022:9;:16;;;29017:729;;29093:1;29067:28;;:9;:14;;;:28;;;29063:101;;29131:9;29124:16;;;;;;29063:101;29466:261;29473:4;29466:261;;;29506:6;;;;;;;;29551:11;:17;29563:4;29551:17;;;;;;;;;;;29539:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29625:1;29599:28;;:9;:14;;;:28;;;29595:109;;29667:9;29660:16;;;;;;29595:109;29466:261;;;29017:729;28928:833;28875:886;29789:31;;;;;;;;;;;;;;28719:1109;;;;:::o;5378:191::-;5452:16;5471:6;;;;;;;;;;;5452:25;;5497:8;5488:6;;:17;;;;;;;;;;;;;;;;;;5552:8;5521:40;;5542:8;5521:40;;;;;;;;;;;;5441:128;5378:191;:::o;43485:667::-;43648:4;43685:2;43669:36;;;43706:12;:10;:12::i;:::-;43720:4;43726:7;43735:5;43669:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43665:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43920:1;43903:6;:13;:18;43899:235;;;43949:40;;;;;;;;;;;;;;43899:235;44092:6;44086:13;44077:6;44073:2;44069:15;44062:38;43665:480;43798:45;;;43788:55;;;:6;:55;;;;43781:62;;;43485:667;;;;;;:::o;394:723::-;450:13;680:1;671:5;:10;667:53;;;698:10;;;;;;;;;;;;;;;;;;;;;667:53;730:12;745:5;730:20;;761:14;786:78;801:1;793:4;:9;786:78;;819:8;;;;;:::i;:::-;;;;850:2;842:10;;;;;:::i;:::-;;;786:78;;;874:19;906:6;896:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;874:39;;924:154;940:1;931:5;:10;924:154;;968:1;958:11;;;;;:::i;:::-;;;1035:2;1027:5;:10;;;;:::i;:::-;1014:2;:24;;;;:::i;:::-;1001:39;;984:6;991;984:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1064:2;1055:11;;;;;:::i;:::-;;;924:154;;;1102:6;1088:21;;;;;394:723;;;;:::o;34307:1751::-;34430:20;34453:13;;34430:36;;34495:1;34481:16;;:2;:16;;;34477:48;;;34506:19;;;;;;;;;;;;;;34477:48;34552:1;34540:8;:13;34536:44;;;34562:18;;;;;;;;;;;;;;34536:44;34593:61;34623:1;34627:2;34631:12;34645:8;34593:21;:61::i;:::-;34966:8;34931:12;:16;34944:2;34931:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35030:8;34990:12;:16;35003:2;34990:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35089:2;35056:11;:25;35068:12;35056:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35156:15;35106:11;:25;35118:12;35106:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35189:20;35212:12;35189:35;;35239:11;35268:8;35253:12;:23;35239:37;;35297:15;:2;:13;;;:15::i;:::-;35293:633;;;35333:314;35389:12;35385:2;35364:38;;35381:1;35364:38;;;;;;;;;;;;35430:69;35469:1;35473:2;35477:14;;;;;;35493:5;35430:30;:69::i;:::-;35425:174;;35535:40;;;;;;;;;;;;;;35425:174;35642:3;35626:12;:19;;35333:314;;35728:12;35711:13;;:29;35707:43;;35742:8;;;35707:43;35293:633;;;35791:120;35847:14;;;;;;35843:2;35822:40;;35839:1;35822:40;;;;;;;;;;;;35906:3;35890:12;:19;;35791:120;;35293:633;35956:12;35940:13;:28;;;;34906:1074;;35990:60;36019:1;36023:2;36027:12;36041:8;35990:20;:60::i;:::-;34419:1639;34307:1751;;;:::o;44800:159::-;;;;;:::o;45618:158::-;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:398::-;12854:3;12875:83;12956:1;12951:3;12875:83;:::i;:::-;12868:90;;12967:93;13056:3;12967:93;:::i;:::-;13085:1;13080:3;13076:11;13069:18;;12695:398;;;:::o;13099:366::-;13241:3;13262:67;13326:2;13321:3;13262:67;:::i;:::-;13255:74;;13338:93;13427:3;13338:93;:::i;:::-;13456:2;13451:3;13447:12;13440:19;;13099:366;;;:::o;13471:::-;13613:3;13634:67;13698:2;13693:3;13634:67;:::i;:::-;13627:74;;13710:93;13799:3;13710:93;:::i;:::-;13828:2;13823:3;13819:12;13812:19;;13471:366;;;:::o;13843:118::-;13930:24;13948:5;13930:24;:::i;:::-;13925:3;13918:37;13843:118;;:::o;13967:589::-;14192:3;14214:92;14302:3;14293:6;14214:92;:::i;:::-;14207:99;;14323:95;14414:3;14405:6;14323:95;:::i;:::-;14316:102;;14435:95;14526:3;14517:6;14435:95;:::i;:::-;14428:102;;14547:3;14540:10;;13967:589;;;;;;:::o;14562:379::-;14746:3;14768:147;14911:3;14768:147;:::i;:::-;14761:154;;14932:3;14925:10;;14562:379;;;:::o;14947:222::-;15040:4;15078:2;15067:9;15063:18;15055:26;;15091:71;15159:1;15148:9;15144:17;15135:6;15091:71;:::i;:::-;14947:222;;;;:::o;15175:640::-;15370:4;15408:3;15397:9;15393:19;15385:27;;15422:71;15490:1;15479:9;15475:17;15466:6;15422:71;:::i;:::-;15503:72;15571:2;15560:9;15556:18;15547:6;15503:72;:::i;:::-;15585;15653:2;15642:9;15638:18;15629:6;15585:72;:::i;:::-;15704:9;15698:4;15694:20;15689:2;15678:9;15674:18;15667:48;15732:76;15803:4;15794:6;15732:76;:::i;:::-;15724:84;;15175:640;;;;;;;:::o;15821:210::-;15908:4;15946:2;15935:9;15931:18;15923:26;;15959:65;16021:1;16010:9;16006:17;15997:6;15959:65;:::i;:::-;15821:210;;;;:::o;16037:313::-;16150:4;16188:2;16177:9;16173:18;16165:26;;16237:9;16231:4;16227:20;16223:1;16212:9;16208:17;16201:47;16265:78;16338:4;16329:6;16265:78;:::i;:::-;16257:86;;16037:313;;;;:::o;16356:419::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:131;16763:4;16637:131;:::i;:::-;16629:139;;16356:419;;;:::o;16781:::-;16947:4;16985:2;16974:9;16970:18;16962:26;;17034:9;17028:4;17024:20;17020:1;17009:9;17005:17;16998:47;17062:131;17188:4;17062:131;:::i;:::-;17054:139;;16781:419;;;:::o;17206:::-;17372:4;17410:2;17399:9;17395:18;17387:26;;17459:9;17453:4;17449:20;17445:1;17434:9;17430:17;17423:47;17487:131;17613:4;17487:131;:::i;:::-;17479:139;;17206:419;;;:::o;17631:::-;17797:4;17835:2;17824:9;17820:18;17812:26;;17884:9;17878:4;17874:20;17870:1;17859:9;17855:17;17848:47;17912:131;18038:4;17912:131;:::i;:::-;17904:139;;17631:419;;;:::o;18056:::-;18222:4;18260:2;18249:9;18245:18;18237:26;;18309:9;18303:4;18299:20;18295:1;18284:9;18280:17;18273:47;18337:131;18463:4;18337:131;:::i;:::-;18329:139;;18056:419;;;:::o;18481:::-;18647:4;18685:2;18674:9;18670:18;18662:26;;18734:9;18728:4;18724:20;18720:1;18709:9;18705:17;18698:47;18762:131;18888:4;18762:131;:::i;:::-;18754:139;;18481:419;;;:::o;18906:::-;19072:4;19110:2;19099:9;19095:18;19087:26;;19159:9;19153:4;19149:20;19145:1;19134:9;19130:17;19123:47;19187:131;19313:4;19187:131;:::i;:::-;19179:139;;18906:419;;;:::o;19331:::-;19497:4;19535:2;19524:9;19520:18;19512:26;;19584:9;19578:4;19574:20;19570:1;19559:9;19555:17;19548:47;19612:131;19738:4;19612:131;:::i;:::-;19604:139;;19331:419;;;:::o;19756:::-;19922:4;19960:2;19949:9;19945:18;19937:26;;20009:9;20003:4;19999:20;19995:1;19984:9;19980:17;19973:47;20037:131;20163:4;20037:131;:::i;:::-;20029:139;;19756:419;;;:::o;20181:::-;20347:4;20385:2;20374:9;20370:18;20362:26;;20434:9;20428:4;20424:20;20420:1;20409:9;20405:17;20398:47;20462:131;20588:4;20462:131;:::i;:::-;20454:139;;20181:419;;;:::o;20606:222::-;20699:4;20737:2;20726:9;20722:18;20714:26;;20750:71;20818:1;20807:9;20803:17;20794:6;20750:71;:::i;:::-;20606:222;;;;:::o;20834:129::-;20868:6;20895:20;;:::i;:::-;20885:30;;20924:33;20952:4;20944:6;20924:33;:::i;:::-;20834:129;;;:::o;20969:75::-;21002:6;21035:2;21029:9;21019:19;;20969:75;:::o;21050:307::-;21111:4;21201:18;21193:6;21190:30;21187:56;;;21223:18;;:::i;:::-;21187:56;21261:29;21283:6;21261:29;:::i;:::-;21253:37;;21345:4;21339;21335:15;21327:23;;21050:307;;;:::o;21363:308::-;21425:4;21515:18;21507:6;21504:30;21501:56;;;21537:18;;:::i;:::-;21501:56;21575:29;21597:6;21575:29;:::i;:::-;21567:37;;21659:4;21653;21649:15;21641:23;;21363:308;;;:::o;21677:141::-;21726:4;21749:3;21741:11;;21772:3;21769:1;21762:14;21806:4;21803:1;21793:18;21785:26;;21677:141;;;:::o;21824:98::-;21875:6;21909:5;21903:12;21893:22;;21824:98;;;:::o;21928:99::-;21980:6;22014:5;22008:12;21998:22;;21928:99;;;:::o;22033:168::-;22116:11;22150:6;22145:3;22138:19;22190:4;22185:3;22181:14;22166:29;;22033:168;;;;:::o;22207:147::-;22308:11;22345:3;22330:18;;22207:147;;;;:::o;22360:169::-;22444:11;22478:6;22473:3;22466:19;22518:4;22513:3;22509:14;22494:29;;22360:169;;;;:::o;22535:148::-;22637:11;22674:3;22659:18;;22535:148;;;;:::o;22689:305::-;22729:3;22748:20;22766:1;22748:20;:::i;:::-;22743:25;;22782:20;22800:1;22782:20;:::i;:::-;22777:25;;22936:1;22868:66;22864:74;22861:1;22858:81;22855:107;;;22942:18;;:::i;:::-;22855:107;22986:1;22983;22979:9;22972:16;;22689:305;;;;:::o;23000:185::-;23040:1;23057:20;23075:1;23057:20;:::i;:::-;23052:25;;23091:20;23109:1;23091:20;:::i;:::-;23086:25;;23130:1;23120:35;;23135:18;;:::i;:::-;23120:35;23177:1;23174;23170:9;23165:14;;23000:185;;;;:::o;23191:348::-;23231:7;23254:20;23272:1;23254:20;:::i;:::-;23249:25;;23288:20;23306:1;23288:20;:::i;:::-;23283:25;;23476:1;23408:66;23404:74;23401:1;23398:81;23393:1;23386:9;23379:17;23375:105;23372:131;;;23483:18;;:::i;:::-;23372:131;23531:1;23528;23524:9;23513:20;;23191:348;;;;:::o;23545:191::-;23585:4;23605:20;23623:1;23605:20;:::i;:::-;23600:25;;23639:20;23657:1;23639:20;:::i;:::-;23634:25;;23678:1;23675;23672:8;23669:34;;;23683:18;;:::i;:::-;23669:34;23728:1;23725;23721:9;23713:17;;23545:191;;;;:::o;23742:96::-;23779:7;23808:24;23826:5;23808:24;:::i;:::-;23797:35;;23742:96;;;:::o;23844:90::-;23878:7;23921:5;23914:13;23907:21;23896:32;;23844:90;;;:::o;23940:149::-;23976:7;24016:66;24009:5;24005:78;23994:89;;23940:149;;;:::o;24095:126::-;24132:7;24172:42;24165:5;24161:54;24150:65;;24095:126;;;:::o;24227:77::-;24264:7;24293:5;24282:16;;24227:77;;;:::o;24310:154::-;24394:6;24389:3;24384;24371:30;24456:1;24447:6;24442:3;24438:16;24431:27;24310:154;;;:::o;24470:307::-;24538:1;24548:113;24562:6;24559:1;24556:13;24548:113;;;24647:1;24642:3;24638:11;24632:18;24628:1;24623:3;24619:11;24612:39;24584:2;24581:1;24577:10;24572:15;;24548:113;;;24679:6;24676:1;24673:13;24670:101;;;24759:1;24750:6;24745:3;24741:16;24734:27;24670:101;24519:258;24470:307;;;:::o;24783:320::-;24827:6;24864:1;24858:4;24854:12;24844:22;;24911:1;24905:4;24901:12;24932:18;24922:81;;24988:4;24980:6;24976:17;24966:27;;24922:81;25050:2;25042:6;25039:14;25019:18;25016:38;25013:84;;;25069:18;;:::i;:::-;25013:84;24834:269;24783:320;;;:::o;25109:281::-;25192:27;25214:4;25192:27;:::i;:::-;25184:6;25180:40;25322:6;25310:10;25307:22;25286:18;25274:10;25271:34;25268:62;25265:88;;;25333:18;;:::i;:::-;25265:88;25373:10;25369:2;25362:22;25152:238;25109:281;;:::o;25396:233::-;25435:3;25458:24;25476:5;25458:24;:::i;:::-;25449:33;;25504:66;25497:5;25494:77;25491:103;;;25574:18;;:::i;:::-;25491:103;25621:1;25614:5;25610:13;25603:20;;25396:233;;;:::o;25635:176::-;25667:1;25684:20;25702:1;25684:20;:::i;:::-;25679:25;;25718:20;25736:1;25718:20;:::i;:::-;25713:25;;25757:1;25747:35;;25762:18;;:::i;:::-;25747:35;25803:1;25800;25796:9;25791:14;;25635:176;;;;:::o;25817:180::-;25865:77;25862:1;25855:88;25962:4;25959:1;25952:15;25986:4;25983:1;25976:15;26003:180;26051:77;26048:1;26041:88;26148:4;26145:1;26138:15;26172:4;26169:1;26162:15;26189:180;26237:77;26234:1;26227:88;26334:4;26331:1;26324:15;26358:4;26355:1;26348:15;26375:180;26423:77;26420:1;26413:88;26520:4;26517:1;26510:15;26544:4;26541:1;26534:15;26561:180;26609:77;26606:1;26599:88;26706:4;26703:1;26696:15;26730:4;26727:1;26720:15;26747:117;26856:1;26853;26846:12;26870:117;26979:1;26976;26969:12;26993:117;27102:1;27099;27092:12;27116:117;27225:1;27222;27215:12;27239:102;27280:6;27331:2;27327:7;27322:2;27315:5;27311:14;27307:28;27297:38;;27239:102;;;:::o;27347:156::-;27487:8;27483:1;27475:6;27471:14;27464:32;27347:156;:::o;27509:225::-;27649:34;27645:1;27637:6;27633:14;27626:58;27718:8;27713:2;27705:6;27701:15;27694:33;27509:225;:::o;27740:172::-;27880:24;27876:1;27868:6;27864:14;27857:48;27740:172;:::o;27918:176::-;28058:28;28054:1;28046:6;28042:14;28035:52;27918:176;:::o;28100:168::-;28240:20;28236:1;28228:6;28224:14;28217:44;28100:168;:::o;28274:171::-;28414:23;28410:1;28402:6;28398:14;28391:47;28274:171;:::o;28451:182::-;28591:34;28587:1;28579:6;28575:14;28568:58;28451:182;:::o;28639:172::-;28779:24;28775:1;28767:6;28763:14;28756:48;28639:172;:::o;28817:114::-;;:::o;28937:164::-;29077:16;29073:1;29065:6;29061:14;29054:40;28937:164;:::o;29107:162::-;29247:14;29243:1;29235:6;29231:14;29224:38;29107:162;:::o;29275:122::-;29348:24;29366:5;29348:24;:::i;:::-;29341:5;29338:35;29328:63;;29387:1;29384;29377:12;29328:63;29275:122;:::o;29403:116::-;29473:21;29488:5;29473:21;:::i;:::-;29466:5;29463:32;29453:60;;29509:1;29506;29499:12;29453:60;29403:116;:::o;29525:120::-;29597:23;29614:5;29597:23;:::i;:::-;29590:5;29587:34;29577:62;;29635:1;29632;29625:12;29577:62;29525:120;:::o;29651:122::-;29724:24;29742:5;29724:24;:::i;:::-;29717:5;29714:35;29704:63;;29763:1;29760;29753:12;29704:63;29651:122;:::o

Swarm Source

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