ETH Price: $3,475.58 (-1.20%)
Gas: 4 Gwei

Token

June22?? (June22)
 

Overview

Max Total Supply

9,979 June22

Holders

592

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 June22
0x7f9f61f5ccd313ba77959f394fb4ef03a9b7ca7f
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:
June22

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

        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 This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.4;




contract June22 is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    mapping(address => uint256) public addressMintCount;

    uint256 public maxMintAmountPerWallet = 50;
    uint256 public price = 0 ether;
    uint256 public maxSupply = 10000;
    string public uriPrefix;
    string public uriSuffix = ".json";
    string public hiddenMetadataUri = "ipfs://QmZ4npUU1oSv926E1L4KLZEkfgvJLPJECvNibc7aP9jvFV/hidden.json";
    bool public paused = true;
    bool public revealed = false;

    constructor()
        ERC721A("June22??", "June22")
    {}

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 &&
                addressMintCount[msg.sender] + _mintAmount <=
                maxMintAmountPerWallet,
            "Amount bigger than allowed max mint!"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        require(msg.value >= price * _mintAmount, "Insufficient funds!");
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
        mintPriceCompliance(_mintAmount)
    {
        require(!paused, "The contract is paused!");
        _safeMint(_msgSender(), _mintAmount);
        addressMintCount[_msgSender()] =
            addressMintCount[_msgSender()] +
            _mintAmount;
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex
        ) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];
            if (!ownership.burned) {
                if (ownership.addr != address(0)) {
                    latestOwnerAddress = ownership.addr;
                }
                if (latestOwnerAddress == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

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

    function setmaxMintPerWallet(uint256 _maxMintAmountPerWallet)
        public
        onlyOwner
    {
        maxMintAmountPerWallet = _maxMintAmountPerWallet;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerWallet","type":"uint256"}],"name":"setmaxMintPerWallet","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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526032600b556000600c55612710600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f90805190602001906200006192919062000293565b506040518060800160405280604181526020016200465660419139601090805190602001906200009392919062000293565b506001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000d757600080fd5b506040518060400160405280600881526020017f4a756e6532323f3f0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4a756e653232000000000000000000000000000000000000000000000000000081525081600290805190602001906200015c92919062000293565b5080600390805190602001906200017592919062000293565b5062000186620001bc60201b60201c565b6000819055505050620001ae620001a2620001c560201b60201c565b620001cd60201b60201c565b6001600981905550620003a8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a19062000343565b90600052602060002090601f016020900481019282620002c5576000855562000311565b82601f10620002e057805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000310578251825591602001919060010190620002f3565b5b50905062000320919062000324565b5090565b5b808211156200033f57600081600090555060010162000325565b5090565b600060028204905060018216806200035c57607f821691505b6020821081141562000373576200037262000379565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61429e80620003b86000396000f3fe60806040526004361061021a5760003560e01c80636a2dae0711610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107b0578063e0a80853146107db578063e985e9c514610804578063efbd73f414610841578063f2fde38b1461086a5761021a565b8063a22cb465146106cb578063a45ba8e7146106f4578063b88d4fde1461071f578063bc951b9114610748578063c87b56dd146107735761021a565b80638da5cb5b116100f25780638da5cb5b1461060557806391b7f5ed1461063057806395d89b4114610659578063a035b1fe14610684578063a0712d68146106af5761021a565b80636a2dae071461055f57806370a0823114610588578063715018a6146105c55780637ec4a659146105dc5761021a565b80633ccfd60b116101a6578063518302271161017557806351830227146104765780635503a0e8146104a15780635c975abb146104cc57806362b99ad4146104f75780636352211e146105225761021a565b80633ccfd60b146103d057806342842e0e146103e7578063438b6300146104105780634fdd43cb1461044d5761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806316c38b3c1461031657806318160ddd1461033f5780631ba4f67d1461036a57806323b872dd146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613589565b610893565b6040516102539190613a5f565b60405180910390f35b34801561026857600080fd5b50610271610975565b60405161027e9190613a7a565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061361c565b610a07565b6040516102bb91906139d6565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613524565b610a83565b005b3480156102f957600080fd5b50610314600480360381019061030f91906135db565b610b8e565b005b34801561032257600080fd5b5061033d60048036038101906103389190613560565b610c24565b005b34801561034b57600080fd5b50610354610cbd565b6040516103619190613b9c565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c91906133b9565b610cd4565b60405161039e9190613b9c565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c9919061341e565b610cec565b005b3480156103dc57600080fd5b506103e5610cfc565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061341e565b610e4e565b005b34801561041c57600080fd5b50610437600480360381019061043291906133b9565b610e6e565b6040516104449190613a3d565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906135db565b6110ce565b005b34801561048257600080fd5b5061048b611164565b6040516104989190613a5f565b60405180910390f35b3480156104ad57600080fd5b506104b6611177565b6040516104c39190613a7a565b60405180910390f35b3480156104d857600080fd5b506104e1611205565b6040516104ee9190613a5f565b60405180910390f35b34801561050357600080fd5b5061050c611218565b6040516105199190613a7a565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061361c565b6112a6565b60405161055691906139d6565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061361c565b6112bc565b005b34801561059457600080fd5b506105af60048036038101906105aa91906133b9565b611342565b6040516105bc9190613b9c565b60405180910390f35b3480156105d157600080fd5b506105da611412565b005b3480156105e857600080fd5b5061060360048036038101906105fe91906135db565b61149a565b005b34801561061157600080fd5b5061061a611530565b60405161062791906139d6565b60405180910390f35b34801561063c57600080fd5b506106576004803603810190610652919061361c565b61155a565b005b34801561066557600080fd5b5061066e6115e0565b60405161067b9190613a7a565b60405180910390f35b34801561069057600080fd5b50610699611672565b6040516106a69190613b9c565b60405180910390f35b6106c960048036038101906106c4919061361c565b611678565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906134e8565b6118be565b005b34801561070057600080fd5b50610709611a36565b6040516107169190613a7a565b60405180910390f35b34801561072b57600080fd5b506107466004803603810190610741919061346d565b611ac4565b005b34801561075457600080fd5b5061075d611b40565b60405161076a9190613b9c565b60405180910390f35b34801561077f57600080fd5b5061079a6004803603810190610795919061361c565b611b46565b6040516107a79190613a7a565b60405180910390f35b3480156107bc57600080fd5b506107c5611c9f565b6040516107d29190613b9c565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613560565b611ca5565b005b34801561081057600080fd5b5061082b600480360381019061082691906133e2565b611d3e565b6040516108389190613a5f565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613645565b611dd2565b005b34801561087657600080fd5b50610891600480360381019061088c91906133b9565b611f50565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82612048565b5b9050919050565b60606002805461098490613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613ea5565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a12826120b2565b610a48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8e826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b15612100565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b475750610b4581610b40612100565b611d3e565b155b15610b7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b89838383612108565b505050565b610b96612100565b73ffffffffffffffffffffffffffffffffffffffff16610bb4611530565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613adc565b60405180910390fd5b80600f9080519060200190610c2092919061319a565b5050565b610c2c612100565b73ffffffffffffffffffffffffffffffffffffffff16610c4a611530565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613adc565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610cc76121ba565b6001546000540303905090565b600a6020528060005260406000206000915090505481565b610cf78383836121c3565b505050565b610d04612100565b73ffffffffffffffffffffffffffffffffffffffff16610d22611530565b73ffffffffffffffffffffffffffffffffffffffff1614610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90613adc565b60405180910390fd5b60026009541415610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590613b5c565b60405180910390fd5b60026009819055506000610dd0611530565b73ffffffffffffffffffffffffffffffffffffffff1647604051610df3906139c1565b60006040518083038185875af1925050503d8060008114610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b5050905080610e4357600080fd5b506001600981905550565b610e6983838360405180602001604052806000815250611ac4565b505050565b60606000610e7b83611342565b905060008167ffffffffffffffff811115610ebf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610eed5781602001602082028036833780820191505090505b5090506000610efa6121ba565b90506000805b8482108015610f10575060005483105b156110c1576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110ad57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461102357806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ac5783858481518110611091577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505082806110a890613f08565b9350505b5b83806110b890613f08565b94505050610f00565b8395505050505050919050565b6110d6612100565b73ffffffffffffffffffffffffffffffffffffffff166110f4611530565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190613adc565b60405180910390fd5b806010908051906020019061116092919061319a565b5050565b601160019054906101000a900460ff1681565b600f805461118490613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546111b090613ea5565b80156111fd5780601f106111d2576101008083540402835291602001916111fd565b820191906000526020600020905b8154815290600101906020018083116111e057829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600e805461122590613ea5565b80601f016020809104026020016040519081016040528092919081815260200182805461125190613ea5565b801561129e5780601f106112735761010080835404028352916020019161129e565b820191906000526020600020905b81548152906001019060200180831161128157829003601f168201915b505050505081565b60006112b182612679565b600001519050919050565b6112c4612100565b73ffffffffffffffffffffffffffffffffffffffff166112e2611530565b73ffffffffffffffffffffffffffffffffffffffff1614611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613adc565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113aa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61141a612100565b73ffffffffffffffffffffffffffffffffffffffff16611438611530565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613adc565b60405180910390fd5b6114986000612908565b565b6114a2612100565b73ffffffffffffffffffffffffffffffffffffffff166114c0611530565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613adc565b60405180910390fd5b80600e908051906020019061152c92919061319a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611562612100565b73ffffffffffffffffffffffffffffffffffffffff16611580611530565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613adc565b60405180910390fd5b80600c8190555050565b6060600380546115ef90613ea5565b80601f016020809104026020016040519081016040528092919081815260200182805461161b90613ea5565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b600c5481565b806000811180156116d55750600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d29190613cda565b11155b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90613a9c565b60405180910390fd5b600d5481611720610cbd565b61172a9190613cda565b111561176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290613b3c565b60405180910390fd5b8180600c5461177a9190613d61565b3410156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613b7c565b60405180910390fd5b601160009054906101000a900460ff161561180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613afc565b60405180910390fd5b61181d611817612100565b846129ce565b82600a600061182a612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186f9190613cda565b600a600061187b612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6118c6612100565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611938612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119e5612100565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a2a9190613a5f565b60405180910390a35050565b60108054611a4390613ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6f90613ea5565b8015611abc5780601f10611a9157610100808354040283529160200191611abc565b820191906000526020600020905b815481529060010190602001808311611a9f57829003601f168201915b505050505081565b611acf8484846121c3565b611aee8373ffffffffffffffffffffffffffffffffffffffff166129ec565b8015611b035750611b0184848484612a0f565b155b15611b3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b5481565b6060611b51826120b2565b611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613b1c565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611c3e5760108054611bb990613ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054611be590613ea5565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b50505050509050611c9a565b6000611c48612b6f565b90506000815111611c685760405180602001604052806000815250611c96565b80611c7284612c01565b600f604051602001611c8693929190613990565b6040516020818303038152906040525b9150505b919050565b600d5481565b611cad612100565b73ffffffffffffffffffffffffffffffffffffffff16611ccb611530565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613adc565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611e2f5750600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2c9190613cda565b11155b611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590613a9c565b60405180910390fd5b600d5481611e7a610cbd565b611e849190613cda565b1115611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613b3c565b60405180910390fd5b611ecd612100565b73ffffffffffffffffffffffffffffffffffffffff16611eeb611530565b73ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613adc565b60405180910390fd5b611f4b82846129ce565b505050565b611f58612100565b73ffffffffffffffffffffffffffffffffffffffff16611f76611530565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613adc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390613abc565b60405180910390fd5b61204581612908565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816120bd6121ba565b111580156120cc575060005482105b80156120f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006121ce82612679565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612239576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661225a612100565b73ffffffffffffffffffffffffffffffffffffffff161480612289575061228885612283612100565b611d3e565b5b806122ce5750612297612100565b73ffffffffffffffffffffffffffffffffffffffff166122b684610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612307576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561236e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237b8585856001612dae565b61238760008487612108565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561260757600054821461260657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126728585856001612db4565b5050505050565b612681613220565b60008290508061268f6121ba565b1115801561269e575060005481105b156128d1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128cf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127b3578092505050612903565b5b6001156128ce57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c9578092505050612903565b6127b4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129e8828260405180602001604052806000815250612dba565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a35612100565b8786866040518563ffffffff1660e01b8152600401612a5794939291906139f1565b602060405180830381600087803b158015612a7157600080fd5b505af1925050508015612aa257506040513d601f19601f82011682018060405250810190612a9f91906135b2565b60015b612b1c573d8060008114612ad2576040519150601f19603f3d011682016040523d82523d6000602084013e612ad7565b606091505b50600081511415612b14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612b7e90613ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054612baa90613ea5565b8015612bf75780601f10612bcc57610100808354040283529160200191612bf7565b820191906000526020600020905b815481529060010190602001808311612bda57829003601f168201915b5050505050905090565b60606000821415612c49576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da9565b600082905060005b60008214612c7b578080612c6490613f08565b915050600a82612c749190613d30565b9150612c51565b60008167ffffffffffffffff811115612cbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cef5781602001600182028036833780820191505090505b5090505b60008514612da257600182612d089190613dbb565b9150600a85612d179190613f51565b6030612d239190613cda565b60f81b818381518110612d5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d9b9190613d30565b9450612cf3565b8093505050505b919050565b50505050565b50505050565b612dc78383836001612dcc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e39576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e816000868387612dae565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561304b575061304a8773ffffffffffffffffffffffffffffffffffffffff166129ec565b5b15613111575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130c06000888480600101955088612a0f565b6130f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561305157826000541461310c57600080fd5b61317d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613112575b8160008190555050506131936000868387612db4565b5050505050565b8280546131a690613ea5565b90600052602060002090601f0160209004810192826131c8576000855561320f565b82601f106131e157805160ff191683800117855561320f565b8280016001018555821561320f579182015b8281111561320e5782518255916020019190600101906131f3565b5b50905061321c9190613263565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561327c576000816000905550600101613264565b5090565b600061329361328e84613bdc565b613bb7565b9050828152602081018484840111156132ab57600080fd5b6132b6848285613e63565b509392505050565b60006132d16132cc84613c0d565b613bb7565b9050828152602081018484840111156132e957600080fd5b6132f4848285613e63565b509392505050565b60008135905061330b8161420c565b92915050565b60008135905061332081614223565b92915050565b6000813590506133358161423a565b92915050565b60008151905061334a8161423a565b92915050565b600082601f83011261336157600080fd5b8135613371848260208601613280565b91505092915050565b600082601f83011261338b57600080fd5b813561339b8482602086016132be565b91505092915050565b6000813590506133b381614251565b92915050565b6000602082840312156133cb57600080fd5b60006133d9848285016132fc565b91505092915050565b600080604083850312156133f557600080fd5b6000613403858286016132fc565b9250506020613414858286016132fc565b9150509250929050565b60008060006060848603121561343357600080fd5b6000613441868287016132fc565b9350506020613452868287016132fc565b9250506040613463868287016133a4565b9150509250925092565b6000806000806080858703121561348357600080fd5b6000613491878288016132fc565b94505060206134a2878288016132fc565b93505060406134b3878288016133a4565b925050606085013567ffffffffffffffff8111156134d057600080fd5b6134dc87828801613350565b91505092959194509250565b600080604083850312156134fb57600080fd5b6000613509858286016132fc565b925050602061351a85828601613311565b9150509250929050565b6000806040838503121561353757600080fd5b6000613545858286016132fc565b9250506020613556858286016133a4565b9150509250929050565b60006020828403121561357257600080fd5b600061358084828501613311565b91505092915050565b60006020828403121561359b57600080fd5b60006135a984828501613326565b91505092915050565b6000602082840312156135c457600080fd5b60006135d28482850161333b565b91505092915050565b6000602082840312156135ed57600080fd5b600082013567ffffffffffffffff81111561360757600080fd5b6136138482850161337a565b91505092915050565b60006020828403121561362e57600080fd5b600061363c848285016133a4565b91505092915050565b6000806040838503121561365857600080fd5b6000613666858286016133a4565b9250506020613677858286016132fc565b9150509250929050565b600061368d8383613972565b60208301905092915050565b6136a281613def565b82525050565b60006136b382613c63565b6136bd8185613c91565b93506136c883613c3e565b8060005b838110156136f95781516136e08882613681565b97506136eb83613c84565b9250506001810190506136cc565b5085935050505092915050565b61370f81613e01565b82525050565b600061372082613c6e565b61372a8185613ca2565b935061373a818560208601613e72565b6137438161403e565b840191505092915050565b600061375982613c79565b6137638185613cbe565b9350613773818560208601613e72565b61377c8161403e565b840191505092915050565b600061379282613c79565b61379c8185613ccf565b93506137ac818560208601613e72565b80840191505092915050565b600081546137c581613ea5565b6137cf8186613ccf565b945060018216600081146137ea57600181146137fb5761382e565b60ff1983168652818601935061382e565b61380485613c4e565b60005b8381101561382657815481890152600182019150602081019050613807565b838801955050505b50505092915050565b6000613844602483613cbe565b915061384f8261404f565b604082019050919050565b6000613867602683613cbe565b91506138728261409e565b604082019050919050565b600061388a602083613cbe565b9150613895826140ed565b602082019050919050565b60006138ad601783613cbe565b91506138b882614116565b602082019050919050565b60006138d0602f83613cbe565b91506138db8261413f565b604082019050919050565b60006138f3600083613cb3565b91506138fe8261418e565b600082019050919050565b6000613916601483613cbe565b915061392182614191565b602082019050919050565b6000613939601f83613cbe565b9150613944826141ba565b602082019050919050565b600061395c601383613cbe565b9150613967826141e3565b602082019050919050565b61397b81613e59565b82525050565b61398a81613e59565b82525050565b600061399c8286613787565b91506139a88285613787565b91506139b482846137b8565b9150819050949350505050565b60006139cc826138e6565b9150819050919050565b60006020820190506139eb6000830184613699565b92915050565b6000608082019050613a066000830187613699565b613a136020830186613699565b613a206040830185613981565b8181036060830152613a328184613715565b905095945050505050565b60006020820190508181036000830152613a5781846136a8565b905092915050565b6000602082019050613a746000830184613706565b92915050565b60006020820190508181036000830152613a94818461374e565b905092915050565b60006020820190508181036000830152613ab581613837565b9050919050565b60006020820190508181036000830152613ad58161385a565b9050919050565b60006020820190508181036000830152613af58161387d565b9050919050565b60006020820190508181036000830152613b15816138a0565b9050919050565b60006020820190508181036000830152613b35816138c3565b9050919050565b60006020820190508181036000830152613b5581613909565b9050919050565b60006020820190508181036000830152613b758161392c565b9050919050565b60006020820190508181036000830152613b958161394f565b9050919050565b6000602082019050613bb16000830184613981565b92915050565b6000613bc1613bd2565b9050613bcd8282613ed7565b919050565b6000604051905090565b600067ffffffffffffffff821115613bf757613bf661400f565b5b613c008261403e565b9050602081019050919050565b600067ffffffffffffffff821115613c2857613c2761400f565b5b613c318261403e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ce582613e59565b9150613cf083613e59565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2557613d24613f82565b5b828201905092915050565b6000613d3b82613e59565b9150613d4683613e59565b925082613d5657613d55613fb1565b5b828204905092915050565b6000613d6c82613e59565b9150613d7783613e59565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db057613daf613f82565b5b828202905092915050565b6000613dc682613e59565b9150613dd183613e59565b925082821015613de457613de3613f82565b5b828203905092915050565b6000613dfa82613e39565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e90578082015181840152602081019050613e75565b83811115613e9f576000848401525b50505050565b60006002820490506001821680613ebd57607f821691505b60208210811415613ed157613ed0613fe0565b5b50919050565b613ee08261403e565b810181811067ffffffffffffffff82111715613eff57613efe61400f565b5b80604052505050565b6000613f1382613e59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4657613f45613f82565b5b600182019050919050565b6000613f5c82613e59565b9150613f6783613e59565b925082613f7757613f76613fb1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f416d6f756e7420626967676572207468616e20616c6c6f776564206d6178206d60008201527f696e742100000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61421581613def565b811461422057600080fd5b50565b61422c81613e01565b811461423757600080fd5b50565b61424381613e0d565b811461424e57600080fd5b50565b61425a81613e59565b811461426557600080fd5b5056fea2646970667358221220132ee1709ccf9fba7cfeaefb74b9b759978aba4ad4788448dc3e4c671ca332bb64736f6c63430008040033697066733a2f2f516d5a346e705555316f537639323645314c344b4c5a456b6667764a4c504a4543764e696263376150396a7646562f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636a2dae0711610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107b0578063e0a80853146107db578063e985e9c514610804578063efbd73f414610841578063f2fde38b1461086a5761021a565b8063a22cb465146106cb578063a45ba8e7146106f4578063b88d4fde1461071f578063bc951b9114610748578063c87b56dd146107735761021a565b80638da5cb5b116100f25780638da5cb5b1461060557806391b7f5ed1461063057806395d89b4114610659578063a035b1fe14610684578063a0712d68146106af5761021a565b80636a2dae071461055f57806370a0823114610588578063715018a6146105c55780637ec4a659146105dc5761021a565b80633ccfd60b116101a6578063518302271161017557806351830227146104765780635503a0e8146104a15780635c975abb146104cc57806362b99ad4146104f75780636352211e146105225761021a565b80633ccfd60b146103d057806342842e0e146103e7578063438b6300146104105780634fdd43cb1461044d5761021a565b806316ba10e0116101ed57806316ba10e0146102ed57806316c38b3c1461031657806318160ddd1461033f5780631ba4f67d1461036a57806323b872dd146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613589565b610893565b6040516102539190613a5f565b60405180910390f35b34801561026857600080fd5b50610271610975565b60405161027e9190613a7a565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061361c565b610a07565b6040516102bb91906139d6565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613524565b610a83565b005b3480156102f957600080fd5b50610314600480360381019061030f91906135db565b610b8e565b005b34801561032257600080fd5b5061033d60048036038101906103389190613560565b610c24565b005b34801561034b57600080fd5b50610354610cbd565b6040516103619190613b9c565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c91906133b9565b610cd4565b60405161039e9190613b9c565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c9919061341e565b610cec565b005b3480156103dc57600080fd5b506103e5610cfc565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061341e565b610e4e565b005b34801561041c57600080fd5b50610437600480360381019061043291906133b9565b610e6e565b6040516104449190613a3d565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906135db565b6110ce565b005b34801561048257600080fd5b5061048b611164565b6040516104989190613a5f565b60405180910390f35b3480156104ad57600080fd5b506104b6611177565b6040516104c39190613a7a565b60405180910390f35b3480156104d857600080fd5b506104e1611205565b6040516104ee9190613a5f565b60405180910390f35b34801561050357600080fd5b5061050c611218565b6040516105199190613a7a565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061361c565b6112a6565b60405161055691906139d6565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061361c565b6112bc565b005b34801561059457600080fd5b506105af60048036038101906105aa91906133b9565b611342565b6040516105bc9190613b9c565b60405180910390f35b3480156105d157600080fd5b506105da611412565b005b3480156105e857600080fd5b5061060360048036038101906105fe91906135db565b61149a565b005b34801561061157600080fd5b5061061a611530565b60405161062791906139d6565b60405180910390f35b34801561063c57600080fd5b506106576004803603810190610652919061361c565b61155a565b005b34801561066557600080fd5b5061066e6115e0565b60405161067b9190613a7a565b60405180910390f35b34801561069057600080fd5b50610699611672565b6040516106a69190613b9c565b60405180910390f35b6106c960048036038101906106c4919061361c565b611678565b005b3480156106d757600080fd5b506106f260048036038101906106ed91906134e8565b6118be565b005b34801561070057600080fd5b50610709611a36565b6040516107169190613a7a565b60405180910390f35b34801561072b57600080fd5b506107466004803603810190610741919061346d565b611ac4565b005b34801561075457600080fd5b5061075d611b40565b60405161076a9190613b9c565b60405180910390f35b34801561077f57600080fd5b5061079a6004803603810190610795919061361c565b611b46565b6040516107a79190613a7a565b60405180910390f35b3480156107bc57600080fd5b506107c5611c9f565b6040516107d29190613b9c565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613560565b611ca5565b005b34801561081057600080fd5b5061082b600480360381019061082691906133e2565b611d3e565b6040516108389190613a5f565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613645565b611dd2565b005b34801561087657600080fd5b50610891600480360381019061088c91906133b9565b611f50565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82612048565b5b9050919050565b60606002805461098490613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090613ea5565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b6000610a12826120b2565b610a48576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8e826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b15612100565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b475750610b4581610b40612100565b611d3e565b155b15610b7e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b89838383612108565b505050565b610b96612100565b73ffffffffffffffffffffffffffffffffffffffff16610bb4611530565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0190613adc565b60405180910390fd5b80600f9080519060200190610c2092919061319a565b5050565b610c2c612100565b73ffffffffffffffffffffffffffffffffffffffff16610c4a611530565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613adc565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000610cc76121ba565b6001546000540303905090565b600a6020528060005260406000206000915090505481565b610cf78383836121c3565b505050565b610d04612100565b73ffffffffffffffffffffffffffffffffffffffff16610d22611530565b73ffffffffffffffffffffffffffffffffffffffff1614610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90613adc565b60405180910390fd5b60026009541415610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590613b5c565b60405180910390fd5b60026009819055506000610dd0611530565b73ffffffffffffffffffffffffffffffffffffffff1647604051610df3906139c1565b60006040518083038185875af1925050503d8060008114610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b5050905080610e4357600080fd5b506001600981905550565b610e6983838360405180602001604052806000815250611ac4565b505050565b60606000610e7b83611342565b905060008167ffffffffffffffff811115610ebf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610eed5781602001602082028036833780820191505090505b5090506000610efa6121ba565b90506000805b8482108015610f10575060005483105b156110c1576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110ad57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461102357806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ac5783858481518110611091577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505082806110a890613f08565b9350505b5b83806110b890613f08565b94505050610f00565b8395505050505050919050565b6110d6612100565b73ffffffffffffffffffffffffffffffffffffffff166110f4611530565b73ffffffffffffffffffffffffffffffffffffffff161461114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190613adc565b60405180910390fd5b806010908051906020019061116092919061319a565b5050565b601160019054906101000a900460ff1681565b600f805461118490613ea5565b80601f01602080910402602001604051908101604052809291908181526020018280546111b090613ea5565b80156111fd5780601f106111d2576101008083540402835291602001916111fd565b820191906000526020600020905b8154815290600101906020018083116111e057829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600e805461122590613ea5565b80601f016020809104026020016040519081016040528092919081815260200182805461125190613ea5565b801561129e5780601f106112735761010080835404028352916020019161129e565b820191906000526020600020905b81548152906001019060200180831161128157829003601f168201915b505050505081565b60006112b182612679565b600001519050919050565b6112c4612100565b73ffffffffffffffffffffffffffffffffffffffff166112e2611530565b73ffffffffffffffffffffffffffffffffffffffff1614611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613adc565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113aa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61141a612100565b73ffffffffffffffffffffffffffffffffffffffff16611438611530565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590613adc565b60405180910390fd5b6114986000612908565b565b6114a2612100565b73ffffffffffffffffffffffffffffffffffffffff166114c0611530565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613adc565b60405180910390fd5b80600e908051906020019061152c92919061319a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611562612100565b73ffffffffffffffffffffffffffffffffffffffff16611580611530565b73ffffffffffffffffffffffffffffffffffffffff16146115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613adc565b60405180910390fd5b80600c8190555050565b6060600380546115ef90613ea5565b80601f016020809104026020016040519081016040528092919081815260200182805461161b90613ea5565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b600c5481565b806000811180156116d55750600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d29190613cda565b11155b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90613a9c565b60405180910390fd5b600d5481611720610cbd565b61172a9190613cda565b111561176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290613b3c565b60405180910390fd5b8180600c5461177a9190613d61565b3410156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613b7c565b60405180910390fd5b601160009054906101000a900460ff161561180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613afc565b60405180910390fd5b61181d611817612100565b846129ce565b82600a600061182a612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461186f9190613cda565b600a600061187b612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6118c6612100565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611938612100565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119e5612100565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a2a9190613a5f565b60405180910390a35050565b60108054611a4390613ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6f90613ea5565b8015611abc5780601f10611a9157610100808354040283529160200191611abc565b820191906000526020600020905b815481529060010190602001808311611a9f57829003601f168201915b505050505081565b611acf8484846121c3565b611aee8373ffffffffffffffffffffffffffffffffffffffff166129ec565b8015611b035750611b0184848484612a0f565b155b15611b3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b5481565b6060611b51826120b2565b611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613b1c565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611c3e5760108054611bb990613ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054611be590613ea5565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b50505050509050611c9a565b6000611c48612b6f565b90506000815111611c685760405180602001604052806000815250611c96565b80611c7284612c01565b600f604051602001611c8693929190613990565b6040516020818303038152906040525b9150505b919050565b600d5481565b611cad612100565b73ffffffffffffffffffffffffffffffffffffffff16611ccb611530565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613adc565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611e2f5750600b5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2c9190613cda565b11155b611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590613a9c565b60405180910390fd5b600d5481611e7a610cbd565b611e849190613cda565b1115611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613b3c565b60405180910390fd5b611ecd612100565b73ffffffffffffffffffffffffffffffffffffffff16611eeb611530565b73ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613adc565b60405180910390fd5b611f4b82846129ce565b505050565b611f58612100565b73ffffffffffffffffffffffffffffffffffffffff16611f76611530565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613adc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390613abc565b60405180910390fd5b61204581612908565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816120bd6121ba565b111580156120cc575060005482105b80156120f9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006121ce82612679565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612239576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661225a612100565b73ffffffffffffffffffffffffffffffffffffffff161480612289575061228885612283612100565b611d3e565b5b806122ce5750612297612100565b73ffffffffffffffffffffffffffffffffffffffff166122b684610a07565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612307576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561236e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237b8585856001612dae565b61238760008487612108565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561260757600054821461260657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126728585856001612db4565b5050505050565b612681613220565b60008290508061268f6121ba565b1115801561269e575060005481105b156128d1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128cf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127b3578092505050612903565b5b6001156128ce57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128c9578092505050612903565b6127b4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129e8828260405180602001604052806000815250612dba565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a35612100565b8786866040518563ffffffff1660e01b8152600401612a5794939291906139f1565b602060405180830381600087803b158015612a7157600080fd5b505af1925050508015612aa257506040513d601f19601f82011682018060405250810190612a9f91906135b2565b60015b612b1c573d8060008114612ad2576040519150601f19603f3d011682016040523d82523d6000602084013e612ad7565b606091505b50600081511415612b14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054612b7e90613ea5565b80601f0160208091040260200160405190810160405280929190818152602001828054612baa90613ea5565b8015612bf75780601f10612bcc57610100808354040283529160200191612bf7565b820191906000526020600020905b815481529060010190602001808311612bda57829003601f168201915b5050505050905090565b60606000821415612c49576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da9565b600082905060005b60008214612c7b578080612c6490613f08565b915050600a82612c749190613d30565b9150612c51565b60008167ffffffffffffffff811115612cbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cef5781602001600182028036833780820191505090505b5090505b60008514612da257600182612d089190613dbb565b9150600a85612d179190613f51565b6030612d239190613cda565b60f81b818381518110612d5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d9b9190613d30565b9450612cf3565b8093505050505b919050565b50505050565b50505050565b612dc78383836001612dcc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e39576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e74576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e816000868387612dae565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561304b575061304a8773ffffffffffffffffffffffffffffffffffffffff166129ec565b5b15613111575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130c06000888480600101955088612a0f565b6130f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561305157826000541461310c57600080fd5b61317d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613112575b8160008190555050506131936000868387612db4565b5050505050565b8280546131a690613ea5565b90600052602060002090601f0160209004810192826131c8576000855561320f565b82601f106131e157805160ff191683800117855561320f565b8280016001018555821561320f579182015b8281111561320e5782518255916020019190600101906131f3565b5b50905061321c9190613263565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561327c576000816000905550600101613264565b5090565b600061329361328e84613bdc565b613bb7565b9050828152602081018484840111156132ab57600080fd5b6132b6848285613e63565b509392505050565b60006132d16132cc84613c0d565b613bb7565b9050828152602081018484840111156132e957600080fd5b6132f4848285613e63565b509392505050565b60008135905061330b8161420c565b92915050565b60008135905061332081614223565b92915050565b6000813590506133358161423a565b92915050565b60008151905061334a8161423a565b92915050565b600082601f83011261336157600080fd5b8135613371848260208601613280565b91505092915050565b600082601f83011261338b57600080fd5b813561339b8482602086016132be565b91505092915050565b6000813590506133b381614251565b92915050565b6000602082840312156133cb57600080fd5b60006133d9848285016132fc565b91505092915050565b600080604083850312156133f557600080fd5b6000613403858286016132fc565b9250506020613414858286016132fc565b9150509250929050565b60008060006060848603121561343357600080fd5b6000613441868287016132fc565b9350506020613452868287016132fc565b9250506040613463868287016133a4565b9150509250925092565b6000806000806080858703121561348357600080fd5b6000613491878288016132fc565b94505060206134a2878288016132fc565b93505060406134b3878288016133a4565b925050606085013567ffffffffffffffff8111156134d057600080fd5b6134dc87828801613350565b91505092959194509250565b600080604083850312156134fb57600080fd5b6000613509858286016132fc565b925050602061351a85828601613311565b9150509250929050565b6000806040838503121561353757600080fd5b6000613545858286016132fc565b9250506020613556858286016133a4565b9150509250929050565b60006020828403121561357257600080fd5b600061358084828501613311565b91505092915050565b60006020828403121561359b57600080fd5b60006135a984828501613326565b91505092915050565b6000602082840312156135c457600080fd5b60006135d28482850161333b565b91505092915050565b6000602082840312156135ed57600080fd5b600082013567ffffffffffffffff81111561360757600080fd5b6136138482850161337a565b91505092915050565b60006020828403121561362e57600080fd5b600061363c848285016133a4565b91505092915050565b6000806040838503121561365857600080fd5b6000613666858286016133a4565b9250506020613677858286016132fc565b9150509250929050565b600061368d8383613972565b60208301905092915050565b6136a281613def565b82525050565b60006136b382613c63565b6136bd8185613c91565b93506136c883613c3e565b8060005b838110156136f95781516136e08882613681565b97506136eb83613c84565b9250506001810190506136cc565b5085935050505092915050565b61370f81613e01565b82525050565b600061372082613c6e565b61372a8185613ca2565b935061373a818560208601613e72565b6137438161403e565b840191505092915050565b600061375982613c79565b6137638185613cbe565b9350613773818560208601613e72565b61377c8161403e565b840191505092915050565b600061379282613c79565b61379c8185613ccf565b93506137ac818560208601613e72565b80840191505092915050565b600081546137c581613ea5565b6137cf8186613ccf565b945060018216600081146137ea57600181146137fb5761382e565b60ff1983168652818601935061382e565b61380485613c4e565b60005b8381101561382657815481890152600182019150602081019050613807565b838801955050505b50505092915050565b6000613844602483613cbe565b915061384f8261404f565b604082019050919050565b6000613867602683613cbe565b91506138728261409e565b604082019050919050565b600061388a602083613cbe565b9150613895826140ed565b602082019050919050565b60006138ad601783613cbe565b91506138b882614116565b602082019050919050565b60006138d0602f83613cbe565b91506138db8261413f565b604082019050919050565b60006138f3600083613cb3565b91506138fe8261418e565b600082019050919050565b6000613916601483613cbe565b915061392182614191565b602082019050919050565b6000613939601f83613cbe565b9150613944826141ba565b602082019050919050565b600061395c601383613cbe565b9150613967826141e3565b602082019050919050565b61397b81613e59565b82525050565b61398a81613e59565b82525050565b600061399c8286613787565b91506139a88285613787565b91506139b482846137b8565b9150819050949350505050565b60006139cc826138e6565b9150819050919050565b60006020820190506139eb6000830184613699565b92915050565b6000608082019050613a066000830187613699565b613a136020830186613699565b613a206040830185613981565b8181036060830152613a328184613715565b905095945050505050565b60006020820190508181036000830152613a5781846136a8565b905092915050565b6000602082019050613a746000830184613706565b92915050565b60006020820190508181036000830152613a94818461374e565b905092915050565b60006020820190508181036000830152613ab581613837565b9050919050565b60006020820190508181036000830152613ad58161385a565b9050919050565b60006020820190508181036000830152613af58161387d565b9050919050565b60006020820190508181036000830152613b15816138a0565b9050919050565b60006020820190508181036000830152613b35816138c3565b9050919050565b60006020820190508181036000830152613b5581613909565b9050919050565b60006020820190508181036000830152613b758161392c565b9050919050565b60006020820190508181036000830152613b958161394f565b9050919050565b6000602082019050613bb16000830184613981565b92915050565b6000613bc1613bd2565b9050613bcd8282613ed7565b919050565b6000604051905090565b600067ffffffffffffffff821115613bf757613bf661400f565b5b613c008261403e565b9050602081019050919050565b600067ffffffffffffffff821115613c2857613c2761400f565b5b613c318261403e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ce582613e59565b9150613cf083613e59565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d2557613d24613f82565b5b828201905092915050565b6000613d3b82613e59565b9150613d4683613e59565b925082613d5657613d55613fb1565b5b828204905092915050565b6000613d6c82613e59565b9150613d7783613e59565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db057613daf613f82565b5b828202905092915050565b6000613dc682613e59565b9150613dd183613e59565b925082821015613de457613de3613f82565b5b828203905092915050565b6000613dfa82613e39565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e90578082015181840152602081019050613e75565b83811115613e9f576000848401525b50505050565b60006002820490506001821680613ebd57607f821691505b60208210811415613ed157613ed0613fe0565b5b50919050565b613ee08261403e565b810181811067ffffffffffffffff82111715613eff57613efe61400f565b5b80604052505050565b6000613f1382613e59565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4657613f45613f82565b5b600182019050919050565b6000613f5c82613e59565b9150613f6783613e59565b925082613f7757613f76613fb1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f416d6f756e7420626967676572207468616e20616c6c6f776564206d6178206d60008201527f696e742100000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61421581613def565b811461422057600080fd5b50565b61422c81613e01565b811461423757600080fd5b50565b61424381613e0d565b811461424e57600080fd5b50565b61425a81613e59565b811461426557600080fd5b5056fea2646970667358221220132ee1709ccf9fba7cfeaefb74b9b759978aba4ad4788448dc3e4c671ca332bb64736f6c63430008040033

Deployed Bytecode Sourcemap

47572:4723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29761:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32874:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34377:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33940:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51809:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51923:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29010:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47666:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35242:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52014:160;;;;;;;;;;;;;:::i;:::-;;35483:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49315:999;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51526:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48061:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47881:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48029:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47851:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32682:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51349:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30130:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;51695:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6838:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51257:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33043:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47775:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48731:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34653:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47921:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35739:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47726:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50431:723;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47812:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51162:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35011:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49114:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29761:305;29863:4;29915:25;29900:40;;;:11;:40;;;;:105;;;;29972:33;29957:48;;;:11;:48;;;;29900:105;:158;;;;30022:36;30046:11;30022:23;:36::i;:::-;29900:158;29880:178;;29761:305;;;:::o;32874:100::-;32928:13;32961:5;32954:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32874:100;:::o;34377:204::-;34445:7;34470:16;34478:7;34470;:16::i;:::-;34465:64;;34495:34;;;;;;;;;;;;;;34465:64;34549:15;:24;34565:7;34549:24;;;;;;;;;;;;;;;;;;;;;34542:31;;34377:204;;;:::o;33940:371::-;34013:13;34029:24;34045:7;34029:15;:24::i;:::-;34013:40;;34074:5;34068:11;;:2;:11;;;34064:48;;;34088:24;;;;;;;;;;;;;;34064:48;34145:5;34129:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34155:37;34172:5;34179:12;:10;:12::i;:::-;34155:16;:37::i;:::-;34154:38;34129:63;34125:138;;;34216:35;;;;;;;;;;;;;;34125:138;34275:28;34284:2;34288:7;34297:5;34275:8;:28::i;:::-;33940:371;;;:::o;51809:106::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51897:10:::1;51885:9;:22;;;;;;;;;;;;:::i;:::-;;51809:106:::0;:::o;51923:83::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51992:6:::1;51983;;:15;;;;;;;;;;;;;;;;;;51923:83:::0;:::o;29010:303::-;29054:7;29279:15;:13;:15::i;:::-;29264:12;;29248:13;;:28;:46;29241:53;;29010:303;:::o;47666:51::-;;;;;;;;;;;;;;;;;:::o;35242:170::-;35376:28;35386:4;35392:2;35396:7;35376:9;:28::i;:::-;35242:170;;;:::o;52014:160::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;52076:7:::2;52097;:5;:7::i;:::-;52089:21;;52118;52089:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52075:69;;;52163:2;52155:11;;;::::0;::::2;;2574:1;1768::::1;2722:7;:22;;;;52014:160::o:0;35483:185::-;35621:39;35638:4;35644:2;35648:7;35621:39;;;;;;;;;;;;:16;:39::i;:::-;35483:185;;;:::o;49315:999::-;49402:16;49436:23;49462:17;49472:6;49462:9;:17::i;:::-;49436:43;;49490:30;49537:15;49523:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49490:63;;49564:22;49589:15;:13;:15::i;:::-;49564:40;;49615:23;49653:26;49692:584;49731:15;49713;:33;:67;;;;;49767:13;;49750:14;:30;49713:67;49692:584;;;49807:31;49841:11;:27;49853:14;49841:27;;;;;;;;;;;49807:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49888:9;:16;;;49883:351;;49955:1;49929:28;;:9;:14;;;:28;;;49925:112;;50003:9;:14;;;49982:35;;49925:112;50081:6;50059:28;;:18;:28;;;50055:164;;;50145:14;50112:13;50126:15;50112:30;;;;;;;;;;;;;;;;;;;;;:47;;;;;50182:17;;;;;:::i;:::-;;;;50055:164;49883:351;50248:16;;;;;:::i;:::-;;;;49692:584;;;;50293:13;50286:20;;;;;;;49315:999;;;:::o;51526:161::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51661:18:::1;51641:17;:38;;;;;;;;;;;;:::i;:::-;;51526:161:::0;:::o;48061:28::-;;;;;;;;;;;;;:::o;47881:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48029:25::-;;;;;;;;;;;;;:::o;47851:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32682:125::-;32746:7;32773:21;32786:7;32773:12;:21::i;:::-;:26;;;32766:33;;32682:125;;;:::o;51349:169::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51487:23:::1;51462:22;:48;;;;51349:169:::0;:::o;30130:206::-;30194:7;30235:1;30218:19;;:5;:19;;;30214:60;;;30246:28;;;;;;;;;;;;;;30214:60;30300:12;:19;30313:5;30300:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30292:36;;30285:43;;30130:206;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;51695:106::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51783:10:::1;51771:9;:22;;;;;;;;;;;;:::i;:::-;;51695:106:::0;:::o;6838:87::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;51257:84::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51327:6:::1;51319:5;:14;;;;51257:84:::0;:::o;33043:104::-;33099:13;33132:7;33125:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33043:104;:::o;47775:30::-;;;;:::o;48731:375::-;48823:11;48258:1;48244:11;:15;:121;;;;;48343:22;;48311:11;48280:16;:28;48297:10;48280:28;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:85;;48244:121;48222:207;;;;;;;;;;;;:::i;:::-;;;;;;;;;48493:9;;48478:11;48462:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48440:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48865:11:::1;48668;48660:5;;:19;;;;:::i;:::-;48647:9;:32;;48639:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48903:6:::2;;;;;;;;;;;48902:7;48894:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48948:36;48958:12;:10;:12::i;:::-;48972:11;48948:9;:36::i;:::-;49087:11;49041:16;:30;49058:12;:10;:12::i;:::-;49041:30;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;48995:16;:30;49012:12;:10;:12::i;:::-;48995:30;;;;;;;;;;;;;;;:103;;;;48561:1:::1;48731:375:::0;;:::o;34653:287::-;34764:12;:10;:12::i;:::-;34752:24;;:8;:24;;;34748:54;;;34785:17;;;;;;;;;;;;;;34748:54;34860:8;34815:18;:32;34834:12;:10;:12::i;:::-;34815:32;;;;;;;;;;;;;;;:42;34848:8;34815:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34913:8;34884:48;;34899:12;:10;:12::i;:::-;34884:48;;;34923:8;34884:48;;;;;;:::i;:::-;;;;;;;;34653:287;;:::o;47921:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35739:369::-;35906:28;35916:4;35922:2;35926:7;35906:9;:28::i;:::-;35949:15;:2;:13;;;:15::i;:::-;:76;;;;;35969:56;36000:4;36006:2;36010:7;36019:5;35969:30;:56::i;:::-;35968:57;35949:76;35945:156;;;36049:40;;;;;;;;;;;;;;35945:156;35739:369;;;;:::o;47726:42::-;;;;:::o;50431:723::-;50550:13;50603:17;50611:8;50603:7;:17::i;:::-;50581:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;50722:5;50710:17;;:8;;;;;;;;;;;:17;;;50706:74;;;50751:17;50744:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50706:74;50790:28;50821:10;:8;:10::i;:::-;50790:41;;50893:1;50868:14;50862:28;:32;:284;;;;;;;;;;;;;;;;;50986:14;51027:19;:8;:17;:19::i;:::-;51073:9;50943:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50862:284;50842:304;;;50431:723;;;;:::o;47812:32::-;;;;:::o;51162:87::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51235:6:::1;51224:8;;:17;;;;;;;;;;;;;;;;;;51162:87:::0;:::o;35011:164::-;35108:4;35132:18;:25;35151:5;35132:25;;;;;;;;;;;;;;;:35;35158:8;35132:35;;;;;;;;;;;;;;;;;;;;;;;;;35125:42;;35011:164;;;;:::o;49114:193::-;49218:11;48258:1;48244:11;:15;:121;;;;;48343:22;;48311:11;48280:16;:28;48297:10;48280:28;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:85;;48244:121;48222:207;;;;;;;;;;;;:::i;:::-;;;;;;;;;48493:9;;48478:11;48462:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48440:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;7069:12:::1;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49266:33:::2;49276:9;49287:11;49266:9;:33::i;:::-;49114:193:::0;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;19645:157::-;19730:4;19769:25;19754:40;;;:11;:40;;;;19747:47;;19645:157;;;:::o;36363:174::-;36420:4;36463:7;36444:15;:13;:15::i;:::-;:26;;:53;;;;;36484:13;;36474:7;:23;36444:53;:85;;;;;36502:11;:20;36514:7;36502:20;;;;;;;;;;;:27;;;;;;;;;;;;36501:28;36444:85;36437:92;;36363:174;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;44520:196::-;44662:2;44635:15;:24;44651:7;44635:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44700:7;44696:2;44680:28;;44689:5;44680:28;;;;;;;;;;;;44520:196;;;:::o;50322:101::-;50387:7;50414:1;50407:8;;50322:101;:::o;39463:2130::-;39578:35;39616:21;39629:7;39616:12;:21::i;:::-;39578:59;;39676:4;39654:26;;:13;:18;;;:26;;;39650:67;;39689:28;;;;;;;;;;;;;;39650:67;39730:22;39772:4;39756:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39793:36;39810:4;39816:12;:10;:12::i;:::-;39793:16;:36::i;:::-;39756:73;:126;;;;39870:12;:10;:12::i;:::-;39846:36;;:20;39858:7;39846:11;:20::i;:::-;:36;;;39756:126;39730:153;;39901:17;39896:66;;39927:35;;;;;;;;;;;;;;39896:66;39991:1;39977:16;;:2;:16;;;39973:52;;;40002:23;;;;;;;;;;;;;;39973:52;40038:43;40060:4;40066:2;40070:7;40079:1;40038:21;:43::i;:::-;40146:35;40163:1;40167:7;40176:4;40146:8;:35::i;:::-;40507:1;40477:12;:18;40490:4;40477:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40551:1;40523:12;:16;40536:2;40523:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40569:31;40603:11;:20;40615:7;40603:20;;;;;;;;;;;40569:54;;40654:2;40638:8;:13;;;:18;;;;;;;;;;;;;;;;;;40704:15;40671:8;:23;;;:49;;;;;;;;;;;;;;;;;;40972:19;41004:1;40994:7;:11;40972:33;;41020:31;41054:11;:24;41066:11;41054:24;;;;;;;;;;;41020:58;;41122:1;41097:27;;:8;:13;;;;;;;;;;;;:27;;;41093:384;;;41307:13;;41292:11;:28;41288:174;;41361:4;41345:8;:13;;;:20;;;;;;;;;;;;;;;;;;41414:13;:28;;;41388:8;:23;;;:54;;;;;;;;;;;;;;;;;;41288:174;41093:384;39463:2130;;;41524:7;41520:2;41505:27;;41514:4;41505:27;;;;;;;;;;;;41543:42;41564:4;41570:2;41574:7;41583:1;41543:20;:42::i;:::-;39463:2130;;;;;:::o;31511:1109::-;31573:21;;:::i;:::-;31607:12;31622:7;31607:22;;31690:4;31671:15;:13;:15::i;:::-;:23;;:47;;;;;31705:13;;31698:4;:20;31671:47;31667:886;;;31739:31;31773:11;:17;31785:4;31773:17;;;;;;;;;;;31739:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31814:9;:16;;;31809:729;;31885:1;31859:28;;:9;:14;;;:28;;;31855:101;;31923:9;31916:16;;;;;;31855:101;32258:261;32265:4;32258:261;;;32298:6;;;;;;;;32343:11;:17;32355:4;32343:17;;;;;;;;;;;32331:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32417:1;32391:28;;:9;:14;;;:28;;;32387:109;;32459:9;32452:16;;;;;;32387:109;32258:261;;;31809:729;31667:886;;32581:31;;;;;;;;;;;;;;31511:1109;;;;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8108:191;;:::o;36545:104::-;36614:27;36624:2;36628:8;36614:27;;;;;;;;;;;;:9;:27::i;:::-;36545:104;;:::o;9539:326::-;9599:4;9856:1;9834:7;:19;;;:23;9827:30;;9539:326;;;:::o;45208:667::-;45371:4;45408:2;45392:36;;;45429:12;:10;:12::i;:::-;45443:4;45449:7;45458:5;45392:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45388:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45643:1;45626:6;:13;:18;45622:235;;;45672:40;;;;;;;;;;;;;;45622:235;45815:6;45809:13;45800:6;45796:2;45792:15;45785:38;45388:480;45521:45;;;45511:55;;;:6;:55;;;;45504:62;;;45208:667;;;;;;:::o;52182:110::-;52242:13;52275:9;52268:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52182:110;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;46523:159::-;;;;;:::o;47341:158::-;;;;;:::o;37012:163::-;37135:32;37141:2;37145:8;37155:5;37162:4;37135:5;:32::i;:::-;37012:163;;;:::o;37434:1775::-;37573:20;37596:13;;37573:36;;37638:1;37624:16;;:2;:16;;;37620:48;;;37649:19;;;;;;;;;;;;;;37620:48;37695:1;37683:8;:13;37679:44;;;37705:18;;;;;;;;;;;;;;37679:44;37736:61;37766:1;37770:2;37774:12;37788:8;37736:21;:61::i;:::-;38109:8;38074:12;:16;38087:2;38074:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38173:8;38133:12;:16;38146:2;38133:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38232:2;38199:11;:25;38211:12;38199:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38299:15;38249:11;:25;38261:12;38249:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38332:20;38355:12;38332:35;;38382:11;38411:8;38396:12;:23;38382:37;;38440:4;:23;;;;;38448:15;:2;:13;;;:15::i;:::-;38440:23;38436:641;;;38484:314;38540:12;38536:2;38515:38;;38532:1;38515:38;;;;;;;;;;;;38581:69;38620:1;38624:2;38628:14;;;;;;38644:5;38581:30;:69::i;:::-;38576:174;;38686:40;;;;;;;;;;;;;;38576:174;38793:3;38777:12;:19;;38484:314;;38879:12;38862:13;;:29;38858:43;;38893:8;;;38858:43;38436:641;;;38942:120;38998:14;;;;;;38994:2;38973:40;;38990:1;38973:40;;;;;;;;;;;;39057:3;39041:12;:19;;38942:120;;38436:641;39107:12;39091:13;:28;;;;37434:1775;;39141:60;39170:1;39174:2;39178:12;39192:8;39141:20;:60::i;:::-;37434:1775;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:179::-;6830:10;6851:46;6893:3;6885:6;6851:46;:::i;:::-;6929:4;6924:3;6920:14;6906:28;;6841:99;;;;:::o;6946:118::-;7033:24;7051:5;7033:24;:::i;:::-;7028:3;7021:37;7011:53;;:::o;7100:732::-;7219:3;7248:54;7296:5;7248:54;:::i;:::-;7318:86;7397:6;7392:3;7318:86;:::i;:::-;7311:93;;7428:56;7478:5;7428:56;:::i;:::-;7507:7;7538:1;7523:284;7548:6;7545:1;7542:13;7523:284;;;7624:6;7618:13;7651:63;7710:3;7695:13;7651:63;:::i;:::-;7644:70;;7737:60;7790:6;7737:60;:::i;:::-;7727:70;;7583:224;7570:1;7567;7563:9;7558:14;;7523:284;;;7527:14;7823:3;7816:10;;7224:608;;;;;;;:::o;7838:109::-;7919:21;7934:5;7919:21;:::i;:::-;7914:3;7907:34;7897:50;;:::o;7953:360::-;8039:3;8067:38;8099:5;8067:38;:::i;:::-;8121:70;8184:6;8179:3;8121:70;:::i;:::-;8114:77;;8200:52;8245:6;8240:3;8233:4;8226:5;8222:16;8200:52;:::i;:::-;8277:29;8299:6;8277:29;:::i;:::-;8272:3;8268:39;8261:46;;8043:270;;;;;:::o;8319:364::-;8407:3;8435:39;8468:5;8435:39;:::i;:::-;8490:71;8554:6;8549:3;8490:71;:::i;:::-;8483:78;;8570:52;8615:6;8610:3;8603:4;8596:5;8592:16;8570:52;:::i;:::-;8647:29;8669:6;8647:29;:::i;:::-;8642:3;8638:39;8631:46;;8411:272;;;;;:::o;8689:377::-;8795:3;8823:39;8856:5;8823:39;:::i;:::-;8878:89;8960:6;8955:3;8878:89;:::i;:::-;8871:96;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:6;9048:3;9044:16;9037:23;;8799:267;;;;;:::o;9096:845::-;9199:3;9236:5;9230:12;9265:36;9291:9;9265:36;:::i;:::-;9317:89;9399:6;9394:3;9317:89;:::i;:::-;9310:96;;9437:1;9426:9;9422:17;9453:1;9448:137;;;;9599:1;9594:341;;;;9415:520;;9448:137;9532:4;9528:9;9517;9513:25;9508:3;9501:38;9568:6;9563:3;9559:16;9552:23;;9448:137;;9594:341;9661:38;9693:5;9661:38;:::i;:::-;9721:1;9735:154;9749:6;9746:1;9743:13;9735:154;;;9823:7;9817:14;9813:1;9808:3;9804:11;9797:35;9873:1;9864:7;9860:15;9849:26;;9771:4;9768:1;9764:12;9759:17;;9735:154;;;9918:6;9913:3;9909:16;9902:23;;9601:334;;9415:520;;9203:738;;;;;;:::o;9947:366::-;10089:3;10110:67;10174:2;10169:3;10110:67;:::i;:::-;10103:74;;10186:93;10275:3;10186:93;:::i;:::-;10304:2;10299:3;10295:12;10288:19;;10093:220;;;:::o;10319:366::-;10461:3;10482:67;10546:2;10541:3;10482:67;:::i;:::-;10475:74;;10558:93;10647:3;10558:93;:::i;:::-;10676:2;10671:3;10667:12;10660:19;;10465:220;;;:::o;10691:366::-;10833:3;10854:67;10918:2;10913:3;10854:67;:::i;:::-;10847:74;;10930:93;11019:3;10930:93;:::i;:::-;11048:2;11043:3;11039:12;11032:19;;10837:220;;;:::o;11063:366::-;11205:3;11226:67;11290:2;11285:3;11226:67;:::i;:::-;11219:74;;11302:93;11391:3;11302:93;:::i;:::-;11420:2;11415:3;11411:12;11404:19;;11209:220;;;:::o;11435:366::-;11577:3;11598:67;11662:2;11657:3;11598:67;:::i;:::-;11591:74;;11674:93;11763:3;11674:93;:::i;:::-;11792:2;11787:3;11783:12;11776:19;;11581:220;;;:::o;11807:398::-;11966:3;11987:83;12068:1;12063:3;11987:83;:::i;:::-;11980:90;;12079:93;12168:3;12079:93;:::i;:::-;12197:1;12192:3;12188:11;12181:18;;11970:235;;;:::o;12211:366::-;12353:3;12374:67;12438:2;12433:3;12374:67;:::i;:::-;12367:74;;12450:93;12539:3;12450:93;:::i;:::-;12568:2;12563:3;12559:12;12552:19;;12357:220;;;:::o;12583:366::-;12725:3;12746:67;12810:2;12805:3;12746:67;:::i;:::-;12739:74;;12822:93;12911:3;12822:93;:::i;:::-;12940:2;12935:3;12931:12;12924:19;;12729:220;;;:::o;12955:366::-;13097:3;13118:67;13182:2;13177:3;13118:67;:::i;:::-;13111:74;;13194:93;13283:3;13194:93;:::i;:::-;13312:2;13307:3;13303:12;13296:19;;13101:220;;;:::o;13327:108::-;13404:24;13422:5;13404:24;:::i;:::-;13399:3;13392:37;13382:53;;:::o;13441:118::-;13528:24;13546:5;13528:24;:::i;:::-;13523:3;13516:37;13506:53;;:::o;13565:589::-;13790:3;13812:95;13903:3;13894:6;13812:95;:::i;:::-;13805:102;;13924:95;14015:3;14006:6;13924:95;:::i;:::-;13917:102;;14036:92;14124:3;14115:6;14036:92;:::i;:::-;14029:99;;14145:3;14138:10;;13794:360;;;;;;:::o;14160:379::-;14344:3;14366:147;14509:3;14366:147;:::i;:::-;14359:154;;14530:3;14523:10;;14348:191;;;:::o;14545:222::-;14638:4;14676:2;14665:9;14661:18;14653:26;;14689:71;14757:1;14746:9;14742:17;14733:6;14689:71;:::i;:::-;14643:124;;;;:::o;14773:640::-;14968:4;15006:3;14995:9;14991:19;14983:27;;15020:71;15088:1;15077:9;15073:17;15064:6;15020:71;:::i;:::-;15101:72;15169:2;15158:9;15154:18;15145:6;15101:72;:::i;:::-;15183;15251:2;15240:9;15236:18;15227:6;15183:72;:::i;:::-;15302:9;15296:4;15292:20;15287:2;15276:9;15272:18;15265:48;15330:76;15401:4;15392:6;15330:76;:::i;:::-;15322:84;;14973:440;;;;;;;:::o;15419:373::-;15562:4;15600:2;15589:9;15585:18;15577:26;;15649:9;15643:4;15639:20;15635:1;15624:9;15620:17;15613:47;15677:108;15780:4;15771:6;15677:108;:::i;:::-;15669:116;;15567:225;;;;:::o;15798:210::-;15885:4;15923:2;15912:9;15908:18;15900:26;;15936:65;15998:1;15987:9;15983:17;15974:6;15936:65;:::i;:::-;15890:118;;;;:::o;16014:313::-;16127:4;16165:2;16154:9;16150:18;16142:26;;16214:9;16208:4;16204:20;16200:1;16189:9;16185:17;16178:47;16242:78;16315:4;16306:6;16242:78;:::i;:::-;16234:86;;16132:195;;;;:::o;16333:419::-;16499:4;16537:2;16526:9;16522:18;16514:26;;16586:9;16580:4;16576:20;16572:1;16561:9;16557:17;16550:47;16614:131;16740:4;16614:131;:::i;:::-;16606:139;;16504:248;;;:::o;16758:419::-;16924:4;16962:2;16951:9;16947:18;16939:26;;17011:9;17005:4;17001:20;16997:1;16986:9;16982:17;16975:47;17039:131;17165:4;17039:131;:::i;:::-;17031:139;;16929:248;;;:::o;17183:419::-;17349:4;17387:2;17376:9;17372:18;17364:26;;17436:9;17430:4;17426:20;17422:1;17411:9;17407:17;17400:47;17464:131;17590:4;17464:131;:::i;:::-;17456:139;;17354:248;;;:::o;17608:419::-;17774:4;17812:2;17801:9;17797:18;17789:26;;17861:9;17855:4;17851:20;17847:1;17836:9;17832:17;17825:47;17889:131;18015:4;17889:131;:::i;:::-;17881:139;;17779:248;;;:::o;18033:419::-;18199:4;18237:2;18226:9;18222:18;18214:26;;18286:9;18280:4;18276:20;18272:1;18261:9;18257:17;18250:47;18314:131;18440:4;18314:131;:::i;:::-;18306:139;;18204:248;;;:::o;18458:419::-;18624:4;18662:2;18651:9;18647:18;18639:26;;18711:9;18705:4;18701:20;18697:1;18686:9;18682:17;18675:47;18739:131;18865:4;18739:131;:::i;:::-;18731:139;;18629:248;;;:::o;18883:419::-;19049:4;19087:2;19076:9;19072:18;19064:26;;19136:9;19130:4;19126:20;19122:1;19111:9;19107:17;19100:47;19164:131;19290:4;19164:131;:::i;:::-;19156:139;;19054:248;;;:::o;19308:419::-;19474:4;19512:2;19501:9;19497:18;19489:26;;19561:9;19555:4;19551:20;19547:1;19536:9;19532:17;19525:47;19589:131;19715:4;19589:131;:::i;:::-;19581:139;;19479:248;;;:::o;19733:222::-;19826:4;19864:2;19853:9;19849:18;19841:26;;19877:71;19945:1;19934:9;19930:17;19921:6;19877:71;:::i;:::-;19831:124;;;;:::o;19961:129::-;19995:6;20022:20;;:::i;:::-;20012:30;;20051:33;20079:4;20071:6;20051:33;:::i;:::-;20002:88;;;:::o;20096:75::-;20129:6;20162:2;20156:9;20146:19;;20136:35;:::o;20177:307::-;20238:4;20328:18;20320:6;20317:30;20314:2;;;20350:18;;:::i;:::-;20314:2;20388:29;20410:6;20388:29;:::i;:::-;20380:37;;20472:4;20466;20462:15;20454:23;;20243:241;;;:::o;20490:308::-;20552:4;20642:18;20634:6;20631:30;20628:2;;;20664:18;;:::i;:::-;20628:2;20702:29;20724:6;20702:29;:::i;:::-;20694:37;;20786:4;20780;20776:15;20768:23;;20557:241;;;:::o;20804:132::-;20871:4;20894:3;20886:11;;20924:4;20919:3;20915:14;20907:22;;20876:60;;;:::o;20942:141::-;20991:4;21014:3;21006:11;;21037:3;21034:1;21027:14;21071:4;21068:1;21058:18;21050:26;;20996:87;;;:::o;21089:114::-;21156:6;21190:5;21184:12;21174:22;;21163:40;;;:::o;21209:98::-;21260:6;21294:5;21288:12;21278:22;;21267:40;;;:::o;21313:99::-;21365:6;21399:5;21393:12;21383:22;;21372:40;;;:::o;21418:113::-;21488:4;21520;21515:3;21511:14;21503:22;;21493:38;;;:::o;21537:184::-;21636:11;21670:6;21665:3;21658:19;21710:4;21705:3;21701:14;21686:29;;21648:73;;;;:::o;21727:168::-;21810:11;21844:6;21839:3;21832:19;21884:4;21879:3;21875:14;21860:29;;21822:73;;;;:::o;21901:147::-;22002:11;22039:3;22024:18;;22014:34;;;;:::o;22054:169::-;22138:11;22172:6;22167:3;22160:19;22212:4;22207:3;22203:14;22188:29;;22150:73;;;;:::o;22229:148::-;22331:11;22368:3;22353:18;;22343:34;;;;:::o;22383:305::-;22423:3;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22476:20;22494:1;22476:20;:::i;:::-;22471:25;;22630:1;22562:66;22558:74;22555:1;22552:81;22549:2;;;22636:18;;:::i;:::-;22549:2;22680:1;22677;22673:9;22666:16;;22427:261;;;;:::o;22694:185::-;22734:1;22751:20;22769:1;22751:20;:::i;:::-;22746:25;;22785:20;22803:1;22785:20;:::i;:::-;22780:25;;22824:1;22814:2;;22829:18;;:::i;:::-;22814:2;22871:1;22868;22864:9;22859:14;;22736:143;;;;:::o;22885:348::-;22925:7;22948:20;22966:1;22948:20;:::i;:::-;22943:25;;22982:20;23000:1;22982:20;:::i;:::-;22977:25;;23170:1;23102:66;23098:74;23095:1;23092:81;23087:1;23080:9;23073:17;23069:105;23066:2;;;23177:18;;:::i;:::-;23066:2;23225:1;23222;23218:9;23207:20;;22933:300;;;;:::o;23239:191::-;23279:4;23299:20;23317:1;23299:20;:::i;:::-;23294:25;;23333:20;23351:1;23333:20;:::i;:::-;23328:25;;23372:1;23369;23366:8;23363:2;;;23377:18;;:::i;:::-;23363:2;23422:1;23419;23415:9;23407:17;;23284:146;;;;:::o;23436:96::-;23473:7;23502:24;23520:5;23502:24;:::i;:::-;23491:35;;23481:51;;;:::o;23538:90::-;23572:7;23615:5;23608:13;23601:21;23590:32;;23580:48;;;:::o;23634:149::-;23670:7;23710:66;23703:5;23699:78;23688:89;;23678:105;;;:::o;23789:126::-;23826:7;23866:42;23859:5;23855:54;23844:65;;23834:81;;;:::o;23921:77::-;23958:7;23987:5;23976:16;;23966:32;;;:::o;24004:154::-;24088:6;24083:3;24078;24065:30;24150:1;24141:6;24136:3;24132:16;24125:27;24055:103;;;:::o;24164:307::-;24232:1;24242:113;24256:6;24253:1;24250:13;24242:113;;;24341:1;24336:3;24332:11;24326:18;24322:1;24317:3;24313:11;24306:39;24278:2;24275:1;24271:10;24266:15;;24242:113;;;24373:6;24370:1;24367:13;24364:2;;;24453:1;24444:6;24439:3;24435:16;24428:27;24364:2;24213:258;;;;:::o;24477:320::-;24521:6;24558:1;24552:4;24548:12;24538:22;;24605:1;24599:4;24595:12;24626:18;24616:2;;24682:4;24674:6;24670:17;24660:27;;24616:2;24744;24736:6;24733:14;24713:18;24710:38;24707:2;;;24763:18;;:::i;:::-;24707:2;24528:269;;;;:::o;24803:281::-;24886:27;24908:4;24886:27;:::i;:::-;24878:6;24874:40;25016:6;25004:10;25001:22;24980:18;24968:10;24965:34;24962:62;24959:2;;;25027:18;;:::i;:::-;24959:2;25067:10;25063:2;25056:22;24846:238;;;:::o;25090:233::-;25129:3;25152:24;25170:5;25152:24;:::i;:::-;25143:33;;25198:66;25191:5;25188:77;25185:2;;;25268:18;;:::i;:::-;25185:2;25315:1;25308:5;25304:13;25297:20;;25133:190;;;:::o;25329:176::-;25361:1;25378:20;25396:1;25378:20;:::i;:::-;25373:25;;25412:20;25430:1;25412:20;:::i;:::-;25407:25;;25451:1;25441:2;;25456:18;;:::i;:::-;25441:2;25497:1;25494;25490:9;25485:14;;25363:142;;;;:::o;25511:180::-;25559:77;25556:1;25549:88;25656:4;25653:1;25646:15;25680:4;25677:1;25670:15;25697:180;25745:77;25742:1;25735:88;25842:4;25839:1;25832:15;25866:4;25863:1;25856:15;25883:180;25931:77;25928:1;25921:88;26028:4;26025:1;26018:15;26052:4;26049:1;26042:15;26069:180;26117:77;26114:1;26107:88;26214:4;26211:1;26204:15;26238:4;26235:1;26228:15;26255:102;26296:6;26347:2;26343:7;26338:2;26331:5;26327:14;26323:28;26313:38;;26303:54;;;:::o;26363:223::-;26503:34;26499:1;26491:6;26487:14;26480:58;26572:6;26567:2;26559:6;26555:15;26548:31;26469:117;:::o;26592:225::-;26732:34;26728:1;26720:6;26716:14;26709:58;26801:8;26796:2;26788:6;26784:15;26777:33;26698:119;:::o;26823:182::-;26963:34;26959:1;26951:6;26947:14;26940:58;26929:76;:::o;27011:173::-;27151:25;27147:1;27139:6;27135:14;27128:49;27117:67;:::o;27190:234::-;27330:34;27326:1;27318:6;27314:14;27307:58;27399:17;27394:2;27386:6;27382:15;27375:42;27296:128;:::o;27430:114::-;27536:8;:::o;27550:170::-;27690:22;27686:1;27678:6;27674:14;27667:46;27656:64;:::o;27726:181::-;27866:33;27862:1;27854:6;27850:14;27843:57;27832:75;:::o;27913:169::-;28053:21;28049:1;28041:6;28037:14;28030:45;28019:63;:::o;28088:122::-;28161:24;28179:5;28161:24;:::i;:::-;28154:5;28151:35;28141:2;;28200:1;28197;28190:12;28141:2;28131:79;:::o;28216:116::-;28286:21;28301:5;28286:21;:::i;:::-;28279:5;28276:32;28266:2;;28322:1;28319;28312:12;28266:2;28256:76;:::o;28338:120::-;28410:23;28427:5;28410:23;:::i;:::-;28403:5;28400:34;28390:2;;28448:1;28445;28438:12;28390:2;28380:78;:::o;28464:122::-;28537:24;28555:5;28537:24;:::i;:::-;28530:5;28527:35;28517:2;;28576:1;28573;28566:12;28517:2;28507:79;:::o

Swarm Source

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