ETH Price: $2,689.48 (-2.11%)

Token

Gechas (GECHAS)
 

Overview

Max Total Supply

130 GECHAS

Holders

35

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Meowlady Maker: Deployer
Balance
1 GECHAS
0x40b64ae4665109ce0cb9cf4d619afd6a4f73dff4
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:
Gechas

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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


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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.7.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 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/[email protected]


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


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

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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


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

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


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


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

pragma solidity ^0.8.0;

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


// File contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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


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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 contracts/Gechas.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.9;


contract Gechas is ERC721A, Ownable {
    string private _baseTokenURI;

    bool public saleIsActive = false;

    uint256 public maxAmount = 888;
    uint256 public maxPerMint = 30;
    uint256 public nftPrice = 0.04 ether;

    address private shavandWallet = 0xa29F8F289F8244D4E53f99684E85Ff33A72f1428;
    address private devWallet = 0x38c0245C7C67576d1E73f3A11c6af76fE8d11dEA;
    address private artWallet = 0xd9759410C91Ea2E2f76B2bf47c777AB61fd0EAC3;

    constructor() ERC721A("Gechas", "GECHAS") {}

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintReserveTokens(uint256 numberOfTokens) public onlyOwner {
        _safeMint(msg.sender, numberOfTokens);
        require(totalSupply() <= maxAmount, "Limit reached");
    }

    function isAddressWhitelisted(address addr) public pure returns (bool) {
        require(addr != 0x0000000000000000000000000000000000000000, 'You are not whitelisted');
        return true;
    }

    function whitelistMint(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active");
        require(
            numberOfTokens <= maxPerMint,
            "You can't mint that many at once"
        );
        require(
            nftPrice * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, numberOfTokens);

        require(totalSupply() <= maxAmount, "Limit reached");
    }

    function mintNFT(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active");
        require(
            numberOfTokens <= maxPerMint,
            "You can't mint that many at once"
        );
        require(
            nftPrice * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, numberOfTokens);

        require(totalSupply() <= maxAmount, "Limit reached");
    }

    function withdrawMoney() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawAll() public onlyOwner {
        uint256 shavand = (address(this).balance * 4500) / 10000;
        uint256 dev = (address(this).balance * 1000) / 10000;
        uint256 art = (address(this).balance * 4500) / 10000;

        require(payable(shavandWallet).send(shavand));
        require(payable(devWallet).send(dev));
        require(payable(artWallet).send(art));
    }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"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":"flipSaleState","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":"addr","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff021916908315150217905550610378600b55601e600c55668e1bc9bf040000600d5573a29f8f289f8244d4e53f99684e85ff33a72f1428600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507338c0245c7c67576d1e73f3a11c6af76fe8d11dea600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d9759410c91ea2e2f76b2bf47c777ab61fd0eac3601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200014157600080fd5b506040518060400160405280600681526020017f47656368617300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47454348415300000000000000000000000000000000000000000000000000008152508160029080519060200190620001c6929190620002f1565b508060039080519060200190620001df929190620002f1565b50620001f06200021e60201b60201c565b6000819055505050620002186200020c6200022360201b60201c565b6200022b60201b60201c565b62000406565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ff90620003d0565b90600052602060002090601f0160209004810192826200032357600085556200036f565b82601f106200033e57805160ff19168380011785556200036f565b828001600101855582156200036f579182015b828111156200036e57825182559160200191906001019062000351565b5b5090506200037e919062000382565b5090565b5b808211156200039d57600081600090555060010162000383565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e957607f821691505b602082108114156200040057620003ff620003a1565b5b50919050565b6134ba80620004166000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146105d8578063e985e9c514610615578063eb8d244414610652578063f2fde38b1461067d576101c2565b806395d89b4114610544578063a22cb4651461056f578063ac44600214610598578063b88d4fde146105af576101c2565b8063853828b6116100d1578063853828b6146104ca578063868ff4a2146104e15780638da5cb5b146104fd5780639264274414610528576101c2565b80636352211e1461043957806370a0823114610476578063715018a6146104b3576101c2565b806323b872dd1161016457806342842e0e1161013e57806342842e0e14610391578063507e094f146103ba57806355f804b3146103e55780635f48f3931461040e576101c2565b806323b872dd14610328578063288bd8fd1461035157806334918dfd1461037a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630d39fc811461029557806313f44d10146102c057806318160ddd146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906127a6565b6106a6565b6040516101fb91906127ee565b60405180910390f35b34801561021057600080fd5b50610219610788565b60405161022691906128a2565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906128fa565b61081a565b6040516102639190612968565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906129af565b610896565b005b3480156102a157600080fd5b506102aa6109a1565b6040516102b791906129fe565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612a19565b6109a7565b6040516102f491906127ee565b60405180910390f35b34801561030957600080fd5b50610312610a21565b60405161031f91906129fe565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612a46565b610a38565b005b34801561035d57600080fd5b50610378600480360381019061037391906128fa565b610a48565b005b34801561038657600080fd5b5061038f610aa9565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612a46565b610add565b005b3480156103c657600080fd5b506103cf610afd565b6040516103dc91906129fe565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612afe565b610b03565b005b34801561041a57600080fd5b50610423610b21565b60405161043091906129fe565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b91906128fa565b610b27565b60405161046d9190612968565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612a19565b610b3d565b6040516104aa91906129fe565b60405180910390f35b3480156104bf57600080fd5b506104c8610c0d565b005b3480156104d657600080fd5b506104df610c21565b005b6104fb60048036038101906104f691906128fa565b610dab565b005b34801561050957600080fd5b50610512610ee8565b60405161051f9190612968565b60405180910390f35b610542600480360381019061053d91906128fa565b610f12565b005b34801561055057600080fd5b5061055961104f565b60405161056691906128a2565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190612b77565b6110e1565b005b3480156105a457600080fd5b506105ad611259565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190612ce7565b6112aa565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906128fa565b611326565b60405161060c91906128a2565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612d6a565b6113c5565b60405161064991906127ee565b60405180910390f35b34801561065e57600080fd5b50610667611459565b60405161067491906127ee565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612a19565b61146c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107815750610780826114f0565b5b9050919050565b60606002805461079790612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546107c390612dd9565b80156108105780601f106107e557610100808354040283529160200191610810565b820191906000526020600020905b8154815290600101906020018083116107f357829003601f168201915b5050505050905090565b60006108258261155a565b61085b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a182610b27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610909576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109286115a8565b73ffffffffffffffffffffffffffffffffffffffff161415801561095a5750610958816109536115a8565b6113c5565b155b15610991576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61099c8383836115b0565b505050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90612e57565b60405180910390fd5b60019050919050565b6000610a2b611662565b6001546000540303905090565b610a43838383611667565b505050565b610a50611b1d565b610a5a3382611b9b565b600b54610a65610a21565b1115610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612ec3565b60405180910390fd5b50565b610ab1611b1d565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610af8838383604051806020016040528060008152506112aa565b505050565b600c5481565b610b0b611b1d565b818160099190610b1c929190612654565b505050565b600b5481565b6000610b3282611bb9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c15611b1d565b610c1f6000611e48565b565b610c29611b1d565b600061271061119447610c3c9190612f12565b610c469190612f9b565b905060006127106103e847610c5b9190612f12565b610c659190612f9b565b9050600061271061119447610c7a9190612f12565b610c849190612f9b565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610ce657600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610d4657600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610da657600080fd5b505050565b600a60009054906101000a900460ff16610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613018565b60405180910390fd5b600c54811115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613084565b60405180910390fd5b3481600d54610e4e9190612f12565b1115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906130f0565b60405180910390fd5b610e993382611b9b565b600b54610ea4610a21565b1115610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90612ec3565b60405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900460ff16610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890613018565b60405180910390fd5b600c54811115610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613084565b60405180910390fd5b3481600d54610fb59190612f12565b1115610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906130f0565b60405180910390fd5b6110003382611b9b565b600b5461100b610a21565b111561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390612ec3565b60405180910390fd5b50565b60606003805461105e90612dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461108a90612dd9565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b5050505050905090565b6110e96115a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115b6115a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112086115a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124d91906127ee565b60405180910390a35050565b611261611b1d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112a7573d6000803e3d6000fd5b50565b6112b5848484611667565b6112d48373ffffffffffffffffffffffffffffffffffffffff16611f0e565b80156112e957506112e784848484611f31565b155b15611320576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113318261155a565b611367576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611371612091565b905060008151141561139257604051806020016040528060008152506113bd565b8061139c84612123565b6040516020016113ad92919061314c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b611474611b1d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906131e2565b60405180910390fd5b6114ed81611e48565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611565611662565b11158015611574575060005482105b80156115a1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061167282611bb9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116dd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116fe6115a8565b73ffffffffffffffffffffffffffffffffffffffff16148061172d575061172c856117276115a8565b6113c5565b5b80611772575061173b6115a8565b73ffffffffffffffffffffffffffffffffffffffff1661175a8461081a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117ab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611812576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181f8585856001612284565b61182b600084876115b0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611aab576000548214611aaa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b16858585600161228a565b5050505050565b611b256115a8565b73ffffffffffffffffffffffffffffffffffffffff16611b43610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b909061324e565b60405180910390fd5b565b611bb5828260405180602001604052806000815250612290565b5050565b611bc16126da565b600082905080611bcf611662565b11158015611bde575060005481105b15611e11576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e0f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cf3578092505050611e43565b5b600115611e0e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e09578092505050611e43565b611cf4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f576115a8565b8786866040518563ffffffff1660e01b8152600401611f7994939291906132c3565b602060405180830381600087803b158015611f9357600080fd5b505af1925050508015611fc457506040513d601f19601f82011682018060405250810190611fc19190613324565b60015b61203e573d8060008114611ff4576040519150601f19603f3d011682016040523d82523d6000602084013e611ff9565b606091505b50600081511415612036576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120a090612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc90612dd9565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905090565b6060600082141561216b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061227f565b600082905060005b6000821461219d57808061218690613351565b915050600a826121969190612f9b565b9150612173565b60008167ffffffffffffffff8111156121b9576121b8612bbc565b5b6040519080825280601f01601f1916602001820160405280156121eb5781602001600182028036833780820191505090505b5090505b6000851461227857600182612204919061339a565b9150600a8561221391906133ce565b603061221f91906133ff565b60f81b81838151811061223557612234613455565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122719190612f9b565b94506121ef565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122fd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612338576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123456000858386612284565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506125068673ffffffffffffffffffffffffffffffffffffffff16611f0e565b156125cc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461257b6000878480600101955087611f31565b6125b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561250c5782600054146125c757600080fd5b612638565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125cd575b81600081905550505061264e600085838661228a565b50505050565b82805461266090612dd9565b90600052602060002090601f01602090048101928261268257600085556126c9565b82601f1061269b57803560ff19168380011785556126c9565b828001600101855582156126c9579182015b828111156126c85782358255916020019190600101906126ad565b5b5090506126d6919061271d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561273657600081600090555060010161271e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127838161274e565b811461278e57600080fd5b50565b6000813590506127a08161277a565b92915050565b6000602082840312156127bc576127bb612744565b5b60006127ca84828501612791565b91505092915050565b60008115159050919050565b6127e8816127d3565b82525050565b600060208201905061280360008301846127df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612843578082015181840152602081019050612828565b83811115612852576000848401525b50505050565b6000601f19601f8301169050919050565b600061287482612809565b61287e8185612814565b935061288e818560208601612825565b61289781612858565b840191505092915050565b600060208201905081810360008301526128bc8184612869565b905092915050565b6000819050919050565b6128d7816128c4565b81146128e257600080fd5b50565b6000813590506128f4816128ce565b92915050565b6000602082840312156129105761290f612744565b5b600061291e848285016128e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061295282612927565b9050919050565b61296281612947565b82525050565b600060208201905061297d6000830184612959565b92915050565b61298c81612947565b811461299757600080fd5b50565b6000813590506129a981612983565b92915050565b600080604083850312156129c6576129c5612744565b5b60006129d48582860161299a565b92505060206129e5858286016128e5565b9150509250929050565b6129f8816128c4565b82525050565b6000602082019050612a1360008301846129ef565b92915050565b600060208284031215612a2f57612a2e612744565b5b6000612a3d8482850161299a565b91505092915050565b600080600060608486031215612a5f57612a5e612744565b5b6000612a6d8682870161299a565b9350506020612a7e8682870161299a565b9250506040612a8f868287016128e5565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612abe57612abd612a99565b5b8235905067ffffffffffffffff811115612adb57612ada612a9e565b5b602083019150836001820283011115612af757612af6612aa3565b5b9250929050565b60008060208385031215612b1557612b14612744565b5b600083013567ffffffffffffffff811115612b3357612b32612749565b5b612b3f85828601612aa8565b92509250509250929050565b612b54816127d3565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b60008060408385031215612b8e57612b8d612744565b5b6000612b9c8582860161299a565b9250506020612bad85828601612b62565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bf482612858565b810181811067ffffffffffffffff82111715612c1357612c12612bbc565b5b80604052505050565b6000612c2661273a565b9050612c328282612beb565b919050565b600067ffffffffffffffff821115612c5257612c51612bbc565b5b612c5b82612858565b9050602081019050919050565b82818337600083830152505050565b6000612c8a612c8584612c37565b612c1c565b905082815260208101848484011115612ca657612ca5612bb7565b5b612cb1848285612c68565b509392505050565b600082601f830112612cce57612ccd612a99565b5b8135612cde848260208601612c77565b91505092915050565b60008060008060808587031215612d0157612d00612744565b5b6000612d0f8782880161299a565b9450506020612d208782880161299a565b9350506040612d31878288016128e5565b925050606085013567ffffffffffffffff811115612d5257612d51612749565b5b612d5e87828801612cb9565b91505092959194509250565b60008060408385031215612d8157612d80612744565b5b6000612d8f8582860161299a565b9250506020612da08582860161299a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612df157607f821691505b60208210811415612e0557612e04612daa565b5b50919050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b6000612e41601783612814565b9150612e4c82612e0b565b602082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b6000612ead600d83612814565b9150612eb882612e77565b602082019050919050565b60006020820190508181036000830152612edc81612ea0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f1d826128c4565b9150612f28836128c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6157612f60612ee3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fa6826128c4565b9150612fb1836128c4565b925082612fc157612fc0612f6c565b5b828204905092915050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613002601283612814565b915061300d82612fcc565b602082019050919050565b6000602082019050818103600083015261303181612ff5565b9050919050565b7f596f752063616e2774206d696e742074686174206d616e79206174206f6e6365600082015250565b600061306e602083612814565b915061307982613038565b602082019050919050565b6000602082019050818103600083015261309d81613061565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006130da601f83612814565b91506130e5826130a4565b602082019050919050565b60006020820190508181036000830152613109816130cd565b9050919050565b600081905092915050565b600061312682612809565b6131308185613110565b9350613140818560208601612825565b80840191505092915050565b6000613158828561311b565b9150613164828461311b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131cc602683612814565b91506131d782613170565b604082019050919050565b600060208201905081810360008301526131fb816131bf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613238602083612814565b915061324382613202565b602082019050919050565b600060208201905081810360008301526132678161322b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132958261326e565b61329f8185613279565b93506132af818560208601612825565b6132b881612858565b840191505092915050565b60006080820190506132d86000830187612959565b6132e56020830186612959565b6132f260408301856129ef565b8181036060830152613304818461328a565b905095945050505050565b60008151905061331e8161277a565b92915050565b60006020828403121561333a57613339612744565b5b60006133488482850161330f565b91505092915050565b600061335c826128c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561338f5761338e612ee3565b5b600182019050919050565b60006133a5826128c4565b91506133b0836128c4565b9250828210156133c3576133c2612ee3565b5b828203905092915050565b60006133d9826128c4565b91506133e4836128c4565b9250826133f4576133f3612f6c565b5b828206905092915050565b600061340a826128c4565b9150613415836128c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561344a57613449612ee3565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bf74f60da407ae6ab128bbb014520bddbf82d8e24e3845188ef221bf111ad9ef64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146105d8578063e985e9c514610615578063eb8d244414610652578063f2fde38b1461067d576101c2565b806395d89b4114610544578063a22cb4651461056f578063ac44600214610598578063b88d4fde146105af576101c2565b8063853828b6116100d1578063853828b6146104ca578063868ff4a2146104e15780638da5cb5b146104fd5780639264274414610528576101c2565b80636352211e1461043957806370a0823114610476578063715018a6146104b3576101c2565b806323b872dd1161016457806342842e0e1161013e57806342842e0e14610391578063507e094f146103ba57806355f804b3146103e55780635f48f3931461040e576101c2565b806323b872dd14610328578063288bd8fd1461035157806334918dfd1461037a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630d39fc811461029557806313f44d10146102c057806318160ddd146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906127a6565b6106a6565b6040516101fb91906127ee565b60405180910390f35b34801561021057600080fd5b50610219610788565b60405161022691906128a2565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906128fa565b61081a565b6040516102639190612968565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906129af565b610896565b005b3480156102a157600080fd5b506102aa6109a1565b6040516102b791906129fe565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612a19565b6109a7565b6040516102f491906127ee565b60405180910390f35b34801561030957600080fd5b50610312610a21565b60405161031f91906129fe565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612a46565b610a38565b005b34801561035d57600080fd5b50610378600480360381019061037391906128fa565b610a48565b005b34801561038657600080fd5b5061038f610aa9565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612a46565b610add565b005b3480156103c657600080fd5b506103cf610afd565b6040516103dc91906129fe565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612afe565b610b03565b005b34801561041a57600080fd5b50610423610b21565b60405161043091906129fe565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b91906128fa565b610b27565b60405161046d9190612968565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190612a19565b610b3d565b6040516104aa91906129fe565b60405180910390f35b3480156104bf57600080fd5b506104c8610c0d565b005b3480156104d657600080fd5b506104df610c21565b005b6104fb60048036038101906104f691906128fa565b610dab565b005b34801561050957600080fd5b50610512610ee8565b60405161051f9190612968565b60405180910390f35b610542600480360381019061053d91906128fa565b610f12565b005b34801561055057600080fd5b5061055961104f565b60405161056691906128a2565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190612b77565b6110e1565b005b3480156105a457600080fd5b506105ad611259565b005b3480156105bb57600080fd5b506105d660048036038101906105d19190612ce7565b6112aa565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906128fa565b611326565b60405161060c91906128a2565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190612d6a565b6113c5565b60405161064991906127ee565b60405180910390f35b34801561065e57600080fd5b50610667611459565b60405161067491906127ee565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612a19565b61146c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107815750610780826114f0565b5b9050919050565b60606002805461079790612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546107c390612dd9565b80156108105780601f106107e557610100808354040283529160200191610810565b820191906000526020600020905b8154815290600101906020018083116107f357829003601f168201915b5050505050905090565b60006108258261155a565b61085b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a182610b27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610909576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109286115a8565b73ffffffffffffffffffffffffffffffffffffffff161415801561095a5750610958816109536115a8565b6113c5565b155b15610991576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61099c8383836115b0565b505050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90612e57565b60405180910390fd5b60019050919050565b6000610a2b611662565b6001546000540303905090565b610a43838383611667565b505050565b610a50611b1d565b610a5a3382611b9b565b600b54610a65610a21565b1115610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612ec3565b60405180910390fd5b50565b610ab1611b1d565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610af8838383604051806020016040528060008152506112aa565b505050565b600c5481565b610b0b611b1d565b818160099190610b1c929190612654565b505050565b600b5481565b6000610b3282611bb9565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c15611b1d565b610c1f6000611e48565b565b610c29611b1d565b600061271061119447610c3c9190612f12565b610c469190612f9b565b905060006127106103e847610c5b9190612f12565b610c659190612f9b565b9050600061271061119447610c7a9190612f12565b610c849190612f9b565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610ce657600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610d4657600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610da657600080fd5b505050565b600a60009054906101000a900460ff16610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613018565b60405180910390fd5b600c54811115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613084565b60405180910390fd5b3481600d54610e4e9190612f12565b1115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906130f0565b60405180910390fd5b610e993382611b9b565b600b54610ea4610a21565b1115610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90612ec3565b60405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900460ff16610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890613018565b60405180910390fd5b600c54811115610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90613084565b60405180910390fd5b3481600d54610fb59190612f12565b1115610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906130f0565b60405180910390fd5b6110003382611b9b565b600b5461100b610a21565b111561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390612ec3565b60405180910390fd5b50565b60606003805461105e90612dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461108a90612dd9565b80156110d75780601f106110ac576101008083540402835291602001916110d7565b820191906000526020600020905b8154815290600101906020018083116110ba57829003601f168201915b5050505050905090565b6110e96115a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115b6115a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112086115a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161124d91906127ee565b60405180910390a35050565b611261611b1d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112a7573d6000803e3d6000fd5b50565b6112b5848484611667565b6112d48373ffffffffffffffffffffffffffffffffffffffff16611f0e565b80156112e957506112e784848484611f31565b155b15611320576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113318261155a565b611367576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611371612091565b905060008151141561139257604051806020016040528060008152506113bd565b8061139c84612123565b6040516020016113ad92919061314c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b611474611b1d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906131e2565b60405180910390fd5b6114ed81611e48565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611565611662565b11158015611574575060005482105b80156115a1575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061167282611bb9565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116dd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116fe6115a8565b73ffffffffffffffffffffffffffffffffffffffff16148061172d575061172c856117276115a8565b6113c5565b5b80611772575061173b6115a8565b73ffffffffffffffffffffffffffffffffffffffff1661175a8461081a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117ab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611812576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181f8585856001612284565b61182b600084876115b0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611aab576000548214611aaa57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b16858585600161228a565b5050505050565b611b256115a8565b73ffffffffffffffffffffffffffffffffffffffff16611b43610ee8565b73ffffffffffffffffffffffffffffffffffffffff1614611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b909061324e565b60405180910390fd5b565b611bb5828260405180602001604052806000815250612290565b5050565b611bc16126da565b600082905080611bcf611662565b11158015611bde575060005481105b15611e11576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e0f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cf3578092505050611e43565b5b600115611e0e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e09578092505050611e43565b611cf4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f576115a8565b8786866040518563ffffffff1660e01b8152600401611f7994939291906132c3565b602060405180830381600087803b158015611f9357600080fd5b505af1925050508015611fc457506040513d601f19601f82011682018060405250810190611fc19190613324565b60015b61203e573d8060008114611ff4576040519150601f19603f3d011682016040523d82523d6000602084013e611ff9565b606091505b50600081511415612036576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120a090612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc90612dd9565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905090565b6060600082141561216b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061227f565b600082905060005b6000821461219d57808061218690613351565b915050600a826121969190612f9b565b9150612173565b60008167ffffffffffffffff8111156121b9576121b8612bbc565b5b6040519080825280601f01601f1916602001820160405280156121eb5781602001600182028036833780820191505090505b5090505b6000851461227857600182612204919061339a565b9150600a8561221391906133ce565b603061221f91906133ff565b60f81b81838151811061223557612234613455565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122719190612f9b565b94506121ef565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122fd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612338576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123456000858386612284565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506125068673ffffffffffffffffffffffffffffffffffffffff16611f0e565b156125cc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461257b6000878480600101955087611f31565b6125b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561250c5782600054146125c757600080fd5b612638565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125cd575b81600081905550505061264e600085838661228a565b50505050565b82805461266090612dd9565b90600052602060002090601f01602090048101928261268257600085556126c9565b82601f1061269b57803560ff19168380011785556126c9565b828001600101855582156126c9579182015b828111156126c85782358255916020019190600101906126ad565b5b5090506126d6919061271d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561273657600081600090555060010161271e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127838161274e565b811461278e57600080fd5b50565b6000813590506127a08161277a565b92915050565b6000602082840312156127bc576127bb612744565b5b60006127ca84828501612791565b91505092915050565b60008115159050919050565b6127e8816127d3565b82525050565b600060208201905061280360008301846127df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612843578082015181840152602081019050612828565b83811115612852576000848401525b50505050565b6000601f19601f8301169050919050565b600061287482612809565b61287e8185612814565b935061288e818560208601612825565b61289781612858565b840191505092915050565b600060208201905081810360008301526128bc8184612869565b905092915050565b6000819050919050565b6128d7816128c4565b81146128e257600080fd5b50565b6000813590506128f4816128ce565b92915050565b6000602082840312156129105761290f612744565b5b600061291e848285016128e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061295282612927565b9050919050565b61296281612947565b82525050565b600060208201905061297d6000830184612959565b92915050565b61298c81612947565b811461299757600080fd5b50565b6000813590506129a981612983565b92915050565b600080604083850312156129c6576129c5612744565b5b60006129d48582860161299a565b92505060206129e5858286016128e5565b9150509250929050565b6129f8816128c4565b82525050565b6000602082019050612a1360008301846129ef565b92915050565b600060208284031215612a2f57612a2e612744565b5b6000612a3d8482850161299a565b91505092915050565b600080600060608486031215612a5f57612a5e612744565b5b6000612a6d8682870161299a565b9350506020612a7e8682870161299a565b9250506040612a8f868287016128e5565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612abe57612abd612a99565b5b8235905067ffffffffffffffff811115612adb57612ada612a9e565b5b602083019150836001820283011115612af757612af6612aa3565b5b9250929050565b60008060208385031215612b1557612b14612744565b5b600083013567ffffffffffffffff811115612b3357612b32612749565b5b612b3f85828601612aa8565b92509250509250929050565b612b54816127d3565b8114612b5f57600080fd5b50565b600081359050612b7181612b4b565b92915050565b60008060408385031215612b8e57612b8d612744565b5b6000612b9c8582860161299a565b9250506020612bad85828601612b62565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bf482612858565b810181811067ffffffffffffffff82111715612c1357612c12612bbc565b5b80604052505050565b6000612c2661273a565b9050612c328282612beb565b919050565b600067ffffffffffffffff821115612c5257612c51612bbc565b5b612c5b82612858565b9050602081019050919050565b82818337600083830152505050565b6000612c8a612c8584612c37565b612c1c565b905082815260208101848484011115612ca657612ca5612bb7565b5b612cb1848285612c68565b509392505050565b600082601f830112612cce57612ccd612a99565b5b8135612cde848260208601612c77565b91505092915050565b60008060008060808587031215612d0157612d00612744565b5b6000612d0f8782880161299a565b9450506020612d208782880161299a565b9350506040612d31878288016128e5565b925050606085013567ffffffffffffffff811115612d5257612d51612749565b5b612d5e87828801612cb9565b91505092959194509250565b60008060408385031215612d8157612d80612744565b5b6000612d8f8582860161299a565b9250506020612da08582860161299a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612df157607f821691505b60208210811415612e0557612e04612daa565b5b50919050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b6000612e41601783612814565b9150612e4c82612e0b565b602082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b6000612ead600d83612814565b9150612eb882612e77565b602082019050919050565b60006020820190508181036000830152612edc81612ea0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f1d826128c4565b9150612f28836128c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6157612f60612ee3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fa6826128c4565b9150612fb1836128c4565b925082612fc157612fc0612f6c565b5b828204905092915050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613002601283612814565b915061300d82612fcc565b602082019050919050565b6000602082019050818103600083015261303181612ff5565b9050919050565b7f596f752063616e2774206d696e742074686174206d616e79206174206f6e6365600082015250565b600061306e602083612814565b915061307982613038565b602082019050919050565b6000602082019050818103600083015261309d81613061565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006130da601f83612814565b91506130e5826130a4565b602082019050919050565b60006020820190508181036000830152613109816130cd565b9050919050565b600081905092915050565b600061312682612809565b6131308185613110565b9350613140818560208601612825565b80840191505092915050565b6000613158828561311b565b9150613164828461311b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131cc602683612814565b91506131d782613170565b604082019050919050565b600060208201905081810360008301526131fb816131bf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613238602083612814565b915061324382613202565b602082019050919050565b600060208201905081810360008301526132678161322b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132958261326e565b61329f8185613279565b93506132af818560208601612825565b6132b881612858565b840191505092915050565b60006080820190506132d86000830187612959565b6132e56020830186612959565b6132f260408301856129ef565b8181036060830152613304818461328a565b905095945050505050565b60008151905061331e8161277a565b92915050565b60006020828403121561333a57613339612744565b5b60006133488482850161330f565b91505092915050565b600061335c826128c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561338f5761338e612ee3565b5b600182019050919050565b60006133a5826128c4565b91506133b0836128c4565b9250828210156133c3576133c2612ee3565b5b828203905092915050565b60006133d9826128c4565b91506133e4836128c4565b9250826133f4576133f3612f6c565b5b828206905092915050565b600061340a826128c4565b9150613415836128c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561344a57613449612ee3565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bf74f60da407ae6ab128bbb014520bddbf82d8e24e3845188ef221bf111ad9ef64736f6c63430008090033

Deployed Bytecode Sourcemap

46632:2773:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25012:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28125:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29628:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29191:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46827:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47689:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24261:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30493:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47494:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47397:89;;;;;;;;;;;;;:::i;:::-;;30734:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46790:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47283:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46753:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27933:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25381:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45714:103;;;;;;;;;;;;;:::i;:::-;;49007:395;;;;;;;;;;;;;:::i;:::-;;47895:490;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45066:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48393:484;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28294:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29904:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48885:114;;;;;;;;;;;;;:::i;:::-;;30990:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28469:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30262:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46712:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45972:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25012:305;25114:4;25166:25;25151:40;;;:11;:40;;;;:105;;;;25223:33;25208:48;;;:11;:48;;;;25151:105;:158;;;;25273:36;25297:11;25273:23;:36::i;:::-;25151:158;25131:178;;25012:305;;;:::o;28125:100::-;28179:13;28212:5;28205:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28125:100;:::o;29628:204::-;29696:7;29721:16;29729:7;29721;:16::i;:::-;29716:64;;29746:34;;;;;;;;;;;;;;29716:64;29800:15;:24;29816:7;29800:24;;;;;;;;;;;;;;;;;;;;;29793:31;;29628:204;;;:::o;29191:371::-;29264:13;29280:24;29296:7;29280:15;:24::i;:::-;29264:40;;29325:5;29319:11;;:2;:11;;;29315:48;;;29339:24;;;;;;;;;;;;;;29315:48;29396:5;29380:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29406:37;29423:5;29430:12;:10;:12::i;:::-;29406:16;:37::i;:::-;29405:38;29380:63;29376:138;;;29467:35;;;;;;;;;;;;;;29376:138;29526:28;29535:2;29539:7;29548:5;29526:8;:28::i;:::-;29253:309;29191:371;;:::o;46827:36::-;;;;:::o;47689:198::-;47754:4;47787:42;47779:50;;:4;:50;;;;47771:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;47875:4;47868:11;;47689:198;;;:::o;24261:303::-;24305:7;24530:15;:13;:15::i;:::-;24515:12;;24499:13;;:28;:46;24492:53;;24261:303;:::o;30493:170::-;30627:28;30637:4;30643:2;30647:7;30627:9;:28::i;:::-;30493:170;;;:::o;47494:187::-;44952:13;:11;:13::i;:::-;47573:37:::1;47583:10;47595:14;47573:9;:37::i;:::-;47646:9;;47629:13;:11;:13::i;:::-;:26;;47621:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47494:187:::0;:::o;47397:89::-;44952:13;:11;:13::i;:::-;47466:12:::1;;;;;;;;;;;47465:13;47450:12;;:28;;;;;;;;;;;;;;;;;;47397:89::o:0;30734:185::-;30872:39;30889:4;30895:2;30899:7;30872:39;;;;;;;;;;;;:16;:39::i;:::-;30734:185;;;:::o;46790:30::-;;;;:::o;47283:106::-;44952:13;:11;:13::i;:::-;47374:7:::1;;47358:13;:23;;;;;;;:::i;:::-;;47283:106:::0;;:::o;46753:30::-;;;;:::o;27933:125::-;27997:7;28024:21;28037:7;28024:12;:21::i;:::-;:26;;;28017:33;;27933:125;;;:::o;25381:206::-;25445:7;25486:1;25469:19;;:5;:19;;;25465:60;;;25497:28;;;;;;;;;;;;;;25465:60;25551:12;:19;25564:5;25551:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25543:36;;25536:43;;25381:206;;;:::o;45714:103::-;44952:13;:11;:13::i;:::-;45779:30:::1;45806:1;45779:18;:30::i;:::-;45714:103::o:0;49007:395::-;44952:13;:11;:13::i;:::-;49058:15:::1;49109:5;49101:4;49077:21;:28;;;;:::i;:::-;49076:38;;;;:::i;:::-;49058:56;;49125:11;49172:5;49164:4;49140:21;:28;;;;:::i;:::-;49139:38;;;;:::i;:::-;49125:52;;49188:11;49235:5;49227:4;49203:21;:28;;;;:::i;:::-;49202:38;;;;:::i;:::-;49188:52;;49269:13;;;;;;;;;;;49261:27;;:36;49289:7;49261:36;;;;;;;;;;;;;;;;;;;;;;;49253:45;;;::::0;::::1;;49325:9;;;;;;;;;;;49317:23;;:28;49341:3;49317:28;;;;;;;;;;;;;;;;;;;;;;;49309:37;;;::::0;::::1;;49373:9;;;;;;;;;;;49365:23;;:28;49389:3;49365:28;;;;;;;;;;;;;;;;;;;;;;;49357:37;;;::::0;::::1;;49047:355;;;49007:395::o:0;47895:490::-;47976:12;;;;;;;;;;;47968:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48062:10;;48044:14;:28;;48022:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48194:9;48176:14;48165:8;;:25;;;;:::i;:::-;:38;;48143:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;48275:37;48285:10;48297:14;48275:9;:37::i;:::-;48350:9;;48333:13;:11;:13::i;:::-;:26;;48325:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47895:490;:::o;45066:87::-;45112:7;45139:6;;;;;;;;;;;45132:13;;45066:87;:::o;48393:484::-;48468:12;;;;;;;;;;;48460:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48554:10;;48536:14;:28;;48514:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48686:9;48668:14;48657:8;;:25;;;;:::i;:::-;:38;;48635:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;48767:37;48777:10;48789:14;48767:9;:37::i;:::-;48842:9;;48825:13;:11;:13::i;:::-;:26;;48817:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;48393:484;:::o;28294:104::-;28350:13;28383:7;28376:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28294:104;:::o;29904:287::-;30015:12;:10;:12::i;:::-;30003:24;;:8;:24;;;29999:54;;;30036:17;;;;;;;;;;;;;;29999:54;30111:8;30066:18;:32;30085:12;:10;:12::i;:::-;30066:32;;;;;;;;;;;;;;;:42;30099:8;30066:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30164:8;30135:48;;30150:12;:10;:12::i;:::-;30135:48;;;30174:8;30135:48;;;;;;:::i;:::-;;;;;;;;29904:287;;:::o;48885:114::-;44952:13;:11;:13::i;:::-;48948:10:::1;48940:28;;:51;48969:21;48940:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48885:114::o:0;30990:369::-;31157:28;31167:4;31173:2;31177:7;31157:9;:28::i;:::-;31200:15;:2;:13;;;:15::i;:::-;:76;;;;;31220:56;31251:4;31257:2;31261:7;31270:5;31220:30;:56::i;:::-;31219:57;31200:76;31196:156;;;31300:40;;;;;;;;;;;;;;31196:156;30990:369;;;;:::o;28469:318::-;28542:13;28573:16;28581:7;28573;:16::i;:::-;28568:59;;28598:29;;;;;;;;;;;;;;28568:59;28640:21;28664:10;:8;:10::i;:::-;28640:34;;28717:1;28698:7;28692:21;:26;;:87;;;;;;;;;;;;;;;;;28745:7;28754:18;:7;:16;:18::i;:::-;28728:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28692:87;28685:94;;;28469:318;;;:::o;30262:164::-;30359:4;30383:18;:25;30402:5;30383:25;;;;;;;;;;;;;;;:35;30409:8;30383:35;;;;;;;;;;;;;;;;;;;;;;;;;30376:42;;30262:164;;;;:::o;46712:32::-;;;;;;;;;;;;;:::o;45972:201::-;44952:13;:11;:13::i;:::-;46081:1:::1;46061:22;;:8;:22;;;;46053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46137:28;46156:8;46137:18;:28::i;:::-;45972:201:::0;:::o;20587:157::-;20672:4;20711:25;20696:40;;;:11;:40;;;;20689:47;;20587:157;;;:::o;31614:174::-;31671:4;31714:7;31695:15;:13;:15::i;:::-;:26;;:53;;;;;31735:13;;31725:7;:23;31695:53;:85;;;;;31753:11;:20;31765:7;31753:20;;;;;;;;;;;:27;;;;;;;;;;;;31752:28;31695:85;31688:92;;31614:174;;;:::o;16997:98::-;17050:7;17077:10;17070:17;;16997:98;:::o;40839:196::-;40981:2;40954:15;:24;40970:7;40954:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41019:7;41015:2;40999:28;;41008:5;40999:28;;;;;;;;;;;;40839:196;;;:::o;24035:92::-;24091:7;24035:92;:::o;35787:2130::-;35902:35;35940:21;35953:7;35940:12;:21::i;:::-;35902:59;;36000:4;35978:26;;:13;:18;;;:26;;;35974:67;;36013:28;;;;;;;;;;;;;;35974:67;36054:22;36096:4;36080:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;36117:36;36134:4;36140:12;:10;:12::i;:::-;36117:16;:36::i;:::-;36080:73;:126;;;;36194:12;:10;:12::i;:::-;36170:36;;:20;36182:7;36170:11;:20::i;:::-;:36;;;36080:126;36054:153;;36225:17;36220:66;;36251:35;;;;;;;;;;;;;;36220:66;36315:1;36301:16;;:2;:16;;;36297:52;;;36326:23;;;;;;;;;;;;;;36297:52;36362:43;36384:4;36390:2;36394:7;36403:1;36362:21;:43::i;:::-;36470:35;36487:1;36491:7;36500:4;36470:8;:35::i;:::-;36831:1;36801:12;:18;36814:4;36801:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36875:1;36847:12;:16;36860:2;36847:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36893:31;36927:11;:20;36939:7;36927:20;;;;;;;;;;;36893:54;;36978:2;36962:8;:13;;;:18;;;;;;;;;;;;;;;;;;37028:15;36995:8;:23;;;:49;;;;;;;;;;;;;;;;;;37296:19;37328:1;37318:7;:11;37296:33;;37344:31;37378:11;:24;37390:11;37378:24;;;;;;;;;;;37344:58;;37446:1;37421:27;;:8;:13;;;;;;;;;;;;:27;;;37417:384;;;37631:13;;37616:11;:28;37612:174;;37685:4;37669:8;:13;;;:20;;;;;;;;;;;;;;;;;;37738:13;:28;;;37712:8;:23;;;:54;;;;;;;;;;;;;;;;;;37612:174;37417:384;36776:1036;;;37848:7;37844:2;37829:27;;37838:4;37829:27;;;;;;;;;;;;37867:42;37888:4;37894:2;37898:7;37907:1;37867:20;:42::i;:::-;35891:2026;;35787:2130;;;:::o;45231:132::-;45306:12;:10;:12::i;:::-;45295:23;;:7;:5;:7::i;:::-;:23;;;45287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45231:132::o;31872:104::-;31941:27;31951:2;31955:8;31941:27;;;;;;;;;;;;:9;:27::i;:::-;31872:104;;:::o;26762:1109::-;26824:21;;:::i;:::-;26858:12;26873:7;26858:22;;26941:4;26922:15;:13;:15::i;:::-;:23;;:47;;;;;26956:13;;26949:4;:20;26922:47;26918:886;;;26990:31;27024:11;:17;27036:4;27024:17;;;;;;;;;;;26990:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27065:9;:16;;;27060:729;;27136:1;27110:28;;:9;:14;;;:28;;;27106:101;;27174:9;27167:16;;;;;;27106:101;27509:261;27516:4;27509:261;;;27549:6;;;;;;;;27594:11;:17;27606:4;27594:17;;;;;;;;;;;27582:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27668:1;27642:28;;:9;:14;;;:28;;;27638:109;;27710:9;27703:16;;;;;;27638:109;27509:261;;;27060:729;26971:833;26918:886;27832:31;;;;;;;;;;;;;;26762:1109;;;;:::o;46333:191::-;46407:16;46426:6;;;;;;;;;;;46407:25;;46452:8;46443:6;;:17;;;;;;;;;;;;;;;;;;46507:8;46476:40;;46497:8;46476:40;;;;;;;;;;;;46396:128;46333:191;:::o;8990:326::-;9050:4;9307:1;9285:7;:19;;;:23;9278:30;;8990:326;;;:::o;41527:667::-;41690:4;41727:2;41711:36;;;41748:12;:10;:12::i;:::-;41762:4;41768:7;41777:5;41711:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41707:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41962:1;41945:6;:13;:18;41941:235;;;41991:40;;;;;;;;;;;;;;41941:235;42134:6;42128:13;42119:6;42115:2;42111:15;42104:38;41707:480;41840:45;;;41830:55;;;:6;:55;;;;41823:62;;;41527:667;;;;;;:::o;47161:114::-;47221:13;47254;47247:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47161:114;:::o;17649:723::-;17705:13;17935:1;17926:5;:10;17922:53;;;17953:10;;;;;;;;;;;;;;;;;;;;;17922:53;17985:12;18000:5;17985:20;;18016:14;18041:78;18056:1;18048:4;:9;18041:78;;18074:8;;;;;:::i;:::-;;;;18105:2;18097:10;;;;;:::i;:::-;;;18041:78;;;18129:19;18161:6;18151:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18129:39;;18179:154;18195:1;18186:5;:10;18179:154;;18223:1;18213:11;;;;;:::i;:::-;;;18290:2;18282:5;:10;;;;:::i;:::-;18269:2;:24;;;;:::i;:::-;18256:39;;18239:6;18246;18239:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18319:2;18310:11;;;;;:::i;:::-;;;18179:154;;;18357:6;18343:21;;;;;17649:723;;;;:::o;42842:159::-;;;;;:::o;43660:158::-;;;;;:::o;32349:1751::-;32472:20;32495:13;;32472:36;;32537:1;32523:16;;:2;:16;;;32519:48;;;32548:19;;;;;;;;;;;;;;32519:48;32594:1;32582:8;:13;32578:44;;;32604:18;;;;;;;;;;;;;;32578:44;32635:61;32665:1;32669:2;32673:12;32687:8;32635:21;:61::i;:::-;33008:8;32973:12;:16;32986:2;32973:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33072:8;33032:12;:16;33045:2;33032:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33131:2;33098:11;:25;33110:12;33098:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33198:15;33148:11;:25;33160:12;33148:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33231:20;33254:12;33231:35;;33281:11;33310:8;33295:12;:23;33281:37;;33339:15;:2;:13;;;:15::i;:::-;33335:633;;;33375:314;33431:12;33427:2;33406:38;;33423:1;33406:38;;;;;;;;;;;;33472:69;33511:1;33515:2;33519:14;;;;;;33535:5;33472:30;:69::i;:::-;33467:174;;33577:40;;;;;;;;;;;;;;33467:174;33684:3;33668:12;:19;;33375:314;;33770:12;33753:13;;:29;33749:43;;33784:8;;;33749:43;33335:633;;;33833:120;33889:14;;;;;;33885:2;33864:40;;33881:1;33864:40;;;;;;;;;;;;33948:3;33932:12;:19;;33833:120;;33335:633;33998:12;33982:13;:28;;;;32948:1074;;34032:60;34061:1;34065:2;34069:12;34083:8;34032:20;:60::i;:::-;32461:1639;32349:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:117;6605:1;6602;6595:12;6633:553;6691:8;6701:6;6751:3;6744:4;6736:6;6732:17;6728:27;6718:122;;6759:79;;:::i;:::-;6718:122;6872:6;6859:20;6849:30;;6902:18;6894:6;6891:30;6888:117;;;6924:79;;:::i;:::-;6888:117;7038:4;7030:6;7026:17;7014:29;;7092:3;7084:4;7076:6;7072:17;7062:8;7058:32;7055:41;7052:128;;;7099:79;;:::i;:::-;7052:128;6633:553;;;;;:::o;7192:529::-;7263:6;7271;7320:2;7308:9;7299:7;7295:23;7291:32;7288:119;;;7326:79;;:::i;:::-;7288:119;7474:1;7463:9;7459:17;7446:31;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:65;7696:7;7687:6;7676:9;7672:22;7639:65;:::i;:::-;7621:83;;;;7417:297;7192:529;;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:173::-;12520:25;12516:1;12508:6;12504:14;12497:49;12380:173;:::o;12559:366::-;12701:3;12722:67;12786:2;12781:3;12722:67;:::i;:::-;12715:74;;12798:93;12887:3;12798:93;:::i;:::-;12916:2;12911:3;12907:12;12900:19;;12559:366;;;:::o;12931:419::-;13097:4;13135:2;13124:9;13120:18;13112:26;;13184:9;13178:4;13174:20;13170:1;13159:9;13155:17;13148:47;13212:131;13338:4;13212:131;:::i;:::-;13204:139;;12931:419;;;:::o;13356:163::-;13496:15;13492:1;13484:6;13480:14;13473:39;13356:163;:::o;13525:366::-;13667:3;13688:67;13752:2;13747:3;13688:67;:::i;:::-;13681:74;;13764:93;13853:3;13764:93;:::i;:::-;13882:2;13877:3;13873:12;13866:19;;13525:366;;;:::o;13897:419::-;14063:4;14101:2;14090:9;14086:18;14078:26;;14150:9;14144:4;14140:20;14136:1;14125:9;14121:17;14114:47;14178:131;14304:4;14178:131;:::i;:::-;14170:139;;13897:419;;;:::o;14322:180::-;14370:77;14367:1;14360:88;14467:4;14464:1;14457:15;14491:4;14488:1;14481:15;14508:348;14548:7;14571:20;14589:1;14571:20;:::i;:::-;14566:25;;14605:20;14623:1;14605:20;:::i;:::-;14600:25;;14793:1;14725:66;14721:74;14718:1;14715:81;14710:1;14703:9;14696:17;14692:105;14689:131;;;14800:18;;:::i;:::-;14689:131;14848:1;14845;14841:9;14830:20;;14508:348;;;;:::o;14862:180::-;14910:77;14907:1;14900:88;15007:4;15004:1;14997:15;15031:4;15028:1;15021:15;15048:185;15088:1;15105:20;15123:1;15105:20;:::i;:::-;15100:25;;15139:20;15157:1;15139:20;:::i;:::-;15134:25;;15178:1;15168:35;;15183:18;;:::i;:::-;15168:35;15225:1;15222;15218:9;15213:14;;15048:185;;;;:::o;15239:168::-;15379:20;15375:1;15367:6;15363:14;15356:44;15239:168;:::o;15413:366::-;15555:3;15576:67;15640:2;15635:3;15576:67;:::i;:::-;15569:74;;15652:93;15741:3;15652:93;:::i;:::-;15770:2;15765:3;15761:12;15754:19;;15413:366;;;:::o;15785:419::-;15951:4;15989:2;15978:9;15974:18;15966:26;;16038:9;16032:4;16028:20;16024:1;16013:9;16009:17;16002:47;16066:131;16192:4;16066:131;:::i;:::-;16058:139;;15785:419;;;:::o;16210:182::-;16350:34;16346:1;16338:6;16334:14;16327:58;16210:182;:::o;16398:366::-;16540:3;16561:67;16625:2;16620:3;16561:67;:::i;:::-;16554:74;;16637:93;16726:3;16637:93;:::i;:::-;16755:2;16750:3;16746:12;16739:19;;16398:366;;;:::o;16770:419::-;16936:4;16974:2;16963:9;16959:18;16951:26;;17023:9;17017:4;17013:20;17009:1;16998:9;16994:17;16987:47;17051:131;17177:4;17051:131;:::i;:::-;17043:139;;16770:419;;;:::o;17195:181::-;17335:33;17331:1;17323:6;17319:14;17312:57;17195:181;:::o;17382:366::-;17524:3;17545:67;17609:2;17604:3;17545:67;:::i;:::-;17538:74;;17621:93;17710:3;17621:93;:::i;:::-;17739:2;17734:3;17730:12;17723:19;;17382:366;;;:::o;17754:419::-;17920:4;17958:2;17947:9;17943:18;17935:26;;18007:9;18001:4;17997:20;17993:1;17982:9;17978:17;17971:47;18035:131;18161:4;18035:131;:::i;:::-;18027:139;;17754:419;;;:::o;18179:148::-;18281:11;18318:3;18303:18;;18179:148;;;;:::o;18333:377::-;18439:3;18467:39;18500:5;18467:39;:::i;:::-;18522:89;18604:6;18599:3;18522:89;:::i;:::-;18515:96;;18620:52;18665:6;18660:3;18653:4;18646:5;18642:16;18620:52;:::i;:::-;18697:6;18692:3;18688:16;18681:23;;18443:267;18333:377;;;;:::o;18716:435::-;18896:3;18918:95;19009:3;19000:6;18918:95;:::i;:::-;18911:102;;19030:95;19121:3;19112:6;19030:95;:::i;:::-;19023:102;;19142:3;19135:10;;18716:435;;;;;:::o;19157:225::-;19297:34;19293:1;19285:6;19281:14;19274:58;19366:8;19361:2;19353:6;19349:15;19342:33;19157:225;:::o;19388:366::-;19530:3;19551:67;19615:2;19610:3;19551:67;:::i;:::-;19544:74;;19627:93;19716:3;19627:93;:::i;:::-;19745:2;19740:3;19736:12;19729:19;;19388:366;;;:::o;19760:419::-;19926:4;19964:2;19953:9;19949:18;19941:26;;20013:9;20007:4;20003:20;19999:1;19988:9;19984:17;19977:47;20041:131;20167:4;20041:131;:::i;:::-;20033:139;;19760:419;;;:::o;20185:182::-;20325:34;20321:1;20313:6;20309:14;20302:58;20185:182;:::o;20373:366::-;20515:3;20536:67;20600:2;20595:3;20536:67;:::i;:::-;20529:74;;20612:93;20701:3;20612:93;:::i;:::-;20730:2;20725:3;20721:12;20714:19;;20373:366;;;:::o;20745:419::-;20911:4;20949:2;20938:9;20934:18;20926:26;;20998:9;20992:4;20988:20;20984:1;20973:9;20969:17;20962:47;21026:131;21152:4;21026:131;:::i;:::-;21018:139;;20745:419;;;:::o;21170:98::-;21221:6;21255:5;21249:12;21239:22;;21170:98;;;:::o;21274:168::-;21357:11;21391:6;21386:3;21379:19;21431:4;21426:3;21422:14;21407:29;;21274:168;;;;:::o;21448:360::-;21534:3;21562:38;21594:5;21562:38;:::i;:::-;21616:70;21679:6;21674:3;21616:70;:::i;:::-;21609:77;;21695:52;21740:6;21735:3;21728:4;21721:5;21717:16;21695:52;:::i;:::-;21772:29;21794:6;21772:29;:::i;:::-;21767:3;21763:39;21756:46;;21538:270;21448:360;;;;:::o;21814:640::-;22009:4;22047:3;22036:9;22032:19;22024:27;;22061:71;22129:1;22118:9;22114:17;22105:6;22061:71;:::i;:::-;22142:72;22210:2;22199:9;22195:18;22186:6;22142:72;:::i;:::-;22224;22292:2;22281:9;22277:18;22268:6;22224:72;:::i;:::-;22343:9;22337:4;22333:20;22328:2;22317:9;22313:18;22306:48;22371:76;22442:4;22433:6;22371:76;:::i;:::-;22363:84;;21814:640;;;;;;;:::o;22460:141::-;22516:5;22547:6;22541:13;22532:22;;22563:32;22589:5;22563:32;:::i;:::-;22460:141;;;;:::o;22607:349::-;22676:6;22725:2;22713:9;22704:7;22700:23;22696:32;22693:119;;;22731:79;;:::i;:::-;22693:119;22851:1;22876:63;22931:7;22922:6;22911:9;22907:22;22876:63;:::i;:::-;22866:73;;22822:127;22607:349;;;;:::o;22962:233::-;23001:3;23024:24;23042:5;23024:24;:::i;:::-;23015:33;;23070:66;23063:5;23060:77;23057:103;;;23140:18;;:::i;:::-;23057:103;23187:1;23180:5;23176:13;23169:20;;22962:233;;;:::o;23201:191::-;23241:4;23261:20;23279:1;23261:20;:::i;:::-;23256:25;;23295:20;23313:1;23295:20;:::i;:::-;23290:25;;23334:1;23331;23328:8;23325:34;;;23339:18;;:::i;:::-;23325:34;23384:1;23381;23377:9;23369:17;;23201:191;;;;:::o;23398:176::-;23430:1;23447:20;23465:1;23447:20;:::i;:::-;23442:25;;23481:20;23499:1;23481:20;:::i;:::-;23476:25;;23520:1;23510:35;;23525:18;;:::i;:::-;23510:35;23566:1;23563;23559:9;23554:14;;23398:176;;;;:::o;23580:305::-;23620:3;23639:20;23657:1;23639:20;:::i;:::-;23634:25;;23673:20;23691:1;23673:20;:::i;:::-;23668:25;;23827:1;23759:66;23755:74;23752:1;23749:81;23746:107;;;23833:18;;:::i;:::-;23746:107;23877:1;23874;23870:9;23863:16;;23580:305;;;;:::o;23891:180::-;23939:77;23936:1;23929:88;24036:4;24033:1;24026:15;24060:4;24057:1;24050:15

Swarm Source

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