ETH Price: $2,679.15 (-2.18%)

Token

Panda Club Genesis (PCG)
 

Overview

Max Total Supply

45 PCG

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PCG
0x98f081894c66d2bd0e9d0bca5bccbe9b886fb24f
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:
PandaClubContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *	
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

// 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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

// File: contracts/test.sol



pragma solidity >=0.7.0 <0.9.0;




contract PandaClubContract is ERC721A, Ownable {
  using Strings for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 333;
  uint256 public maxMintAmountPerTx = 7;
  uint256 private currentSupply = 7;

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721A("Panda Club Genesis", "PCG") {
    setHiddenMetadataUri("ipfs://QmeaEhkkf6BvZ2x8i4D8dGhNfBbpfkA4q5cp7YGbBqtHpL/hidden.json");
    _safeMint(msg.sender, 7);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(currentSupply + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

 function totalSupply() public override view returns (uint256) {
    return currentSupply;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _safeMint(msg.sender, _mintAmount);
    currentSupply += _mintAmount;
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
    currentSupply += _mintAmount;
  }

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

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  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 setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  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 {
    (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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxMintAmountPerTx","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":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","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":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

608060405260016000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506040518060200160405280600081525060089080519060200190620000649291906200098a565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000b29291906200098a565b5066b1a2bc2ec50000600b5561014d600c556007600d556007600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200011157600080fd5b506040518060400160405280601281526020017f50616e646120436c75622047656e6573697300000000000000000000000000008152506040518060400160405280600381526020017f50434700000000000000000000000000000000000000000000000000000000008152508160019080519060200190620001969291906200098a565b508060029080519060200190620001af9291906200098a565b505050620001d2620001c66200021560201b60201c565b6200021d60201b60201c565b620001fc6040518060800160405280604181526020016200510e60419139620002e360201b60201c565b6200020f3360076200038e60201b60201c565b62000d0e565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f36200021560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000319620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000372576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003699062000b61565b60405180910390fd5b80600a90805190602001906200038a9291906200098a565b5050565b620003b0828260405180602001604052806000815250620003de60201b60201c565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003f38383836001620003f860201b60201c565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000494576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415620004d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004e56000868387620007ac60201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200075657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620007085750620007066000888488620007b260201b60201c565b155b1562000740576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000683565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050620007a560008683876200096160201b60201c565b5050505050565b50505050565b6000620007e08473ffffffffffffffffffffffffffffffffffffffff166200096760201b620021661760201c565b1562000954578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008126200021560201b60201c565b8786866040518563ffffffff1660e01b815260040162000836949392919062000b0d565b602060405180830381600087803b1580156200085157600080fd5b505af19250505080156200088557506040513d601f19601f8201168201806040525081019062000882919062000a51565b60015b62000903573d8060008114620008b8576040519150601f19603f3d011682016040523d82523d6000602084013e620008bd565b606091505b50600081511415620008fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000959565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620009989062000c50565b90600052602060002090601f016020900481019282620009bc576000855562000a08565b82601f10620009d757805160ff191683800117855562000a08565b8280016001018555821562000a08579182015b8281111562000a07578251825591602001919060010190620009ea565b5b50905062000a17919062000a1b565b5090565b5b8082111562000a3657600081600090555060010162000a1c565b5090565b60008151905062000a4b8162000cf4565b92915050565b60006020828403121562000a6a5762000a6962000cb5565b5b600062000a7a8482850162000a3a565b91505092915050565b62000a8e8162000bb0565b82525050565b600062000aa18262000b83565b62000aad818562000b8e565b935062000abf81856020860162000c1a565b62000aca8162000cba565b840191505092915050565b600062000ae460208362000b9f565b915062000af18262000ccb565b602082019050919050565b62000b078162000c10565b82525050565b600060808201905062000b24600083018762000a83565b62000b33602083018662000a83565b62000b42604083018562000afc565b818103606083015262000b56818462000a94565b905095945050505050565b6000602082019050818103600083015262000b7c8162000ad5565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000bbd8262000bf0565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c3a57808201518184015260208101905062000c1d565b8381111562000c4a576000848401525b50505050565b6000600282049050600182168062000c6957607f821691505b6020821081141562000c805762000c7f62000c86565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000cff8162000bc4565b811462000d0b57600080fd5b50565b6143f08062000d1e6000396000f3fe6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107f8578063e0a8085314610823578063e985e9c51461084c578063efbd73f414610889578063f2fde38b146108b257610225565b8063a22cb46514610715578063a45ba8e71461073e578063b071401b14610769578063b88d4fde14610792578063c87b56dd146107bb57610225565b80637ec4a659116100f25780637ec4a6591461064f5780638da5cb5b1461067857806394354fd0146106a357806395d89b41146106ce578063a0712d68146106f957610225565b806362b99ad4146105935780636352211e146105be57806370a08231146105fb578063715018a61461063857610225565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146104ac5780634fdd43cb146104e957806351830227146105125780635503a0e81461053d5780635c975abb1461056857610225565b80632f745c59146103c95780633ccfd60b1461040657806342842e0e1461041d578063438b63001461044657806344a0d68a1461048357610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806316c38b3c1461034c57806318160ddd1461037557806323b872dd146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613712565b6108db565b60405161025e9190613bdd565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190613bf8565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906137b5565b610ab7565b6040516102c69190613b54565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906136a5565b610b33565b005b34801561030457600080fd5b5061030d610c3e565b60405161031a9190613cfa565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061376c565b610c44565b005b34801561035857600080fd5b50610373600480360381019061036e91906136e5565b610cda565b005b34801561038157600080fd5b5061038a610d73565b6040516103979190613cfa565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c2919061358f565b610d7d565b005b3480156103d557600080fd5b506103f060048036038101906103eb91906136a5565b610d8d565b6040516103fd9190613cfa565b60405180910390f35b34801561041257600080fd5b5061041b610f94565b005b34801561042957600080fd5b50610444600480360381019061043f919061358f565b611090565b005b34801561045257600080fd5b5061046d60048036038101906104689190613522565b6110b0565b60405161047a9190613bbb565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906137b5565b6111bb565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906137b5565b611241565b6040516104e09190613cfa565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b919061376c565b6113b2565b005b34801561051e57600080fd5b50610527611448565b6040516105349190613bdd565b60405180910390f35b34801561054957600080fd5b5061055261145b565b60405161055f9190613bf8565b60405180910390f35b34801561057457600080fd5b5061057d6114e9565b60405161058a9190613bdd565b60405180910390f35b34801561059f57600080fd5b506105a86114fc565b6040516105b59190613bf8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906137b5565b61158a565b6040516105f29190613b54565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613522565b6115a0565b60405161062f9190613cfa565b60405180910390f35b34801561064457600080fd5b5061064d611670565b005b34801561065b57600080fd5b506106766004803603810190610671919061376c565b6116f8565b005b34801561068457600080fd5b5061068d61178e565b60405161069a9190613b54565b60405180910390f35b3480156106af57600080fd5b506106b86117b8565b6040516106c59190613cfa565b60405180910390f35b3480156106da57600080fd5b506106e36117be565b6040516106f09190613bf8565b60405180910390f35b610713600480360381019061070e91906137b5565b611850565b005b34801561072157600080fd5b5061073c60048036038101906107379190613665565b6119bb565b005b34801561074a57600080fd5b50610753611b33565b6040516107609190613bf8565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b91906137b5565b611bc1565b005b34801561079e57600080fd5b506107b960048036038101906107b491906135e2565b611c47565b005b3480156107c757600080fd5b506107e260048036038101906107dd91906137b5565b611c9a565b6040516107ef9190613bf8565b60405180910390f35b34801561080457600080fd5b5061080d611df3565b60405161081a9190613cfa565b60405180910390f35b34801561082f57600080fd5b5061084a600480360381019061084591906136e5565b611df9565b005b34801561085857600080fd5b50610873600480360381019061086e919061354f565b611e92565b6040516108809190613bdd565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906137e2565b611f26565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613522565b61206e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82612189565b5b9050919050565b606060018054610a3490614003565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090614003565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac2826121f3565b610af8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3e8261158a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc561225b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf75750610bf581610bf061225b565b611e92565b155b15610c2e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c39838383612263565b505050565b600b5481565b610c4c61225b565b73ffffffffffffffffffffffffffffffffffffffff16610c6a61178e565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613c5a565b60405180910390fd5b8060099080519060200190610cd69291906132f3565b5050565b610ce261225b565b73ffffffffffffffffffffffffffffffffffffffff16610d0061178e565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c5a565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610d88838383612315565b505050565b6000610d98836115a0565b8210610dd0576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610f88576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610ee75750610f7b565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f795786841415610f70578195505050505050610f8e565b83806001019450505b505b8080600101915050610e0a565b50600080fd5b92915050565b610f9c61225b565b73ffffffffffffffffffffffffffffffffffffffff16610fba61178e565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613c5a565b60405180910390fd5b600061101a61178e565b73ffffffffffffffffffffffffffffffffffffffff164760405161103d90613b3f565b60006040518083038185875af1925050503d806000811461107a576040519150601f19603f3d011682016040523d82523d6000602084013e61107f565b606091505b505090508061108d57600080fd5b50565b6110ab83838360405180602001604052806000815250611c47565b505050565b606060006110bd836115a0565b905060008167ffffffffffffffff8111156110db576110da61419c565b5b6040519080825280602002602001820160405280156111095781602001602082028036833780820191505090505b50905060006001905060005b83811080156111265750600c548211155b156111af5760006111368361158a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119b57828483815181106111805761117f61416d565b5b602002602001018181525050818061119790614066565b9250505b82806111a690614066565b93505050611115565b82945050505050919050565b6111c361225b565b73ffffffffffffffffffffffffffffffffffffffff166111e161178e565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613c5a565b60405180910390fd5b80600b8190555050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561137a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161136c578583141561136357819450505050506113ad565b82806001019350505b508080600101915050611279565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6113ba61225b565b73ffffffffffffffffffffffffffffffffffffffff166113d861178e565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590613c5a565b60405180910390fd5b80600a90805190602001906114449291906132f3565b5050565b600f60019054906101000a900460ff1681565b6009805461146890614003565b80601f016020809104026020016040519081016040528092919081815260200182805461149490614003565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6008805461150990614003565b80601f016020809104026020016040519081016040528092919081815260200182805461153590614003565b80156115825780601f1061155757610100808354040283529160200191611582565b820191906000526020600020905b81548152906001019060200180831161156557829003601f168201915b505050505081565b600061159582612832565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611608576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61167861225b565b73ffffffffffffffffffffffffffffffffffffffff1661169661178e565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613c5a565b60405180910390fd5b6116f66000612ada565b565b61170061225b565b73ffffffffffffffffffffffffffffffffffffffff1661171e61178e565b73ffffffffffffffffffffffffffffffffffffffff1614611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90613c5a565b60405180910390fd5b806008908051906020019061178a9291906132f3565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600280546117cd90614003565b80601f01602080910402602001604051908101604052809291908181526020018280546117f990614003565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b5050505050905090565b806000811180156118635750600d548111155b6118a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189990613c3a565b60405180910390fd5b600c5481600e546118b39190613e38565b11156118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90613cba565b60405180910390fd5b600f60009054906101000a900460ff1615611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613c7a565b60405180910390fd5b81600b546119529190613ebf565b341015611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613cda565b60405180910390fd5b61199e3383612ba0565b81600e60008282546119b09190613e38565b925050819055505050565b6119c361225b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a28576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611a3561225b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae261225b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b279190613bdd565b60405180910390a35050565b600a8054611b4090614003565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6c90614003565b8015611bb95780601f10611b8e57610100808354040283529160200191611bb9565b820191906000526020600020905b815481529060010190602001808311611b9c57829003601f168201915b505050505081565b611bc961225b565b73ffffffffffffffffffffffffffffffffffffffff16611be761178e565b73ffffffffffffffffffffffffffffffffffffffff1614611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613c5a565b60405180910390fd5b80600d8190555050565b611c52848484612315565b611c5e84848484612bbe565b611c94576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ca5826121f3565b611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613c9a565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611d9257600a8054611d0d90614003565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3990614003565b8015611d865780601f10611d5b57610100808354040283529160200191611d86565b820191906000526020600020905b815481529060010190602001808311611d6957829003601f168201915b50505050509050611dee565b6000611d9c612d4c565b90506000815111611dbc5760405180602001604052806000815250611dea565b80611dc684612dde565b6009604051602001611dda93929190613b0e565b6040516020818303038152906040525b9150505b919050565b600c5481565b611e0161225b565b73ffffffffffffffffffffffffffffffffffffffff16611e1f61178e565b73ffffffffffffffffffffffffffffffffffffffff1614611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90613c5a565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611f395750600d548111155b611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f90613c3a565b60405180910390fd5b600c5481600e54611f899190613e38565b1115611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190613cba565b60405180910390fd5b611fd261225b565b73ffffffffffffffffffffffffffffffffffffffff16611ff061178e565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613c5a565b60405180910390fd5b6120508284612ba0565b82600e60008282546120629190613e38565b92505081905550505050565b61207661225b565b73ffffffffffffffffffffffffffffffffffffffff1661209461178e565b73ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190613c5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190613c1a565b60405180910390fd5b61216381612ada565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612254575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061232082612832565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661234761225b565b73ffffffffffffffffffffffffffffffffffffffff16148061237a5750612379826000015161237461225b565b611e92565b5b806123bf575061238861225b565b73ffffffffffffffffffffffffffffffffffffffff166123a784610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612461576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d58585856001612f3f565b6124e56000848460000151612263565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c25760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127c15782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282b8585856001612f45565b5050505050565b61283a613379565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612aa3576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612aa157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612985578092505050612ad5565b5b600115612aa057818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a9b578092505050612ad5565b612986565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bba828260405180602001604052806000815250612f4b565b5050565b6000612bdf8473ffffffffffffffffffffffffffffffffffffffff16612166565b15612d3f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c0861225b565b8786866040518563ffffffff1660e01b8152600401612c2a9493929190613b6f565b602060405180830381600087803b158015612c4457600080fd5b505af1925050508015612c7557506040513d601f19601f82011682018060405250810190612c72919061373f565b60015b612cef573d8060008114612ca5576040519150601f19603f3d011682016040523d82523d6000602084013e612caa565b606091505b50600081511415612ce7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d44565b600190505b949350505050565b606060088054612d5b90614003565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8790614003565b8015612dd45780601f10612da957610100808354040283529160200191612dd4565b820191906000526020600020905b815481529060010190602001808311612db757829003601f168201915b5050505050905090565b60606000821415612e26576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f3a565b600082905060005b60008214612e58578080612e4190614066565b915050600a82612e519190613e8e565b9150612e2e565b60008167ffffffffffffffff811115612e7457612e7361419c565b5b6040519080825280601f01601f191660200182016040528015612ea65781602001600182028036833780820191505090505b5090505b60008514612f3357600182612ebf9190613f19565b9150600a85612ece91906140af565b6030612eda9190613e38565b60f81b818381518110612ef057612eef61416d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f2c9190613e8e565b9450612eaa565b8093505050505b919050565b50505050565b50505050565b612f588383836001612f5d565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ff8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613033576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130406000868387612f3f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156132a557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561325957506132576000888488612bbe565b155b15613290576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506131de565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506132ec6000868387612f45565b5050505050565b8280546132ff90614003565b90600052602060002090601f0160209004810192826133215760008555613368565b82601f1061333a57805160ff1916838001178555613368565b82800160010185558215613368579182015b8281111561336757825182559160200191906001019061334c565b5b50905061337591906133bc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133d55760008160009055506001016133bd565b5090565b60006133ec6133e784613d3a565b613d15565b905082815260208101848484011115613408576134076141d0565b5b613413848285613fc1565b509392505050565b600061342e61342984613d6b565b613d15565b90508281526020810184848401111561344a576134496141d0565b5b613455848285613fc1565b509392505050565b60008135905061346c8161435e565b92915050565b60008135905061348181614375565b92915050565b6000813590506134968161438c565b92915050565b6000815190506134ab8161438c565b92915050565b600082601f8301126134c6576134c56141cb565b5b81356134d68482602086016133d9565b91505092915050565b600082601f8301126134f4576134f36141cb565b5b813561350484826020860161341b565b91505092915050565b60008135905061351c816143a3565b92915050565b600060208284031215613538576135376141da565b5b60006135468482850161345d565b91505092915050565b60008060408385031215613566576135656141da565b5b60006135748582860161345d565b92505060206135858582860161345d565b9150509250929050565b6000806000606084860312156135a8576135a76141da565b5b60006135b68682870161345d565b93505060206135c78682870161345d565b92505060406135d88682870161350d565b9150509250925092565b600080600080608085870312156135fc576135fb6141da565b5b600061360a8782880161345d565b945050602061361b8782880161345d565b935050604061362c8782880161350d565b925050606085013567ffffffffffffffff81111561364d5761364c6141d5565b5b613659878288016134b1565b91505092959194509250565b6000806040838503121561367c5761367b6141da565b5b600061368a8582860161345d565b925050602061369b85828601613472565b9150509250929050565b600080604083850312156136bc576136bb6141da565b5b60006136ca8582860161345d565b92505060206136db8582860161350d565b9150509250929050565b6000602082840312156136fb576136fa6141da565b5b600061370984828501613472565b91505092915050565b600060208284031215613728576137276141da565b5b600061373684828501613487565b91505092915050565b600060208284031215613755576137546141da565b5b60006137638482850161349c565b91505092915050565b600060208284031215613782576137816141da565b5b600082013567ffffffffffffffff8111156137a05761379f6141d5565b5b6137ac848285016134df565b91505092915050565b6000602082840312156137cb576137ca6141da565b5b60006137d98482850161350d565b91505092915050565b600080604083850312156137f9576137f86141da565b5b60006138078582860161350d565b92505060206138188582860161345d565b9150509250929050565b600061382e8383613af0565b60208301905092915050565b61384381613f4d565b82525050565b600061385482613dc1565b61385e8185613def565b935061386983613d9c565b8060005b8381101561389a5781516138818882613822565b975061388c83613de2565b92505060018101905061386d565b5085935050505092915050565b6138b081613f5f565b82525050565b60006138c182613dcc565b6138cb8185613e00565b93506138db818560208601613fd0565b6138e4816141df565b840191505092915050565b60006138fa82613dd7565b6139048185613e1c565b9350613914818560208601613fd0565b61391d816141df565b840191505092915050565b600061393382613dd7565b61393d8185613e2d565b935061394d818560208601613fd0565b80840191505092915050565b6000815461396681614003565b6139708186613e2d565b9450600182166000811461398b576001811461399c576139cf565b60ff198316865281860193506139cf565b6139a585613dac565b60005b838110156139c7578154818901526001820191506020810190506139a8565b838801955050505b50505092915050565b60006139e5602683613e1c565b91506139f0826141f0565b604082019050919050565b6000613a08601483613e1c565b9150613a138261423f565b602082019050919050565b6000613a2b602083613e1c565b9150613a3682614268565b602082019050919050565b6000613a4e601783613e1c565b9150613a5982614291565b602082019050919050565b6000613a71602f83613e1c565b9150613a7c826142ba565b604082019050919050565b6000613a94600083613e11565b9150613a9f82614309565b600082019050919050565b6000613ab7601483613e1c565b9150613ac28261430c565b602082019050919050565b6000613ada601383613e1c565b9150613ae582614335565b602082019050919050565b613af981613fb7565b82525050565b613b0881613fb7565b82525050565b6000613b1a8286613928565b9150613b268285613928565b9150613b328284613959565b9150819050949350505050565b6000613b4a82613a87565b9150819050919050565b6000602082019050613b69600083018461383a565b92915050565b6000608082019050613b84600083018761383a565b613b91602083018661383a565b613b9e6040830185613aff565b8181036060830152613bb081846138b6565b905095945050505050565b60006020820190508181036000830152613bd58184613849565b905092915050565b6000602082019050613bf260008301846138a7565b92915050565b60006020820190508181036000830152613c1281846138ef565b905092915050565b60006020820190508181036000830152613c33816139d8565b9050919050565b60006020820190508181036000830152613c53816139fb565b9050919050565b60006020820190508181036000830152613c7381613a1e565b9050919050565b60006020820190508181036000830152613c9381613a41565b9050919050565b60006020820190508181036000830152613cb381613a64565b9050919050565b60006020820190508181036000830152613cd381613aaa565b9050919050565b60006020820190508181036000830152613cf381613acd565b9050919050565b6000602082019050613d0f6000830184613aff565b92915050565b6000613d1f613d30565b9050613d2b8282614035565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5557613d5461419c565b5b613d5e826141df565b9050602081019050919050565b600067ffffffffffffffff821115613d8657613d8561419c565b5b613d8f826141df565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e4382613fb7565b9150613e4e83613fb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8357613e826140e0565b5b828201905092915050565b6000613e9982613fb7565b9150613ea483613fb7565b925082613eb457613eb361410f565b5b828204905092915050565b6000613eca82613fb7565b9150613ed583613fb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0e57613f0d6140e0565b5b828202905092915050565b6000613f2482613fb7565b9150613f2f83613fb7565b925082821015613f4257613f416140e0565b5b828203905092915050565b6000613f5882613f97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fee578082015181840152602081019050613fd3565b83811115613ffd576000848401525b50505050565b6000600282049050600182168061401b57607f821691505b6020821081141561402f5761402e61413e565b5b50919050565b61403e826141df565b810181811067ffffffffffffffff8211171561405d5761405c61419c565b5b80604052505050565b600061407182613fb7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140a4576140a36140e0565b5b600182019050919050565b60006140ba82613fb7565b91506140c583613fb7565b9250826140d5576140d461410f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61436781613f4d565b811461437257600080fd5b50565b61437e81613f5f565b811461438957600080fd5b50565b61439581613f6b565b81146143a057600080fd5b50565b6143ac81613fb7565b81146143b757600080fd5b5056fea26469706673582212202674252671c2e2279c4e0ff5a11cfdac349d88fa48224ed5a37704ad801ed5b264736f6c63430008070033697066733a2f2f516d656145686b6b663642765a327838693444386447684e66426270666b4134713563703759476242717448704c2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107f8578063e0a8085314610823578063e985e9c51461084c578063efbd73f414610889578063f2fde38b146108b257610225565b8063a22cb46514610715578063a45ba8e71461073e578063b071401b14610769578063b88d4fde14610792578063c87b56dd146107bb57610225565b80637ec4a659116100f25780637ec4a6591461064f5780638da5cb5b1461067857806394354fd0146106a357806395d89b41146106ce578063a0712d68146106f957610225565b806362b99ad4146105935780636352211e146105be57806370a08231146105fb578063715018a61461063857610225565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146104ac5780634fdd43cb146104e957806351830227146105125780635503a0e81461053d5780635c975abb1461056857610225565b80632f745c59146103c95780633ccfd60b1461040657806342842e0e1461041d578063438b63001461044657806344a0d68a1461048357610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806316c38b3c1461034c57806318160ddd1461037557806323b872dd146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613712565b6108db565b60405161025e9190613bdd565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190613bf8565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906137b5565b610ab7565b6040516102c69190613b54565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906136a5565b610b33565b005b34801561030457600080fd5b5061030d610c3e565b60405161031a9190613cfa565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061376c565b610c44565b005b34801561035857600080fd5b50610373600480360381019061036e91906136e5565b610cda565b005b34801561038157600080fd5b5061038a610d73565b6040516103979190613cfa565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c2919061358f565b610d7d565b005b3480156103d557600080fd5b506103f060048036038101906103eb91906136a5565b610d8d565b6040516103fd9190613cfa565b60405180910390f35b34801561041257600080fd5b5061041b610f94565b005b34801561042957600080fd5b50610444600480360381019061043f919061358f565b611090565b005b34801561045257600080fd5b5061046d60048036038101906104689190613522565b6110b0565b60405161047a9190613bbb565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906137b5565b6111bb565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906137b5565b611241565b6040516104e09190613cfa565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b919061376c565b6113b2565b005b34801561051e57600080fd5b50610527611448565b6040516105349190613bdd565b60405180910390f35b34801561054957600080fd5b5061055261145b565b60405161055f9190613bf8565b60405180910390f35b34801561057457600080fd5b5061057d6114e9565b60405161058a9190613bdd565b60405180910390f35b34801561059f57600080fd5b506105a86114fc565b6040516105b59190613bf8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906137b5565b61158a565b6040516105f29190613b54565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613522565b6115a0565b60405161062f9190613cfa565b60405180910390f35b34801561064457600080fd5b5061064d611670565b005b34801561065b57600080fd5b506106766004803603810190610671919061376c565b6116f8565b005b34801561068457600080fd5b5061068d61178e565b60405161069a9190613b54565b60405180910390f35b3480156106af57600080fd5b506106b86117b8565b6040516106c59190613cfa565b60405180910390f35b3480156106da57600080fd5b506106e36117be565b6040516106f09190613bf8565b60405180910390f35b610713600480360381019061070e91906137b5565b611850565b005b34801561072157600080fd5b5061073c60048036038101906107379190613665565b6119bb565b005b34801561074a57600080fd5b50610753611b33565b6040516107609190613bf8565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b91906137b5565b611bc1565b005b34801561079e57600080fd5b506107b960048036038101906107b491906135e2565b611c47565b005b3480156107c757600080fd5b506107e260048036038101906107dd91906137b5565b611c9a565b6040516107ef9190613bf8565b60405180910390f35b34801561080457600080fd5b5061080d611df3565b60405161081a9190613cfa565b60405180910390f35b34801561082f57600080fd5b5061084a600480360381019061084591906136e5565b611df9565b005b34801561085857600080fd5b50610873600480360381019061086e919061354f565b611e92565b6040516108809190613bdd565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906137e2565b611f26565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613522565b61206e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82612189565b5b9050919050565b606060018054610a3490614003565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090614003565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac2826121f3565b610af8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3e8261158a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc561225b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf75750610bf581610bf061225b565b611e92565b155b15610c2e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c39838383612263565b505050565b600b5481565b610c4c61225b565b73ffffffffffffffffffffffffffffffffffffffff16610c6a61178e565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613c5a565b60405180910390fd5b8060099080519060200190610cd69291906132f3565b5050565b610ce261225b565b73ffffffffffffffffffffffffffffffffffffffff16610d0061178e565b73ffffffffffffffffffffffffffffffffffffffff1614610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c5a565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610d88838383612315565b505050565b6000610d98836115a0565b8210610dd0576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610f88576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610ee75750610f7b565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f795786841415610f70578195505050505050610f8e565b83806001019450505b505b8080600101915050610e0a565b50600080fd5b92915050565b610f9c61225b565b73ffffffffffffffffffffffffffffffffffffffff16610fba61178e565b73ffffffffffffffffffffffffffffffffffffffff1614611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790613c5a565b60405180910390fd5b600061101a61178e565b73ffffffffffffffffffffffffffffffffffffffff164760405161103d90613b3f565b60006040518083038185875af1925050503d806000811461107a576040519150601f19603f3d011682016040523d82523d6000602084013e61107f565b606091505b505090508061108d57600080fd5b50565b6110ab83838360405180602001604052806000815250611c47565b505050565b606060006110bd836115a0565b905060008167ffffffffffffffff8111156110db576110da61419c565b5b6040519080825280602002602001820160405280156111095781602001602082028036833780820191505090505b50905060006001905060005b83811080156111265750600c548211155b156111af5760006111368361158a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561119b57828483815181106111805761117f61416d565b5b602002602001018181525050818061119790614066565b9250505b82806111a690614066565b93505050611115565b82945050505050919050565b6111c361225b565b73ffffffffffffffffffffffffffffffffffffffff166111e161178e565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613c5a565b60405180910390fd5b80600b8190555050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b8281101561137a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161136c578583141561136357819450505050506113ad565b82806001019350505b508080600101915050611279565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6113ba61225b565b73ffffffffffffffffffffffffffffffffffffffff166113d861178e565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590613c5a565b60405180910390fd5b80600a90805190602001906114449291906132f3565b5050565b600f60019054906101000a900460ff1681565b6009805461146890614003565b80601f016020809104026020016040519081016040528092919081815260200182805461149490614003565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6008805461150990614003565b80601f016020809104026020016040519081016040528092919081815260200182805461153590614003565b80156115825780601f1061155757610100808354040283529160200191611582565b820191906000526020600020905b81548152906001019060200180831161156557829003601f168201915b505050505081565b600061159582612832565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611608576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61167861225b565b73ffffffffffffffffffffffffffffffffffffffff1661169661178e565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613c5a565b60405180910390fd5b6116f66000612ada565b565b61170061225b565b73ffffffffffffffffffffffffffffffffffffffff1661171e61178e565b73ffffffffffffffffffffffffffffffffffffffff1614611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b90613c5a565b60405180910390fd5b806008908051906020019061178a9291906132f3565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600280546117cd90614003565b80601f01602080910402602001604051908101604052809291908181526020018280546117f990614003565b80156118465780601f1061181b57610100808354040283529160200191611846565b820191906000526020600020905b81548152906001019060200180831161182957829003601f168201915b5050505050905090565b806000811180156118635750600d548111155b6118a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189990613c3a565b60405180910390fd5b600c5481600e546118b39190613e38565b11156118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90613cba565b60405180910390fd5b600f60009054906101000a900460ff1615611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613c7a565b60405180910390fd5b81600b546119529190613ebf565b341015611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613cda565b60405180910390fd5b61199e3383612ba0565b81600e60008282546119b09190613e38565b925050819055505050565b6119c361225b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a28576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611a3561225b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ae261225b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b279190613bdd565b60405180910390a35050565b600a8054611b4090614003565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6c90614003565b8015611bb95780601f10611b8e57610100808354040283529160200191611bb9565b820191906000526020600020905b815481529060010190602001808311611b9c57829003601f168201915b505050505081565b611bc961225b565b73ffffffffffffffffffffffffffffffffffffffff16611be761178e565b73ffffffffffffffffffffffffffffffffffffffff1614611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613c5a565b60405180910390fd5b80600d8190555050565b611c52848484612315565b611c5e84848484612bbe565b611c94576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ca5826121f3565b611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613c9a565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611d9257600a8054611d0d90614003565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3990614003565b8015611d865780601f10611d5b57610100808354040283529160200191611d86565b820191906000526020600020905b815481529060010190602001808311611d6957829003601f168201915b50505050509050611dee565b6000611d9c612d4c565b90506000815111611dbc5760405180602001604052806000815250611dea565b80611dc684612dde565b6009604051602001611dda93929190613b0e565b6040516020818303038152906040525b9150505b919050565b600c5481565b611e0161225b565b73ffffffffffffffffffffffffffffffffffffffff16611e1f61178e565b73ffffffffffffffffffffffffffffffffffffffff1614611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90613c5a565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611f395750600d548111155b611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f90613c3a565b60405180910390fd5b600c5481600e54611f899190613e38565b1115611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190613cba565b60405180910390fd5b611fd261225b565b73ffffffffffffffffffffffffffffffffffffffff16611ff061178e565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613c5a565b60405180910390fd5b6120508284612ba0565b82600e60008282546120629190613e38565b92505081905550505050565b61207661225b565b73ffffffffffffffffffffffffffffffffffffffff1661209461178e565b73ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190613c5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190613c1a565b60405180910390fd5b61216381612ada565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612254575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061232082612832565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661234761225b565b73ffffffffffffffffffffffffffffffffffffffff16148061237a5750612379826000015161237461225b565b611e92565b5b806123bf575061238861225b565b73ffffffffffffffffffffffffffffffffffffffff166123a784610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612461576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d58585856001612f3f565b6124e56000848460000151612263565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c25760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127c15782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282b8585856001612f45565b5050505050565b61283a613379565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612aa3576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612aa157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612985578092505050612ad5565b5b600115612aa057818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a9b578092505050612ad5565b612986565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bba828260405180602001604052806000815250612f4b565b5050565b6000612bdf8473ffffffffffffffffffffffffffffffffffffffff16612166565b15612d3f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c0861225b565b8786866040518563ffffffff1660e01b8152600401612c2a9493929190613b6f565b602060405180830381600087803b158015612c4457600080fd5b505af1925050508015612c7557506040513d601f19601f82011682018060405250810190612c72919061373f565b60015b612cef573d8060008114612ca5576040519150601f19603f3d011682016040523d82523d6000602084013e612caa565b606091505b50600081511415612ce7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d44565b600190505b949350505050565b606060088054612d5b90614003565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8790614003565b8015612dd45780601f10612da957610100808354040283529160200191612dd4565b820191906000526020600020905b815481529060010190602001808311612db757829003601f168201915b5050505050905090565b60606000821415612e26576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f3a565b600082905060005b60008214612e58578080612e4190614066565b915050600a82612e519190613e8e565b9150612e2e565b60008167ffffffffffffffff811115612e7457612e7361419c565b5b6040519080825280601f01601f191660200182016040528015612ea65781602001600182028036833780820191505090505b5090505b60008514612f3357600182612ebf9190613f19565b9150600a85612ece91906140af565b6030612eda9190613e38565b60f81b818381518110612ef057612eef61416d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f2c9190613e8e565b9450612eaa565b8093505050505b919050565b50505050565b50505050565b612f588383836001612f5d565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ff8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613033576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130406000868387612f3f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156132a557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561325957506132576000888488612bbe565b155b15613290576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506131de565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506132ec6000868387612f45565b5050505050565b8280546132ff90614003565b90600052602060002090601f0160209004810192826133215760008555613368565b82601f1061333a57805160ff1916838001178555613368565b82800160010185558215613368579182015b8281111561336757825182559160200191906001019061334c565b5b50905061337591906133bc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133d55760008160009055506001016133bd565b5090565b60006133ec6133e784613d3a565b613d15565b905082815260208101848484011115613408576134076141d0565b5b613413848285613fc1565b509392505050565b600061342e61342984613d6b565b613d15565b90508281526020810184848401111561344a576134496141d0565b5b613455848285613fc1565b509392505050565b60008135905061346c8161435e565b92915050565b60008135905061348181614375565b92915050565b6000813590506134968161438c565b92915050565b6000815190506134ab8161438c565b92915050565b600082601f8301126134c6576134c56141cb565b5b81356134d68482602086016133d9565b91505092915050565b600082601f8301126134f4576134f36141cb565b5b813561350484826020860161341b565b91505092915050565b60008135905061351c816143a3565b92915050565b600060208284031215613538576135376141da565b5b60006135468482850161345d565b91505092915050565b60008060408385031215613566576135656141da565b5b60006135748582860161345d565b92505060206135858582860161345d565b9150509250929050565b6000806000606084860312156135a8576135a76141da565b5b60006135b68682870161345d565b93505060206135c78682870161345d565b92505060406135d88682870161350d565b9150509250925092565b600080600080608085870312156135fc576135fb6141da565b5b600061360a8782880161345d565b945050602061361b8782880161345d565b935050604061362c8782880161350d565b925050606085013567ffffffffffffffff81111561364d5761364c6141d5565b5b613659878288016134b1565b91505092959194509250565b6000806040838503121561367c5761367b6141da565b5b600061368a8582860161345d565b925050602061369b85828601613472565b9150509250929050565b600080604083850312156136bc576136bb6141da565b5b60006136ca8582860161345d565b92505060206136db8582860161350d565b9150509250929050565b6000602082840312156136fb576136fa6141da565b5b600061370984828501613472565b91505092915050565b600060208284031215613728576137276141da565b5b600061373684828501613487565b91505092915050565b600060208284031215613755576137546141da565b5b60006137638482850161349c565b91505092915050565b600060208284031215613782576137816141da565b5b600082013567ffffffffffffffff8111156137a05761379f6141d5565b5b6137ac848285016134df565b91505092915050565b6000602082840312156137cb576137ca6141da565b5b60006137d98482850161350d565b91505092915050565b600080604083850312156137f9576137f86141da565b5b60006138078582860161350d565b92505060206138188582860161345d565b9150509250929050565b600061382e8383613af0565b60208301905092915050565b61384381613f4d565b82525050565b600061385482613dc1565b61385e8185613def565b935061386983613d9c565b8060005b8381101561389a5781516138818882613822565b975061388c83613de2565b92505060018101905061386d565b5085935050505092915050565b6138b081613f5f565b82525050565b60006138c182613dcc565b6138cb8185613e00565b93506138db818560208601613fd0565b6138e4816141df565b840191505092915050565b60006138fa82613dd7565b6139048185613e1c565b9350613914818560208601613fd0565b61391d816141df565b840191505092915050565b600061393382613dd7565b61393d8185613e2d565b935061394d818560208601613fd0565b80840191505092915050565b6000815461396681614003565b6139708186613e2d565b9450600182166000811461398b576001811461399c576139cf565b60ff198316865281860193506139cf565b6139a585613dac565b60005b838110156139c7578154818901526001820191506020810190506139a8565b838801955050505b50505092915050565b60006139e5602683613e1c565b91506139f0826141f0565b604082019050919050565b6000613a08601483613e1c565b9150613a138261423f565b602082019050919050565b6000613a2b602083613e1c565b9150613a3682614268565b602082019050919050565b6000613a4e601783613e1c565b9150613a5982614291565b602082019050919050565b6000613a71602f83613e1c565b9150613a7c826142ba565b604082019050919050565b6000613a94600083613e11565b9150613a9f82614309565b600082019050919050565b6000613ab7601483613e1c565b9150613ac28261430c565b602082019050919050565b6000613ada601383613e1c565b9150613ae582614335565b602082019050919050565b613af981613fb7565b82525050565b613b0881613fb7565b82525050565b6000613b1a8286613928565b9150613b268285613928565b9150613b328284613959565b9150819050949350505050565b6000613b4a82613a87565b9150819050919050565b6000602082019050613b69600083018461383a565b92915050565b6000608082019050613b84600083018761383a565b613b91602083018661383a565b613b9e6040830185613aff565b8181036060830152613bb081846138b6565b905095945050505050565b60006020820190508181036000830152613bd58184613849565b905092915050565b6000602082019050613bf260008301846138a7565b92915050565b60006020820190508181036000830152613c1281846138ef565b905092915050565b60006020820190508181036000830152613c33816139d8565b9050919050565b60006020820190508181036000830152613c53816139fb565b9050919050565b60006020820190508181036000830152613c7381613a1e565b9050919050565b60006020820190508181036000830152613c9381613a41565b9050919050565b60006020820190508181036000830152613cb381613a64565b9050919050565b60006020820190508181036000830152613cd381613aaa565b9050919050565b60006020820190508181036000830152613cf381613acd565b9050919050565b6000602082019050613d0f6000830184613aff565b92915050565b6000613d1f613d30565b9050613d2b8282614035565b919050565b6000604051905090565b600067ffffffffffffffff821115613d5557613d5461419c565b5b613d5e826141df565b9050602081019050919050565b600067ffffffffffffffff821115613d8657613d8561419c565b5b613d8f826141df565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e4382613fb7565b9150613e4e83613fb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e8357613e826140e0565b5b828201905092915050565b6000613e9982613fb7565b9150613ea483613fb7565b925082613eb457613eb361410f565b5b828204905092915050565b6000613eca82613fb7565b9150613ed583613fb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0e57613f0d6140e0565b5b828202905092915050565b6000613f2482613fb7565b9150613f2f83613fb7565b925082821015613f4257613f416140e0565b5b828203905092915050565b6000613f5882613f97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fee578082015181840152602081019050613fd3565b83811115613ffd576000848401525b50505050565b6000600282049050600182168061401b57607f821691505b6020821081141561402f5761402e61413e565b5b50919050565b61403e826141df565b810181811067ffffffffffffffff8211171561405d5761405c61419c565b5b80604052505050565b600061407182613fb7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140a4576140a36140e0565b5b600182019050919050565b60006140ba82613fb7565b91506140c583613fb7565b9250826140d5576140d461410f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61436781613f4d565b811461437257600080fd5b50565b61437e81613f5f565b811461438957600080fd5b50565b61439581613f6b565b81146143a057600080fd5b50565b6143ac81613fb7565b81146143b757600080fd5b5056fea26469706673582212202674252671c2e2279c4e0ff5a11cfdac349d88fa48224ed5a37704ad801ed5b264736f6c63430008070033

Deployed Bytecode Sourcemap

47854:3554:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31316:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33926:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35429:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34992:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48049:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50967:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51073:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48694:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36286:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30139:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51156:137;;;;;;;;;;;;;:::i;:::-;;36527:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49279:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50507:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29126:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50723:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48233:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47971:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48203:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47938:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33735:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31752:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6225:103;;;;;;;;;;;;;:::i;:::-;;50861:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5574:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48121:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34095:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48795:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35705:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48009:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50587:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36783:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49920:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48086:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50420:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36055:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49083:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6483:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31316:372;31418:4;31470:25;31455:40;;;:11;:40;;;;:105;;;;31527:33;31512:48;;;:11;:48;;;;31455:105;:172;;;;31592:35;31577:50;;;:11;:50;;;;31455:172;:225;;;;31644:36;31668:11;31644:23;:36::i;:::-;31455:225;31435:245;;31316:372;;;:::o;33926:100::-;33980:13;34013:5;34006:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33926:100;:::o;35429:204::-;35497:7;35522:16;35530:7;35522;:16::i;:::-;35517:64;;35547:34;;;;;;;;;;;;;;35517:64;35601:15;:24;35617:7;35601:24;;;;;;;;;;;;;;;;;;;;;35594:31;;35429:204;;;:::o;34992:371::-;35065:13;35081:24;35097:7;35081:15;:24::i;:::-;35065:40;;35126:5;35120:11;;:2;:11;;;35116:48;;;35140:24;;;;;;;;;;;;;;35116:48;35197:5;35181:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35207:37;35224:5;35231:12;:10;:12::i;:::-;35207:16;:37::i;:::-;35206:38;35181:63;35177:138;;;35268:35;;;;;;;;;;;;;;35177:138;35327:28;35336:2;35340:7;35349:5;35327:8;:28::i;:::-;35054:309;34992:371;;:::o;48049:32::-;;;;:::o;50967:100::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51051:10:::1;51039:9;:22;;;;;;;;;;;;:::i;:::-;;50967:100:::0;:::o;51073:77::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51138:6:::1;51129;;:15;;;;;;;;;;;;;;;;;;51073:77:::0;:::o;48694:95::-;48747:7;48770:13;;48763:20;;48694:95;:::o;36286:170::-;36420:28;36430:4;36436:2;36440:7;36420:9;:28::i;:::-;36286:170;;;:::o;30139:1105::-;30228:7;30261:16;30271:5;30261:9;:16::i;:::-;30252:5;:25;30248:61;;30286:23;;;;;;;;;;;;;;30248:61;30320:22;30345:13;;;;;;;;;;;30320:38;;;;30369:19;30399:25;30600:9;30595:557;30615:14;30611:1;:18;30595:557;;;30655:31;30689:11;:14;30701:1;30689:14;;;;;;;;;;;30655:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30726:9;:16;;;30722:73;;;30767:8;;;30722:73;30843:1;30817:28;;:9;:14;;;:28;;;30813:111;;30890:9;:14;;;30870:34;;30813:111;30967:5;30946:26;;:17;:26;;;30942:195;;;31016:5;31001:11;:20;30997:85;;;31057:1;31050:8;;;;;;;;;30997:85;31104:13;;;;;;;30942:195;30636:516;30595:557;30631:3;;;;;;;30595:557;;;;31228:8;;;30139:1105;;;;;:::o;51156:137::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51201:7:::1;51222;:5;:7::i;:::-;51214:21;;51243;51214:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51200:69;;;51284:2;51276:11;;;::::0;::::1;;51193:100;51156:137::o:0;36527:185::-;36665:39;36682:4;36688:2;36692:7;36665:39;;;;;;;;;;;;:16;:39::i;:::-;36527:185;;;:::o;49279:635::-;49354:16;49382:23;49408:17;49418:6;49408:9;:17::i;:::-;49382:43;;49432:30;49479:15;49465:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49432:63;;49502:22;49527:1;49502:26;;49535:23;49571:309;49596:15;49578;:33;:64;;;;;49633:9;;49615:14;:27;;49578:64;49571:309;;;49653:25;49681:23;49689:14;49681:7;:23::i;:::-;49653:51;;49740:6;49719:27;;:17;:27;;;49715:131;;;49792:14;49759:13;49773:15;49759:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;49819:17;;;;;:::i;:::-;;;;49715:131;49856:16;;;;;:::i;:::-;;;;49644:236;49571:309;;;49895:13;49888:20;;;;;;49279:635;;;:::o;50507:74::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50570:5:::1;50563:4;:12;;;;50507:74:::0;:::o;29126:713::-;29193:7;29213:22;29238:13;;;;;;;;;;29213:38;;;;29262:19;29457:9;29452:328;29472:14;29468:1;:18;29452:328;;;29512:31;29546:11;:14;29558:1;29546:14;;;;;;;;;;;29512:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29584:9;:16;;;29579:186;;29644:5;29629:11;:20;29625:85;;;29685:1;29678:8;;;;;;;;29625:85;29732:13;;;;;;;29579:186;29493:287;29488:3;;;;;;;29452:328;;;;29808:23;;;;;;;;;;;;;;29126:713;;;;:::o;50723:132::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50831:18:::1;50811:17;:38;;;;;;;;;;;;:::i;:::-;;50723:132:::0;:::o;48233:28::-;;;;;;;;;;;;;:::o;47971:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48203:25::-;;;;;;;;;;;;;:::o;47938:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33735:124::-;33799:7;33826:20;33838:7;33826:11;:20::i;:::-;:25;;;33819:32;;33735:124;;;:::o;31752:206::-;31816:7;31857:1;31840:19;;:5;:19;;;31836:60;;;31868:28;;;;;;;;;;;;;;31836:60;31922:12;:19;31935:5;31922:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31914:36;;31907:43;;31752:206;;;:::o;6225:103::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6290:30:::1;6317:1;6290:18;:30::i;:::-;6225:103::o:0;50861:100::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50945:10:::1;50933:9;:22;;;;;;;;;;;;:::i;:::-;;50861:100:::0;:::o;5574:87::-;5620:7;5647:6;;;;;;;;;;;5640:13;;5574:87;:::o;48121:37::-;;;;:::o;34095:104::-;34151:13;34184:7;34177:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34095:104;:::o;48795:280::-;48860:11;48532:1;48518:11;:15;:52;;;;;48552:18;;48537:11;:33;;48518:52;48510:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48641:9;;48626:11;48610:13;;:27;;;;:::i;:::-;:40;;48602:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48889:6:::1;;;;;;;;;;;48888:7;48880:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48958:11;48951:4;;:18;;;;:::i;:::-;48938:9;:31;;48930:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49000:34;49010:10;49022:11;49000:9;:34::i;:::-;49058:11;49041:13;;:28;;;;;;;:::i;:::-;;;;;;;;48795:280:::0;;:::o;35705:279::-;35808:12;:10;:12::i;:::-;35796:24;;:8;:24;;;35792:54;;;35829:17;;;;;;;;;;;;;;35792:54;35904:8;35859:18;:32;35878:12;:10;:12::i;:::-;35859:32;;;;;;;;;;;;;;;:42;35892:8;35859:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35957:8;35928:48;;35943:12;:10;:12::i;:::-;35928:48;;;35967:8;35928:48;;;;;;:::i;:::-;;;;;;;;35705:279;;:::o;48009:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50587:130::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50692:19:::1;50671:18;:40;;;;50587:130:::0;:::o;36783:342::-;36950:28;36960:4;36966:2;36970:7;36950:9;:28::i;:::-;36994:48;37017:4;37023:2;37027:7;37036:5;36994:22;:48::i;:::-;36989:129;;37066:40;;;;;;;;;;;;;;36989:129;36783:342;;;;:::o;49920:494::-;50019:13;50060:17;50068:8;50060:7;:17::i;:::-;50044:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50167:5;50155:17;;:8;;;;;;;;;;;:17;;;50151:64;;;50190:17;50183:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50151:64;50223:28;50254:10;:8;:10::i;:::-;50223:41;;50309:1;50284:14;50278:28;:32;:130;;;;;;;;;;;;;;;;;50346:14;50362:19;:8;:17;:19::i;:::-;50383:9;50329:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50278:130;50271:137;;;49920:494;;;;:::o;48086:30::-;;;;:::o;50420:81::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50489:6:::1;50478:8;;:17;;;;;;;;;;;;;;;;;;50420:81:::0;:::o;36055:164::-;36152:4;36176:18;:25;36195:5;36176:25;;;;;;;;;;;;;;;:35;36202:8;36176:35;;;;;;;;;;;;;;;;;;;;;;;;;36169:42;;36055:164;;;;:::o;49083:190::-;49169:11;48532:1;48518:11;:15;:52;;;;;48552:18;;48537:11;:33;;48518:52;48510:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48641:9;;48626:11;48610:13;;:27;;;;:::i;:::-;:40;;48602:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5805:12:::1;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49199:33:::2;49209:9;49220:11;49199:9;:33::i;:::-;49256:11;49239:13;;:28;;;;;;;:::i;:::-;;;;;;;;49083:190:::0;;;:::o;6483:201::-;5805:12;:10;:12::i;:::-;5794:23;;:7;:5;:7::i;:::-;:23;;;5786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6592:1:::1;6572:22;;:8;:22;;;;6564:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6648:28;6667:8;6648:18;:28::i;:::-;6483:201:::0;:::o;8275:326::-;8335:4;8592:1;8570:7;:19;;;:23;8563:30;;8275:326;;;:::o;18358:157::-;18443:4;18482:25;18467:40;;;:11;:40;;;;18460:47;;18358:157;;;:::o;37380:144::-;37437:4;37471:13;;;;;;;;;;;37461:23;;:7;:23;:55;;;;;37489:11;:20;37501:7;37489:20;;;;;;;;;;;:27;;;;;;;;;;;;37488:28;37461:55;37454:62;;37380:144;;;:::o;4298:98::-;4351:7;4378:10;4371:17;;4298:98;:::o;44596:196::-;44738:2;44711:15;:24;44727:7;44711:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44776:7;44772:2;44756:28;;44765:5;44756:28;;;;;;;;;;;;44596:196;;;:::o;40097:2112::-;40212:35;40250:20;40262:7;40250:11;:20::i;:::-;40212:58;;40283:22;40325:13;:18;;;40309:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40360:50;40377:13;:18;;;40397:12;:10;:12::i;:::-;40360:16;:50::i;:::-;40309:101;:154;;;;40451:12;:10;:12::i;:::-;40427:36;;:20;40439:7;40427:11;:20::i;:::-;:36;;;40309:154;40283:181;;40482:17;40477:66;;40508:35;;;;;;;;;;;;;;40477:66;40580:4;40558:26;;:13;:18;;;:26;;;40554:67;;40593:28;;;;;;;;;;;;;;40554:67;40650:1;40636:16;;:2;:16;;;40632:52;;;40661:23;;;;;;;;;;;;;;40632:52;40697:43;40719:4;40725:2;40729:7;40738:1;40697:21;:43::i;:::-;40805:49;40822:1;40826:7;40835:13;:18;;;40805:8;:49::i;:::-;41180:1;41150:12;:18;41163:4;41150:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41224:1;41196:12;:16;41209:2;41196:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41270:2;41242:11;:20;41254:7;41242:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41332:15;41287:11;:20;41299:7;41287:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41600:19;41632:1;41622:7;:11;41600:33;;41693:1;41652:43;;:11;:24;41664:11;41652:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41648:445;;;41877:13;;;;;;;;;;41863:27;;:11;:27;41859:219;;;41947:13;:18;;;41915:11;:24;41927:11;41915:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42030:13;:28;;;41988:11;:24;42000:11;41988:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41859:219;41648:445;41125:979;42140:7;42136:2;42121:27;;42130:4;42121:27;;;;;;;;;;;;42159:42;42180:4;42186:2;42190:7;42199:1;42159:20;:42::i;:::-;40201:2008;;40097:2112;;;:::o;32590:1083::-;32651:21;;:::i;:::-;32685:12;32700:7;32685:22;;32756:13;;;;;;;;;;32749:20;;:4;:20;32745:861;;;32790:31;32824:11;:17;32836:4;32824:17;;;;;;;;;;;32790:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32865:9;:16;;;32860:731;;32936:1;32910:28;;:9;:14;;;:28;;;32906:101;;32974:9;32967:16;;;;;;32906:101;33311:261;33318:4;33311:261;;;33351:6;;;;;;;;33396:11;:17;33408:4;33396:17;;;;;;;;;;;33384:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33470:1;33444:28;;:9;:14;;;:28;;;33440:109;;33512:9;33505:16;;;;;;33440:109;33311:261;;;32860:731;32771:835;32745:861;33634:31;;;;;;;;;;;;;;32590:1083;;;;:::o;6844:191::-;6918:16;6937:6;;;;;;;;;;;6918:25;;6963:8;6954:6;;:17;;;;;;;;;;;;;;;;;;7018:8;6987:40;;7008:8;6987:40;;;;;;;;;;;;6907:128;6844:191;:::o;37532:104::-;37601:27;37611:2;37615:8;37601:27;;;;;;;;;;;;:9;:27::i;:::-;37532:104;;:::o;45357:790::-;45512:4;45533:15;:2;:13;;;:15::i;:::-;45529:611;;;45585:2;45569:36;;;45606:12;:10;:12::i;:::-;45620:4;45626:7;45635:5;45569:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45565:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45832:1;45815:6;:13;:18;45811:259;;;45865:40;;;;;;;;;;;;;;45811:259;46020:6;46014:13;46005:6;46001:2;45997:15;45990:38;45565:520;45702:45;;;45692:55;;;:6;:55;;;;45685:62;;;;;45529:611;46124:4;46117:11;;45357:790;;;;;;;:::o;51301:104::-;51361:13;51390:9;51383:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51301:104;:::o;1860:723::-;1916:13;2146:1;2137:5;:10;2133:53;;;2164:10;;;;;;;;;;;;;;;;;;;;;2133:53;2196:12;2211:5;2196:20;;2227:14;2252:78;2267:1;2259:4;:9;2252:78;;2285:8;;;;;:::i;:::-;;;;2316:2;2308:10;;;;;:::i;:::-;;;2252:78;;;2340:19;2372:6;2362:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2340:39;;2390:154;2406:1;2397:5;:10;2390:154;;2434:1;2424:11;;;;;:::i;:::-;;;2501:2;2493:5;:10;;;;:::i;:::-;2480:2;:24;;;;:::i;:::-;2467:39;;2450:6;2457;2450:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2530:2;2521:11;;;;;:::i;:::-;;;2390:154;;;2568:6;2554:21;;;;;1860:723;;;;:::o;46795:159::-;;;;;:::o;47613:158::-;;;;;:::o;37999:163::-;38122:32;38128:2;38132:8;38142:5;38149:4;38122:5;:32::i;:::-;37999:163;;;:::o;38421:1422::-;38560:20;38583:13;;;;;;;;;;;38560:36;;;;38625:1;38611:16;;:2;:16;;;38607:48;;;38636:19;;;;;;;;;;;;;;38607:48;38682:1;38670:8;:13;38666:44;;;38692:18;;;;;;;;;;;;;;38666:44;38723:61;38753:1;38757:2;38761:12;38775:8;38723:21;:61::i;:::-;39097:8;39062:12;:16;39075:2;39062:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39161:8;39121:12;:16;39134:2;39121:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39220:2;39187:11;:25;39199:12;39187:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39287:15;39237:11;:25;39249:12;39237:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39320:20;39343:12;39320:35;;39377:9;39372:328;39392:8;39388:1;:12;39372:328;;;39456:12;39452:2;39431:38;;39448:1;39431:38;;;;;;;;;;;;39492:4;:68;;;;;39501:59;39532:1;39536:2;39540:12;39554:5;39501:22;:59::i;:::-;39500:60;39492:68;39488:164;;;39592:40;;;;;;;;;;;;;;39488:164;39670:14;;;;;;;39402:3;;;;;;;39372:328;;;;39740:12;39716:13;;:37;;;;;;;;;;;;;;;;;;39037:728;39775:60;39804:1;39808:2;39812:12;39826:8;39775:20;:60::i;:::-;38549:1294;38421:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:398::-;13172:3;13193:83;13274:1;13269:3;13193:83;:::i;:::-;13186:90;;13285:93;13374:3;13285:93;:::i;:::-;13403:1;13398:3;13394:11;13387:18;;13013:398;;;:::o;13417:366::-;13559:3;13580:67;13644:2;13639:3;13580:67;:::i;:::-;13573:74;;13656:93;13745:3;13656:93;:::i;:::-;13774:2;13769:3;13765:12;13758:19;;13417:366;;;:::o;13789:::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:108::-;14238:24;14256:5;14238:24;:::i;:::-;14233:3;14226:37;14161:108;;:::o;14275:118::-;14362:24;14380:5;14362:24;:::i;:::-;14357:3;14350:37;14275:118;;:::o;14399:589::-;14624:3;14646:95;14737:3;14728:6;14646:95;:::i;:::-;14639:102;;14758:95;14849:3;14840:6;14758:95;:::i;:::-;14751:102;;14870:92;14958:3;14949:6;14870:92;:::i;:::-;14863:99;;14979:3;14972:10;;14399:589;;;;;;:::o;14994:379::-;15178:3;15200:147;15343:3;15200:147;:::i;:::-;15193:154;;15364:3;15357:10;;14994:379;;;:::o;15379:222::-;15472:4;15510:2;15499:9;15495:18;15487:26;;15523:71;15591:1;15580:9;15576:17;15567:6;15523:71;:::i;:::-;15379:222;;;;:::o;15607:640::-;15802:4;15840:3;15829:9;15825:19;15817:27;;15854:71;15922:1;15911:9;15907:17;15898:6;15854:71;:::i;:::-;15935:72;16003:2;15992:9;15988:18;15979:6;15935:72;:::i;:::-;16017;16085:2;16074:9;16070:18;16061:6;16017:72;:::i;:::-;16136:9;16130:4;16126:20;16121:2;16110:9;16106:18;16099:48;16164:76;16235:4;16226:6;16164:76;:::i;:::-;16156:84;;15607:640;;;;;;;:::o;16253:373::-;16396:4;16434:2;16423:9;16419:18;16411:26;;16483:9;16477:4;16473:20;16469:1;16458:9;16454:17;16447:47;16511:108;16614:4;16605:6;16511:108;:::i;:::-;16503:116;;16253:373;;;;:::o;16632:210::-;16719:4;16757:2;16746:9;16742:18;16734:26;;16770:65;16832:1;16821:9;16817:17;16808:6;16770:65;:::i;:::-;16632:210;;;;:::o;16848:313::-;16961:4;16999:2;16988:9;16984:18;16976:26;;17048:9;17042:4;17038:20;17034:1;17023:9;17019:17;17012:47;17076:78;17149:4;17140:6;17076:78;:::i;:::-;17068:86;;16848:313;;;;:::o;17167:419::-;17333:4;17371:2;17360:9;17356:18;17348:26;;17420:9;17414:4;17410:20;17406:1;17395:9;17391:17;17384:47;17448:131;17574:4;17448:131;:::i;:::-;17440:139;;17167:419;;;:::o;17592:::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:::-;18183:4;18221:2;18210:9;18206:18;18198:26;;18270:9;18264:4;18260:20;18256:1;18245:9;18241:17;18234:47;18298:131;18424:4;18298:131;:::i;:::-;18290:139;;18017:419;;;:::o;18442:::-;18608:4;18646:2;18635:9;18631:18;18623:26;;18695:9;18689:4;18685:20;18681:1;18670:9;18666:17;18659:47;18723:131;18849:4;18723:131;:::i;:::-;18715:139;;18442:419;;;:::o;18867:::-;19033:4;19071:2;19060:9;19056:18;19048:26;;19120:9;19114:4;19110:20;19106:1;19095:9;19091:17;19084:47;19148:131;19274:4;19148:131;:::i;:::-;19140:139;;18867:419;;;:::o;19292:::-;19458:4;19496:2;19485:9;19481:18;19473:26;;19545:9;19539:4;19535:20;19531:1;19520:9;19516:17;19509:47;19573:131;19699:4;19573:131;:::i;:::-;19565:139;;19292:419;;;:::o;19717:::-;19883:4;19921:2;19910:9;19906:18;19898:26;;19970:9;19964:4;19960:20;19956:1;19945:9;19941:17;19934:47;19998:131;20124:4;19998:131;:::i;:::-;19990:139;;19717:419;;;:::o;20142:222::-;20235:4;20273:2;20262:9;20258:18;20250:26;;20286:71;20354:1;20343:9;20339:17;20330:6;20286:71;:::i;:::-;20142:222;;;;:::o;20370:129::-;20404:6;20431:20;;:::i;:::-;20421:30;;20460:33;20488:4;20480:6;20460:33;:::i;:::-;20370:129;;;:::o;20505:75::-;20538:6;20571:2;20565:9;20555:19;;20505:75;:::o;20586:307::-;20647:4;20737:18;20729:6;20726:30;20723:56;;;20759:18;;:::i;:::-;20723:56;20797:29;20819:6;20797:29;:::i;:::-;20789:37;;20881:4;20875;20871:15;20863:23;;20586:307;;;:::o;20899:308::-;20961:4;21051:18;21043:6;21040:30;21037:56;;;21073:18;;:::i;:::-;21037:56;21111:29;21133:6;21111:29;:::i;:::-;21103:37;;21195:4;21189;21185:15;21177:23;;20899:308;;;:::o;21213:132::-;21280:4;21303:3;21295:11;;21333:4;21328:3;21324:14;21316:22;;21213:132;;;:::o;21351:141::-;21400:4;21423:3;21415:11;;21446:3;21443:1;21436:14;21480:4;21477:1;21467:18;21459:26;;21351:141;;;:::o;21498:114::-;21565:6;21599:5;21593:12;21583:22;;21498:114;;;:::o;21618:98::-;21669:6;21703:5;21697:12;21687:22;;21618:98;;;:::o;21722:99::-;21774:6;21808:5;21802:12;21792:22;;21722:99;;;:::o;21827:113::-;21897:4;21929;21924:3;21920:14;21912:22;;21827:113;;;:::o;21946:184::-;22045:11;22079:6;22074:3;22067:19;22119:4;22114:3;22110:14;22095:29;;21946:184;;;;:::o;22136:168::-;22219:11;22253:6;22248:3;22241:19;22293:4;22288:3;22284:14;22269:29;;22136:168;;;;:::o;22310:147::-;22411:11;22448:3;22433:18;;22310:147;;;;:::o;22463:169::-;22547:11;22581:6;22576:3;22569:19;22621:4;22616:3;22612:14;22597:29;;22463:169;;;;:::o;22638:148::-;22740:11;22777:3;22762:18;;22638:148;;;;:::o;22792:305::-;22832:3;22851:20;22869:1;22851:20;:::i;:::-;22846:25;;22885:20;22903:1;22885:20;:::i;:::-;22880:25;;23039:1;22971:66;22967:74;22964:1;22961:81;22958:107;;;23045:18;;:::i;:::-;22958:107;23089:1;23086;23082:9;23075:16;;22792:305;;;;:::o;23103:185::-;23143:1;23160:20;23178:1;23160:20;:::i;:::-;23155:25;;23194:20;23212:1;23194:20;:::i;:::-;23189:25;;23233:1;23223:35;;23238:18;;:::i;:::-;23223:35;23280:1;23277;23273:9;23268:14;;23103:185;;;;:::o;23294:348::-;23334:7;23357:20;23375:1;23357:20;:::i;:::-;23352:25;;23391:20;23409:1;23391:20;:::i;:::-;23386:25;;23579:1;23511:66;23507:74;23504:1;23501:81;23496:1;23489:9;23482:17;23478:105;23475:131;;;23586:18;;:::i;:::-;23475:131;23634:1;23631;23627:9;23616:20;;23294:348;;;;:::o;23648:191::-;23688:4;23708:20;23726:1;23708:20;:::i;:::-;23703:25;;23742:20;23760:1;23742:20;:::i;:::-;23737:25;;23781:1;23778;23775:8;23772:34;;;23786:18;;:::i;:::-;23772:34;23831:1;23828;23824:9;23816:17;;23648:191;;;;:::o;23845:96::-;23882:7;23911:24;23929:5;23911:24;:::i;:::-;23900:35;;23845:96;;;:::o;23947:90::-;23981:7;24024:5;24017:13;24010:21;23999:32;;23947:90;;;:::o;24043:149::-;24079:7;24119:66;24112:5;24108:78;24097:89;;24043:149;;;:::o;24198:126::-;24235:7;24275:42;24268:5;24264:54;24253:65;;24198:126;;;:::o;24330:77::-;24367:7;24396:5;24385:16;;24330:77;;;:::o;24413:154::-;24497:6;24492:3;24487;24474:30;24559:1;24550:6;24545:3;24541:16;24534:27;24413:154;;;:::o;24573:307::-;24641:1;24651:113;24665:6;24662:1;24659:13;24651:113;;;24750:1;24745:3;24741:11;24735:18;24731:1;24726:3;24722:11;24715:39;24687:2;24684:1;24680:10;24675:15;;24651:113;;;24782:6;24779:1;24776:13;24773:101;;;24862:1;24853:6;24848:3;24844:16;24837:27;24773:101;24622:258;24573:307;;;:::o;24886:320::-;24930:6;24967:1;24961:4;24957:12;24947:22;;25014:1;25008:4;25004:12;25035:18;25025:81;;25091:4;25083:6;25079:17;25069:27;;25025:81;25153:2;25145:6;25142:14;25122:18;25119:38;25116:84;;;25172:18;;:::i;:::-;25116:84;24937:269;24886:320;;;:::o;25212:281::-;25295:27;25317:4;25295:27;:::i;:::-;25287:6;25283:40;25425:6;25413:10;25410:22;25389:18;25377:10;25374:34;25371:62;25368:88;;;25436:18;;:::i;:::-;25368:88;25476:10;25472:2;25465:22;25255:238;25212:281;;:::o;25499:233::-;25538:3;25561:24;25579:5;25561:24;:::i;:::-;25552:33;;25607:66;25600:5;25597:77;25594:103;;;25677:18;;:::i;:::-;25594:103;25724:1;25717:5;25713:13;25706:20;;25499:233;;;:::o;25738:176::-;25770:1;25787:20;25805:1;25787:20;:::i;:::-;25782:25;;25821:20;25839:1;25821:20;:::i;:::-;25816:25;;25860:1;25850:35;;25865:18;;:::i;:::-;25850:35;25906:1;25903;25899:9;25894:14;;25738:176;;;;:::o;25920:180::-;25968:77;25965:1;25958:88;26065:4;26062:1;26055:15;26089:4;26086:1;26079:15;26106:180;26154:77;26151:1;26144:88;26251:4;26248:1;26241:15;26275:4;26272:1;26265:15;26292:180;26340:77;26337:1;26330:88;26437:4;26434:1;26427:15;26461:4;26458:1;26451:15;26478:180;26526:77;26523:1;26516:88;26623:4;26620:1;26613:15;26647:4;26644:1;26637:15;26664:180;26712:77;26709:1;26702:88;26809:4;26806:1;26799:15;26833:4;26830:1;26823:15;26850:117;26959:1;26956;26949:12;26973:117;27082:1;27079;27072:12;27096:117;27205:1;27202;27195:12;27219:117;27328:1;27325;27318:12;27342:102;27383:6;27434:2;27430:7;27425:2;27418:5;27414:14;27410:28;27400:38;;27342:102;;;:::o;27450:225::-;27590:34;27586:1;27578:6;27574:14;27567:58;27659:8;27654:2;27646:6;27642:15;27635:33;27450:225;:::o;27681:170::-;27821:22;27817:1;27809:6;27805:14;27798:46;27681:170;:::o;27857:182::-;27997:34;27993:1;27985:6;27981:14;27974:58;27857:182;:::o;28045:173::-;28185:25;28181:1;28173:6;28169:14;28162:49;28045:173;:::o;28224:234::-;28364:34;28360:1;28352:6;28348:14;28341:58;28433:17;28428:2;28420:6;28416:15;28409:42;28224:234;:::o;28464:114::-;;:::o;28584:170::-;28724:22;28720:1;28712:6;28708:14;28701:46;28584:170;:::o;28760:169::-;28900:21;28896:1;28888:6;28884:14;28877:45;28760:169;:::o;28935:122::-;29008:24;29026:5;29008:24;:::i;:::-;29001:5;28998:35;28988:63;;29047:1;29044;29037:12;28988:63;28935:122;:::o;29063:116::-;29133:21;29148:5;29133:21;:::i;:::-;29126:5;29123:32;29113:60;;29169:1;29166;29159:12;29113:60;29063:116;:::o;29185:120::-;29257:23;29274:5;29257:23;:::i;:::-;29250:5;29247:34;29237:62;;29295:1;29292;29285:12;29237:62;29185:120;:::o;29311:122::-;29384:24;29402:5;29384:24;:::i;:::-;29377:5;29374:35;29364:63;;29423:1;29420;29413:12;29364:63;29311:122;:::o

Swarm Source

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