ETH Price: $3,279.36 (+0.75%)
Gas: 5 Gwei

Token

Rare Pepe Punks (RARE)
 

Overview

Max Total Supply

10,000 RARE

Holders

1,082

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
t1ger.eth
Balance
50 RARE
0x63dc4f566aD10D88284a9a6cB39d935eaF75ba83
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:
RarePepePunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

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/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // 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 returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @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) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        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.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @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;
    }

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _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 > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(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) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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**256.
        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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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('ERC721A: transfer to non ERC721Receiver implementer');
                } 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.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: MutantAIYachtClub.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

//newerc.sol
pragma solidity ^0.8.0;


contract RarePepePunks is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = "";
    string public notRevealedUri;
    bool public revealed = true;
    uint   public maxPerTx          = 100;
    uint   public maxPerFree        = 2;
    uint   public totalFree         = 2000;
    uint256 public price = 0.0055 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxperAddressPublicMint = 100;
    bool  public mintEnabled = true;
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) public _mintedFreeAmount;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
        ) 
        ERC721A(_name, _symbol) {
        _safeMint(msg.sender, 100);
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }


    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxPerFree;
             totalFreeMinted += maxPerFree;
            }
            else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

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

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

    function maxFreePerWallet() public view returns (uint256) {
      return maxPerFree;
    }

    function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }
 

    

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
   {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
    }
 
    

    function reveal() public onlyOwner() {
      revealed = true;
    }


    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }
    
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

  
    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }


  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000991565b506001600c60006101000a81548160ff0219169083151502179055506064600d556002600e556107d0600f5566138a388a43c00060105561271060115560646012556001601360006101000a81548160ff02191690831515021790555060006014553480156200009a57600080fd5b5060405162006154380380620061548339818101604052810190620000c0919062000b08565b83838160019080519060200190620000da92919062000991565b508060029080519060200190620000f392919062000991565b505050620001166200010a6200017860201b60201c565b6200018060201b60201c565b6000600760146101000a81548160ff02191690831515021790555060016008819055506200014c3360646200024660201b60201c565b6200015d826200026c60201b60201c565b6200016e816200031760201b60201c565b505050506200111c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000268828260405180602001604052806000815250620003c260201b60201c565b5050565b6200027c6200017860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a2620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f29062000d49565b60405180910390fd5b80600990805190602001906200031392919062000991565b5050565b620003276200017860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034d620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039d9062000d49565b60405180910390fd5b80600b9080519060200190620003be92919062000991565b5050565b620003d783838360016200040660201b60201c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200047f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004769062000d8d565b60405180910390fd5b6000841415620004c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bd9062000daf565b60405180910390fd5b620004db6000868387620007a860201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200078357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156200076d576200072a6000888488620007ae60201b60201c565b6200076c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007639062000d6b565b60405180910390fd5b5b81806001019250508080600101915050620006a9565b508060008190555050620007a160008683876200096860201b60201c565b5050505050565b50505050565b6000620007dc8473ffffffffffffffffffffffffffffffffffffffff166200096e60201b6200251a1760201c565b156200095b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200080e6200017860201b60201c565b8786866040518563ffffffff1660e01b815260040162000832949392919062000cf5565b602060405180830381600087803b1580156200084d57600080fd5b505af19250505080156200088157506040513d601f19601f820116820180604052508101906200087e919062000ad6565b60015b6200090a573d8060008114620008b4576040519150601f19603f3d011682016040523d82523d6000602084013e620008b9565b606091505b5060008151141562000902576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f99062000d6b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000960565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200099f9062000efd565b90600052602060002090601f016020900481019282620009c3576000855562000a0f565b82601f10620009de57805160ff191683800117855562000a0f565b8280016001018555821562000a0f579182015b8281111562000a0e578251825591602001919060010190620009f1565b5b50905062000a1e919062000a22565b5090565b5b8082111562000a3d57600081600090555060010162000a23565b5090565b600062000a5862000a528462000dfa565b62000dd1565b90508281526020810184848401111562000a775762000a7662000fcc565b5b62000a8484828562000ec7565b509392505050565b60008151905062000a9d8162001102565b92915050565b600082601f83011262000abb5762000aba62000fc7565b5b815162000acd84826020860162000a41565b91505092915050565b60006020828403121562000aef5762000aee62000fd6565b5b600062000aff8482850162000a8c565b91505092915050565b6000806000806080858703121562000b255762000b2462000fd6565b5b600085015167ffffffffffffffff81111562000b465762000b4562000fd1565b5b62000b548782880162000aa3565b945050602085015167ffffffffffffffff81111562000b785762000b7762000fd1565b5b62000b868782880162000aa3565b935050604085015167ffffffffffffffff81111562000baa5762000ba962000fd1565b5b62000bb88782880162000aa3565b925050606085015167ffffffffffffffff81111562000bdc5762000bdb62000fd1565b5b62000bea8782880162000aa3565b91505092959194509250565b62000c018162000e5d565b82525050565b600062000c148262000e30565b62000c20818562000e3b565b935062000c3281856020860162000ec7565b62000c3d8162000fdb565b840191505092915050565b600062000c5760208362000e4c565b915062000c648262000fec565b602082019050919050565b600062000c7e60338362000e4c565b915062000c8b8262001015565b604082019050919050565b600062000ca560218362000e4c565b915062000cb28262001064565b604082019050919050565b600062000ccc60288362000e4c565b915062000cd982620010b3565b604082019050919050565b62000cef8162000ebd565b82525050565b600060808201905062000d0c600083018762000bf6565b62000d1b602083018662000bf6565b62000d2a604083018562000ce4565b818103606083015262000d3e818462000c07565b905095945050505050565b6000602082019050818103600083015262000d648162000c48565b9050919050565b6000602082019050818103600083015262000d868162000c6f565b9050919050565b6000602082019050818103600083015262000da88162000c96565b9050919050565b6000602082019050818103600083015262000dca8162000cbd565b9050919050565b600062000ddd62000df0565b905062000deb828262000f33565b919050565b6000604051905090565b600067ffffffffffffffff82111562000e185762000e1762000f98565b5b62000e238262000fdb565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e6a8262000e9d565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ee757808201518184015260208101905062000eca565b8381111562000ef7576000848401525b50505050565b6000600282049050600182168062000f1657607f821691505b6020821081141562000f2d5762000f2c62000f69565b5b50919050565b62000f3e8262000fdb565b810181811067ffffffffffffffff8211171562000f605762000f5f62000f98565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6200110d8162000e71565b81146200111957600080fd5b50565b615028806200112c6000396000f3fe6080604052600436106102675760003560e01c806391b7f5ed11610144578063c87b56dd116100b6578063e945971c1161007a578063e945971c146108e0578063e985e9c514610909578063f2c4ce1e14610946578063f2fde38b1461096f578063f4db2acb14610998578063f968adbe146109d557610267565b8063c87b56dd146107f9578063d123973014610836578063d5abeb0114610861578063da3ef23f1461088c578063dad7b5c9146108b557610267565b8063a22cb46511610108578063a22cb4651461070f578063a475b5dd14610738578063a70273571461074f578063b88d4fde1461077a578063c6682862146107a3578063c7c39ffc146107ce57610267565b806391b7f5ed1461064b57806395d89b411461067457806396ea3a471461069f578063a035b1fe146106c8578063a0712d68146106f357610267565b806342842e0e116101dd5780635c975abb116101a15780635c975abb146105395780636352211e146105645780636c0360eb146105a157806370a08231146105cc578063715018a6146106095780638da5cb5b1461062057610267565b806342842e0e146104565780634f6ccce71461047f57806351830227146104bc57806355f804b3146104e75780635a963f1b1461051057610267565b806318160ddd1161022f57806318160ddd1461036557806323b872dd146103905780632f745c59146103b9578063333e44e6146103f657806334c8fd75146104215780633ccfd60b1461044c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063081c8c4414610311578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a68565b610a00565b6040516102a091906140c2565b60405180910390f35b3480156102b557600080fd5b506102be610b4a565b6040516102cb91906140dd565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613b0b565b610bdc565b604051610308919061405b565b60405180910390f35b34801561031d57600080fd5b50610326610c61565b60405161033391906140dd565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e91906139a7565b610cef565b005b34801561037157600080fd5b5061037a610e08565b604051610387919061441f565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613891565b610e11565b005b3480156103c557600080fd5b506103e060048036038101906103db91906139a7565b610e21565b6040516103ed919061441f565b60405180910390f35b34801561040257600080fd5b5061040b611013565b604051610418919061441f565b60405180910390f35b34801561042d57600080fd5b50610436611019565b604051610443919061441f565b60405180910390f35b61045461101f565b005b34801561046257600080fd5b5061047d60048036038101906104789190613891565b611114565b005b34801561048b57600080fd5b506104a660048036038101906104a19190613b0b565b611134565b6040516104b3919061441f565b60405180910390f35b3480156104c857600080fd5b506104d1611187565b6040516104de91906140c2565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613ac2565b61119a565b005b34801561051c57600080fd5b5061053760048036038101906105329190613b0b565b611230565b005b34801561054557600080fd5b5061054e6112b6565b60405161055b91906140c2565b60405180910390f35b34801561057057600080fd5b5061058b60048036038101906105869190613b0b565b6112cd565b604051610598919061405b565b60405180910390f35b3480156105ad57600080fd5b506105b66112e3565b6040516105c391906140dd565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613824565b611371565b604051610600919061441f565b60405180910390f35b34801561061557600080fd5b5061061e61145a565b005b34801561062c57600080fd5b506106356114e2565b604051610642919061405b565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613b0b565b61150c565b005b34801561068057600080fd5b50610689611592565b60405161069691906140dd565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906139e7565b611624565b005b3480156106d457600080fd5b506106dd611806565b6040516106ea919061441f565b60405180910390f35b61070d60048036038101906107089190613b0b565b61180c565b005b34801561071b57600080fd5b5061073660048036038101906107319190613967565b611d32565b005b34801561074457600080fd5b5061074d611eb3565b005b34801561075b57600080fd5b50610764611f4c565b604051610771919061441f565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906138e4565b611f56565b005b3480156107af57600080fd5b506107b8611fb2565b6040516107c591906140dd565b60405180910390f35b3480156107da57600080fd5b506107e3612040565b6040516107f0919061441f565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190613b0b565b612046565b60405161082d91906140dd565b60405180910390f35b34801561084257600080fd5b5061084b61219f565b60405161085891906140c2565b60405180910390f35b34801561086d57600080fd5b506108766121b2565b604051610883919061441f565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613ac2565b6121b8565b005b3480156108c157600080fd5b506108ca61224e565b6040516108d7919061441f565b60405180910390f35b3480156108ec57600080fd5b5061090760048036038101906109029190613b0b565b612254565b005b34801561091557600080fd5b50610930600480360381019061092b9190613851565b6122da565b60405161093d91906140c2565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613ac2565b61236e565b005b34801561097b57600080fd5b5061099660048036038101906109919190613824565b612404565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613824565b6124fc565b6040516109cc919061441f565b60405180910390f35b3480156109e157600080fd5b506109ea612514565b6040516109f7919061441f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610acb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b435750610b428261253d565b5b9050919050565b606060018054610b59906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b85906146ef565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b6000610be7826125a7565b610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906143ff565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610c6e906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a906146ef565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b505050505081565b6000610cfa826112cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d629061431f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d8a6125b4565b73ffffffffffffffffffffffffffffffffffffffff161480610db95750610db881610db36125b4565b6122da565b5b610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906141ff565b60405180910390fd5b610e038383836125bc565b505050565b60008054905090565b610e1c83838361266e565b505050565b6000610e2c83611371565b8210610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906140ff565b60405180910390fd5b6000610e77610e08565b905060008060005b83811015610fd1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f7157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc35786841415610fba57819550505050505061100d565b83806001019450505b508080600101915050610e7f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906143bf565b60405180910390fd5b92915050565b600f5481565b60125481565b6110276125b4565b73ffffffffffffffffffffffffffffffffffffffff166110456114e2565b73ffffffffffffffffffffffffffffffffffffffff161461109b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110929061429f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110c190614046565b60006040518083038185875af1925050503d80600081146110fe576040519150601f19603f3d011682016040523d82523d6000602084013e611103565b606091505b505090508061111157600080fd5b50565b61112f83838360405180602001604052806000815250611f56565b505050565b600061113e610e08565b821061117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061419f565b60405180910390fd5b819050919050565b600c60009054906101000a900460ff1681565b6111a26125b4565b73ffffffffffffffffffffffffffffffffffffffff166111c06114e2565b73ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061429f565b60405180910390fd5b806009908051906020019061122c929190613552565b5050565b6112386125b4565b73ffffffffffffffffffffffffffffffffffffffff166112566114e2565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a39061429f565b60405180910390fd5b80600f8190555050565b6000600760149054906101000a900460ff16905090565b60006112d882612bae565b600001519050919050565b600980546112f0906146ef565b80601f016020809104026020016040519081016040528092919081815260200182805461131c906146ef565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061421f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114626125b4565b73ffffffffffffffffffffffffffffffffffffffff166114806114e2565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd9061429f565b60405180910390fd5b6114e06000612d48565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115146125b4565b73ffffffffffffffffffffffffffffffffffffffff166115326114e2565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f9061429f565b60405180910390fd5b8060108190555050565b6060600280546115a1906146ef565b80601f01602080910402602001604051908101604052809291908181526020018280546115cd906146ef565b801561161a5780601f106115ef5761010080835404028352916020019161161a565b820191906000526020600020905b8154815290600101906020018083116115fd57829003601f168201915b5050505050905090565b61162c6125b4565b73ffffffffffffffffffffffffffffffffffffffff1661164a6114e2565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061429f565b60405180910390fd5b8181905084849050146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df906141df565b60405180910390fd5b6000806116f3610e08565b905060005b8686905081101561173b5786868281811061171657611715614859565b5b90506020020135836117289190614524565b92508061173490614752565b90506116f8565b50601154828261174b9190614524565b111561178c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117839061427f565b60405180910390fd5b6000915060005b848490508110156117f9576117e88585838181106117b4576117b3614859565b5b90506020020160208101906117c99190613824565b8888848181106117dc576117db614859565b5b90506020020135612e0e565b806117f290614752565b9050611793565b5060009050505050505050565b60105481565b6000601054905060006001600f546118249190614524565b836014546118329190614524565b10801561187f5750600e54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611be957601360009054906101000a900460ff166118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061411f565b60405180910390fd5b601154836118e2610e08565b6118ec9190614524565b111561192d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119249061413f565b60405180910390fd5b600d54831115611972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699061439f565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e546119bf9190614605565b8310611adb5781601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e54611a139190614605565b611a1d91906145ab565b8284611a2991906145ab565b611a339190614605565b341015611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c9061423f565b60405180910390fd5b600e54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e5460146000828254611acf9190614524565b92505081905550611be4565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e54611b289190614605565b831015611be3576000341015611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061423f565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bc29190614524565b925050819055508260146000828254611bdb9190614524565b925050819055505b5b611d23565b601360009054906101000a900460ff16611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f9061411f565b60405180910390fd5b8183611c4491906145ab565b341015611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d9061423f565b60405180910390fd5b60115483611c92610e08565b611c9c9190614524565b1115611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd49061413f565b60405180910390fd5b600d54831115611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d199061439f565b60405180910390fd5b5b611d2d3384612e0e565b505050565b611d3a6125b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f906142df565b60405180910390fd5b8060066000611db56125b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e626125b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea791906140c2565b60405180910390a35050565b611ebb6125b4565b73ffffffffffffffffffffffffffffffffffffffff16611ed96114e2565b73ffffffffffffffffffffffffffffffffffffffff1614611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f269061429f565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6000600e54905090565b611f6184848461266e565b611f6d84848484612e2c565b611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa39061433f565b60405180910390fd5b50505050565b600a8054611fbf906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb906146ef565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b505050505081565b600e5481565b6060612051826125a7565b612090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612087906142bf565b60405180910390fd5b60001515600c60009054906101000a900460ff161515141561213e57600b80546120b9906146ef565b80601f01602080910402602001604051908101604052809291908181526020018280546120e5906146ef565b80156121325780601f1061210757610100808354040283529160200191612132565b820191906000526020600020905b81548152906001019060200180831161211557829003601f168201915b5050505050905061219a565b6000612148612fc3565b905060008151116121685760405180602001604052806000815250612196565b8061217284613055565b600a60405160200161218693929190614015565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1681565b60115481565b6121c06125b4565b73ffffffffffffffffffffffffffffffffffffffff166121de6114e2565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b9061429f565b60405180910390fd5b80600a908051906020019061224a929190613552565b5050565b60145481565b61225c6125b4565b73ffffffffffffffffffffffffffffffffffffffff1661227a6114e2565b73ffffffffffffffffffffffffffffffffffffffff16146122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c79061429f565b60405180910390fd5b80600e8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123766125b4565b73ffffffffffffffffffffffffffffffffffffffff166123946114e2565b73ffffffffffffffffffffffffffffffffffffffff16146123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e19061429f565b60405180910390fd5b80600b9080519060200190612400929190613552565b5050565b61240c6125b4565b73ffffffffffffffffffffffffffffffffffffffff1661242a6114e2565b73ffffffffffffffffffffffffffffffffffffffff1614612480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124779061429f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e79061415f565b60405180910390fd5b6124f981612d48565b50565b60156020528060005260406000206000915090505481565b600d5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061267982612bae565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126a06125b4565b73ffffffffffffffffffffffffffffffffffffffff1614806126fc57506126c56125b4565b73ffffffffffffffffffffffffffffffffffffffff166126e484610bdc565b73ffffffffffffffffffffffffffffffffffffffff16145b80612718575061271782600001516127126125b4565b6122da565b5b90508061275a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612751906142ff565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c39061425f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561283c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612833906141bf565b60405180910390fd5b61284985858560016131b6565b61285960008484600001516125bc565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b3e57612a9d816125a7565b15612b3d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba785858560016131bc565b5050505050565b612bb66135d8565b612bbf826125a7565b612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf59061417f565b60405180910390fd5b60008290505b60008110612d07576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf8578092505050612d43565b50808060019003915050612c04565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3a906143df565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e288282604051806020016040528060008152506131c2565b5050565b6000612e4d8473ffffffffffffffffffffffffffffffffffffffff1661251a565b15612fb6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e766125b4565b8786866040518563ffffffff1660e01b8152600401612e989493929190614076565b602060405180830381600087803b158015612eb257600080fd5b505af1925050508015612ee357506040513d601f19601f82011682018060405250810190612ee09190613a95565b60015b612f66573d8060008114612f13576040519150601f19603f3d011682016040523d82523d6000602084013e612f18565b606091505b50600081511415612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f559061433f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fbb565b600190505b949350505050565b606060098054612fd2906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612ffe906146ef565b801561304b5780601f106130205761010080835404028352916020019161304b565b820191906000526020600020905b81548152906001019060200180831161302e57829003601f168201915b5050505050905090565b6060600082141561309d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b1565b600082905060005b600082146130cf5780806130b890614752565b915050600a826130c8919061457a565b91506130a5565b60008167ffffffffffffffff8111156130eb576130ea614888565b5b6040519080825280601f01601f19166020018201604052801561311d5781602001600182028036833780820191505090505b5090505b600085146131aa576001826131369190614605565b9150600a85613145919061479b565b60306131519190614524565b60f81b81838151811061316757613166614859565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a3919061457a565b9450613121565b8093505050505b919050565b50505050565b50505050565b6131cf83838360016131d4565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561324a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132419061435f565b60405180910390fd5b600084141561328e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132859061437f565b60405180910390fd5b61329b60008683876131b6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561353557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613520576134e06000888488612e2c565b61351f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135169061433f565b60405180910390fd5b5b81806001019250508080600101915050613469565b50806000819055505061354b60008683876131bc565b5050505050565b82805461355e906146ef565b90600052602060002090601f01602090048101928261358057600085556135c7565b82601f1061359957805160ff19168380011785556135c7565b828001600101855582156135c7579182015b828111156135c65782518255916020019190600101906135ab565b5b5090506135d49190613612565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561362b576000816000905550600101613613565b5090565b600061364261363d8461445f565b61443a565b90508281526020810184848401111561365e5761365d6148c6565b5b6136698482856146ad565b509392505050565b600061368461367f84614490565b61443a565b9050828152602081018484840111156136a05761369f6148c6565b5b6136ab8482856146ad565b509392505050565b6000813590506136c281614f96565b92915050565b60008083601f8401126136de576136dd6148bc565b5b8235905067ffffffffffffffff8111156136fb576136fa6148b7565b5b602083019150836020820283011115613717576137166148c1565b5b9250929050565b60008083601f840112613734576137336148bc565b5b8235905067ffffffffffffffff811115613751576137506148b7565b5b60208301915083602082028301111561376d5761376c6148c1565b5b9250929050565b60008135905061378381614fad565b92915050565b60008135905061379881614fc4565b92915050565b6000815190506137ad81614fc4565b92915050565b600082601f8301126137c8576137c76148bc565b5b81356137d884826020860161362f565b91505092915050565b600082601f8301126137f6576137f56148bc565b5b8135613806848260208601613671565b91505092915050565b60008135905061381e81614fdb565b92915050565b60006020828403121561383a576138396148d0565b5b6000613848848285016136b3565b91505092915050565b60008060408385031215613868576138676148d0565b5b6000613876858286016136b3565b9250506020613887858286016136b3565b9150509250929050565b6000806000606084860312156138aa576138a96148d0565b5b60006138b8868287016136b3565b93505060206138c9868287016136b3565b92505060406138da8682870161380f565b9150509250925092565b600080600080608085870312156138fe576138fd6148d0565b5b600061390c878288016136b3565b945050602061391d878288016136b3565b935050604061392e8782880161380f565b925050606085013567ffffffffffffffff81111561394f5761394e6148cb565b5b61395b878288016137b3565b91505092959194509250565b6000806040838503121561397e5761397d6148d0565b5b600061398c858286016136b3565b925050602061399d85828601613774565b9150509250929050565b600080604083850312156139be576139bd6148d0565b5b60006139cc858286016136b3565b92505060206139dd8582860161380f565b9150509250929050565b60008060008060408587031215613a0157613a006148d0565b5b600085013567ffffffffffffffff811115613a1f57613a1e6148cb565b5b613a2b8782880161371e565b9450945050602085013567ffffffffffffffff811115613a4e57613a4d6148cb565b5b613a5a878288016136c8565b925092505092959194509250565b600060208284031215613a7e57613a7d6148d0565b5b6000613a8c84828501613789565b91505092915050565b600060208284031215613aab57613aaa6148d0565b5b6000613ab98482850161379e565b91505092915050565b600060208284031215613ad857613ad76148d0565b5b600082013567ffffffffffffffff811115613af657613af56148cb565b5b613b02848285016137e1565b91505092915050565b600060208284031215613b2157613b206148d0565b5b6000613b2f8482850161380f565b91505092915050565b613b4181614639565b82525050565b613b508161464b565b82525050565b6000613b61826144d6565b613b6b81856144ec565b9350613b7b8185602086016146bc565b613b84816148d5565b840191505092915050565b6000613b9a826144e1565b613ba48185614508565b9350613bb48185602086016146bc565b613bbd816148d5565b840191505092915050565b6000613bd3826144e1565b613bdd8185614519565b9350613bed8185602086016146bc565b80840191505092915050565b60008154613c06816146ef565b613c108186614519565b94506001821660008114613c2b5760018114613c3c57613c6f565b60ff19831686528186019350613c6f565b613c45856144c1565b60005b83811015613c6757815481890152600182019150602081019050613c48565b838801955050505b50505092915050565b6000613c85602283614508565b9150613c90826148e6565b604082019050919050565b6000613ca8601483614508565b9150613cb382614935565b602082019050919050565b6000613ccb600783614508565b9150613cd68261495e565b602082019050919050565b6000613cee602683614508565b9150613cf982614987565b604082019050919050565b6000613d11602a83614508565b9150613d1c826149d6565b604082019050919050565b6000613d34602383614508565b9150613d3f82614a25565b604082019050919050565b6000613d57602583614508565b9150613d6282614a74565b604082019050919050565b6000613d7a602183614508565b9150613d8582614ac3565b604082019050919050565b6000613d9d603983614508565b9150613da882614b12565b604082019050919050565b6000613dc0602b83614508565b9150613dcb82614b61565b604082019050919050565b6000613de3602083614508565b9150613dee82614bb0565b602082019050919050565b6000613e06602683614508565b9150613e1182614bd9565b604082019050919050565b6000613e29600883614508565b9150613e3482614c28565b602082019050919050565b6000613e4c602083614508565b9150613e5782614c51565b602082019050919050565b6000613e6f602f83614508565b9150613e7a82614c7a565b604082019050919050565b6000613e92601a83614508565b9150613e9d82614cc9565b602082019050919050565b6000613eb5603283614508565b9150613ec082614cf2565b604082019050919050565b6000613ed8602283614508565b9150613ee382614d41565b604082019050919050565b6000613efb6000836144fd565b9150613f0682614d90565b600082019050919050565b6000613f1e603383614508565b9150613f2982614d93565b604082019050919050565b6000613f41602183614508565b9150613f4c82614de2565b604082019050919050565b6000613f64602883614508565b9150613f6f82614e31565b604082019050919050565b6000613f87601383614508565b9150613f9282614e80565b602082019050919050565b6000613faa602e83614508565b9150613fb582614ea9565b604082019050919050565b6000613fcd602f83614508565b9150613fd882614ef8565b604082019050919050565b6000613ff0602d83614508565b9150613ffb82614f47565b604082019050919050565b61400f816146a3565b82525050565b60006140218286613bc8565b915061402d8285613bc8565b91506140398284613bf9565b9150819050949350505050565b600061405182613eee565b9150819050919050565b60006020820190506140706000830184613b38565b92915050565b600060808201905061408b6000830187613b38565b6140986020830186613b38565b6140a56040830185614006565b81810360608301526140b78184613b56565b905095945050505050565b60006020820190506140d76000830184613b47565b92915050565b600060208201905081810360008301526140f78184613b8f565b905092915050565b6000602082019050818103600083015261411881613c78565b9050919050565b6000602082019050818103600083015261413881613c9b565b9050919050565b6000602082019050818103600083015261415881613cbe565b9050919050565b6000602082019050818103600083015261417881613ce1565b9050919050565b6000602082019050818103600083015261419881613d04565b9050919050565b600060208201905081810360008301526141b881613d27565b9050919050565b600060208201905081810360008301526141d881613d4a565b9050919050565b600060208201905081810360008301526141f881613d6d565b9050919050565b6000602082019050818103600083015261421881613d90565b9050919050565b6000602082019050818103600083015261423881613db3565b9050919050565b6000602082019050818103600083015261425881613dd6565b9050919050565b6000602082019050818103600083015261427881613df9565b9050919050565b6000602082019050818103600083015261429881613e1c565b9050919050565b600060208201905081810360008301526142b881613e3f565b9050919050565b600060208201905081810360008301526142d881613e62565b9050919050565b600060208201905081810360008301526142f881613e85565b9050919050565b6000602082019050818103600083015261431881613ea8565b9050919050565b6000602082019050818103600083015261433881613ecb565b9050919050565b6000602082019050818103600083015261435881613f11565b9050919050565b6000602082019050818103600083015261437881613f34565b9050919050565b6000602082019050818103600083015261439881613f57565b9050919050565b600060208201905081810360008301526143b881613f7a565b9050919050565b600060208201905081810360008301526143d881613f9d565b9050919050565b600060208201905081810360008301526143f881613fc0565b9050919050565b6000602082019050818103600083015261441881613fe3565b9050919050565b60006020820190506144346000830184614006565b92915050565b6000614444614455565b90506144508282614721565b919050565b6000604051905090565b600067ffffffffffffffff82111561447a57614479614888565b5b614483826148d5565b9050602081019050919050565b600067ffffffffffffffff8211156144ab576144aa614888565b5b6144b4826148d5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061452f826146a3565b915061453a836146a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456f5761456e6147cc565b5b828201905092915050565b6000614585826146a3565b9150614590836146a3565b9250826145a05761459f6147fb565b5b828204905092915050565b60006145b6826146a3565b91506145c1836146a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145fa576145f96147cc565b5b828202905092915050565b6000614610826146a3565b915061461b836146a3565b92508282101561462e5761462d6147cc565b5b828203905092915050565b600061464482614683565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146da5780820151818401526020810190506146bf565b838111156146e9576000848401525b50505050565b6000600282049050600182168061470757607f821691505b6020821081141561471b5761471a61482a565b5b50919050565b61472a826148d5565b810181811067ffffffffffffffff8211171561474957614748614888565b5b80604052505050565b600061475d826146a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147905761478f6147cc565b5b600182019050919050565b60006147a6826146a3565b91506147b1836146a3565b9250826147c1576147c06147fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614f9f81614639565b8114614faa57600080fd5b50565b614fb68161464b565b8114614fc157600080fd5b50565b614fcd81614657565b8114614fd857600080fd5b50565b614fe4816146a3565b8114614fef57600080fd5b5056fea2646970667358221220ff360d292f94ad024adeceeea4822008d2dae02bde10ab037b8500798543b56564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f5261726520506570652050756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452415245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e53554862364134783231796f4164687959584c57426a3139353162737972477933364275716b55363648572f0000000000000000000000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806391b7f5ed11610144578063c87b56dd116100b6578063e945971c1161007a578063e945971c146108e0578063e985e9c514610909578063f2c4ce1e14610946578063f2fde38b1461096f578063f4db2acb14610998578063f968adbe146109d557610267565b8063c87b56dd146107f9578063d123973014610836578063d5abeb0114610861578063da3ef23f1461088c578063dad7b5c9146108b557610267565b8063a22cb46511610108578063a22cb4651461070f578063a475b5dd14610738578063a70273571461074f578063b88d4fde1461077a578063c6682862146107a3578063c7c39ffc146107ce57610267565b806391b7f5ed1461064b57806395d89b411461067457806396ea3a471461069f578063a035b1fe146106c8578063a0712d68146106f357610267565b806342842e0e116101dd5780635c975abb116101a15780635c975abb146105395780636352211e146105645780636c0360eb146105a157806370a08231146105cc578063715018a6146106095780638da5cb5b1461062057610267565b806342842e0e146104565780634f6ccce71461047f57806351830227146104bc57806355f804b3146104e75780635a963f1b1461051057610267565b806318160ddd1161022f57806318160ddd1461036557806323b872dd146103905780632f745c59146103b9578063333e44e6146103f657806334c8fd75146104215780633ccfd60b1461044c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063081c8c4414610311578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a68565b610a00565b6040516102a091906140c2565b60405180910390f35b3480156102b557600080fd5b506102be610b4a565b6040516102cb91906140dd565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613b0b565b610bdc565b604051610308919061405b565b60405180910390f35b34801561031d57600080fd5b50610326610c61565b60405161033391906140dd565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e91906139a7565b610cef565b005b34801561037157600080fd5b5061037a610e08565b604051610387919061441f565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613891565b610e11565b005b3480156103c557600080fd5b506103e060048036038101906103db91906139a7565b610e21565b6040516103ed919061441f565b60405180910390f35b34801561040257600080fd5b5061040b611013565b604051610418919061441f565b60405180910390f35b34801561042d57600080fd5b50610436611019565b604051610443919061441f565b60405180910390f35b61045461101f565b005b34801561046257600080fd5b5061047d60048036038101906104789190613891565b611114565b005b34801561048b57600080fd5b506104a660048036038101906104a19190613b0b565b611134565b6040516104b3919061441f565b60405180910390f35b3480156104c857600080fd5b506104d1611187565b6040516104de91906140c2565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613ac2565b61119a565b005b34801561051c57600080fd5b5061053760048036038101906105329190613b0b565b611230565b005b34801561054557600080fd5b5061054e6112b6565b60405161055b91906140c2565b60405180910390f35b34801561057057600080fd5b5061058b60048036038101906105869190613b0b565b6112cd565b604051610598919061405b565b60405180910390f35b3480156105ad57600080fd5b506105b66112e3565b6040516105c391906140dd565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613824565b611371565b604051610600919061441f565b60405180910390f35b34801561061557600080fd5b5061061e61145a565b005b34801561062c57600080fd5b506106356114e2565b604051610642919061405b565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613b0b565b61150c565b005b34801561068057600080fd5b50610689611592565b60405161069691906140dd565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906139e7565b611624565b005b3480156106d457600080fd5b506106dd611806565b6040516106ea919061441f565b60405180910390f35b61070d60048036038101906107089190613b0b565b61180c565b005b34801561071b57600080fd5b5061073660048036038101906107319190613967565b611d32565b005b34801561074457600080fd5b5061074d611eb3565b005b34801561075b57600080fd5b50610764611f4c565b604051610771919061441f565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906138e4565b611f56565b005b3480156107af57600080fd5b506107b8611fb2565b6040516107c591906140dd565b60405180910390f35b3480156107da57600080fd5b506107e3612040565b6040516107f0919061441f565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190613b0b565b612046565b60405161082d91906140dd565b60405180910390f35b34801561084257600080fd5b5061084b61219f565b60405161085891906140c2565b60405180910390f35b34801561086d57600080fd5b506108766121b2565b604051610883919061441f565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613ac2565b6121b8565b005b3480156108c157600080fd5b506108ca61224e565b6040516108d7919061441f565b60405180910390f35b3480156108ec57600080fd5b5061090760048036038101906109029190613b0b565b612254565b005b34801561091557600080fd5b50610930600480360381019061092b9190613851565b6122da565b60405161093d91906140c2565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613ac2565b61236e565b005b34801561097b57600080fd5b5061099660048036038101906109919190613824565b612404565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613824565b6124fc565b6040516109cc919061441f565b60405180910390f35b3480156109e157600080fd5b506109ea612514565b6040516109f7919061441f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610acb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b435750610b428261253d565b5b9050919050565b606060018054610b59906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b85906146ef565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b6000610be7826125a7565b610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906143ff565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610c6e906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9a906146ef565b8015610ce75780601f10610cbc57610100808354040283529160200191610ce7565b820191906000526020600020905b815481529060010190602001808311610cca57829003601f168201915b505050505081565b6000610cfa826112cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d629061431f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d8a6125b4565b73ffffffffffffffffffffffffffffffffffffffff161480610db95750610db881610db36125b4565b6122da565b5b610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906141ff565b60405180910390fd5b610e038383836125bc565b505050565b60008054905090565b610e1c83838361266e565b505050565b6000610e2c83611371565b8210610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906140ff565b60405180910390fd5b6000610e77610e08565b905060008060005b83811015610fd1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f7157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc35786841415610fba57819550505050505061100d565b83806001019450505b508080600101915050610e7f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906143bf565b60405180910390fd5b92915050565b600f5481565b60125481565b6110276125b4565b73ffffffffffffffffffffffffffffffffffffffff166110456114e2565b73ffffffffffffffffffffffffffffffffffffffff161461109b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110929061429f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110c190614046565b60006040518083038185875af1925050503d80600081146110fe576040519150601f19603f3d011682016040523d82523d6000602084013e611103565b606091505b505090508061111157600080fd5b50565b61112f83838360405180602001604052806000815250611f56565b505050565b600061113e610e08565b821061117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061419f565b60405180910390fd5b819050919050565b600c60009054906101000a900460ff1681565b6111a26125b4565b73ffffffffffffffffffffffffffffffffffffffff166111c06114e2565b73ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061429f565b60405180910390fd5b806009908051906020019061122c929190613552565b5050565b6112386125b4565b73ffffffffffffffffffffffffffffffffffffffff166112566114e2565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a39061429f565b60405180910390fd5b80600f8190555050565b6000600760149054906101000a900460ff16905090565b60006112d882612bae565b600001519050919050565b600980546112f0906146ef565b80601f016020809104026020016040519081016040528092919081815260200182805461131c906146ef565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061421f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114626125b4565b73ffffffffffffffffffffffffffffffffffffffff166114806114e2565b73ffffffffffffffffffffffffffffffffffffffff16146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd9061429f565b60405180910390fd5b6114e06000612d48565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115146125b4565b73ffffffffffffffffffffffffffffffffffffffff166115326114e2565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f9061429f565b60405180910390fd5b8060108190555050565b6060600280546115a1906146ef565b80601f01602080910402602001604051908101604052809291908181526020018280546115cd906146ef565b801561161a5780601f106115ef5761010080835404028352916020019161161a565b820191906000526020600020905b8154815290600101906020018083116115fd57829003601f168201915b5050505050905090565b61162c6125b4565b73ffffffffffffffffffffffffffffffffffffffff1661164a6114e2565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061429f565b60405180910390fd5b8181905084849050146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df906141df565b60405180910390fd5b6000806116f3610e08565b905060005b8686905081101561173b5786868281811061171657611715614859565b5b90506020020135836117289190614524565b92508061173490614752565b90506116f8565b50601154828261174b9190614524565b111561178c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117839061427f565b60405180910390fd5b6000915060005b848490508110156117f9576117e88585838181106117b4576117b3614859565b5b90506020020160208101906117c99190613824565b8888848181106117dc576117db614859565b5b90506020020135612e0e565b806117f290614752565b9050611793565b5060009050505050505050565b60105481565b6000601054905060006001600f546118249190614524565b836014546118329190614524565b10801561187f5750600e54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611be957601360009054906101000a900460ff166118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061411f565b60405180910390fd5b601154836118e2610e08565b6118ec9190614524565b111561192d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119249061413f565b60405180910390fd5b600d54831115611972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699061439f565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e546119bf9190614605565b8310611adb5781601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e54611a139190614605565b611a1d91906145ab565b8284611a2991906145ab565b611a339190614605565b341015611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c9061423f565b60405180910390fd5b600e54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600e5460146000828254611acf9190614524565b92505081905550611be4565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e54611b289190614605565b831015611be3576000341015611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061423f565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bc29190614524565b925050819055508260146000828254611bdb9190614524565b925050819055505b5b611d23565b601360009054906101000a900460ff16611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f9061411f565b60405180910390fd5b8183611c4491906145ab565b341015611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d9061423f565b60405180910390fd5b60115483611c92610e08565b611c9c9190614524565b1115611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd49061413f565b60405180910390fd5b600d54831115611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d199061439f565b60405180910390fd5b5b611d2d3384612e0e565b505050565b611d3a6125b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f906142df565b60405180910390fd5b8060066000611db56125b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e626125b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea791906140c2565b60405180910390a35050565b611ebb6125b4565b73ffffffffffffffffffffffffffffffffffffffff16611ed96114e2565b73ffffffffffffffffffffffffffffffffffffffff1614611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f269061429f565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b6000600e54905090565b611f6184848461266e565b611f6d84848484612e2c565b611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa39061433f565b60405180910390fd5b50505050565b600a8054611fbf906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb906146ef565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b505050505081565b600e5481565b6060612051826125a7565b612090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612087906142bf565b60405180910390fd5b60001515600c60009054906101000a900460ff161515141561213e57600b80546120b9906146ef565b80601f01602080910402602001604051908101604052809291908181526020018280546120e5906146ef565b80156121325780601f1061210757610100808354040283529160200191612132565b820191906000526020600020905b81548152906001019060200180831161211557829003601f168201915b5050505050905061219a565b6000612148612fc3565b905060008151116121685760405180602001604052806000815250612196565b8061217284613055565b600a60405160200161218693929190614015565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1681565b60115481565b6121c06125b4565b73ffffffffffffffffffffffffffffffffffffffff166121de6114e2565b73ffffffffffffffffffffffffffffffffffffffff1614612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b9061429f565b60405180910390fd5b80600a908051906020019061224a929190613552565b5050565b60145481565b61225c6125b4565b73ffffffffffffffffffffffffffffffffffffffff1661227a6114e2565b73ffffffffffffffffffffffffffffffffffffffff16146122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c79061429f565b60405180910390fd5b80600e8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123766125b4565b73ffffffffffffffffffffffffffffffffffffffff166123946114e2565b73ffffffffffffffffffffffffffffffffffffffff16146123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e19061429f565b60405180910390fd5b80600b9080519060200190612400929190613552565b5050565b61240c6125b4565b73ffffffffffffffffffffffffffffffffffffffff1661242a6114e2565b73ffffffffffffffffffffffffffffffffffffffff1614612480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124779061429f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e79061415f565b60405180910390fd5b6124f981612d48565b50565b60156020528060005260406000206000915090505481565b600d5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061267982612bae565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126a06125b4565b73ffffffffffffffffffffffffffffffffffffffff1614806126fc57506126c56125b4565b73ffffffffffffffffffffffffffffffffffffffff166126e484610bdc565b73ffffffffffffffffffffffffffffffffffffffff16145b80612718575061271782600001516127126125b4565b6122da565b5b90508061275a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612751906142ff565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c39061425f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561283c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612833906141bf565b60405180910390fd5b61284985858560016131b6565b61285960008484600001516125bc565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b3e57612a9d816125a7565b15612b3d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba785858560016131bc565b5050505050565b612bb66135d8565b612bbf826125a7565b612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf59061417f565b60405180910390fd5b60008290505b60008110612d07576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf8578092505050612d43565b50808060019003915050612c04565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3a906143df565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e288282604051806020016040528060008152506131c2565b5050565b6000612e4d8473ffffffffffffffffffffffffffffffffffffffff1661251a565b15612fb6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e766125b4565b8786866040518563ffffffff1660e01b8152600401612e989493929190614076565b602060405180830381600087803b158015612eb257600080fd5b505af1925050508015612ee357506040513d601f19601f82011682018060405250810190612ee09190613a95565b60015b612f66573d8060008114612f13576040519150601f19603f3d011682016040523d82523d6000602084013e612f18565b606091505b50600081511415612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f559061433f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fbb565b600190505b949350505050565b606060098054612fd2906146ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612ffe906146ef565b801561304b5780601f106130205761010080835404028352916020019161304b565b820191906000526020600020905b81548152906001019060200180831161302e57829003601f168201915b5050505050905090565b6060600082141561309d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b1565b600082905060005b600082146130cf5780806130b890614752565b915050600a826130c8919061457a565b91506130a5565b60008167ffffffffffffffff8111156130eb576130ea614888565b5b6040519080825280601f01601f19166020018201604052801561311d5781602001600182028036833780820191505090505b5090505b600085146131aa576001826131369190614605565b9150600a85613145919061479b565b60306131519190614524565b60f81b81838151811061316757613166614859565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a3919061457a565b9450613121565b8093505050505b919050565b50505050565b50505050565b6131cf83838360016131d4565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561324a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132419061435f565b60405180910390fd5b600084141561328e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132859061437f565b60405180910390fd5b61329b60008683876131b6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561353557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613520576134e06000888488612e2c565b61351f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135169061433f565b60405180910390fd5b5b81806001019250508080600101915050613469565b50806000819055505061354b60008683876131bc565b5050505050565b82805461355e906146ef565b90600052602060002090601f01602090048101928261358057600085556135c7565b82601f1061359957805160ff19168380011785556135c7565b828001600101855582156135c7579182015b828111156135c65782518255916020019190600101906135ab565b5b5090506135d49190613612565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561362b576000816000905550600101613613565b5090565b600061364261363d8461445f565b61443a565b90508281526020810184848401111561365e5761365d6148c6565b5b6136698482856146ad565b509392505050565b600061368461367f84614490565b61443a565b9050828152602081018484840111156136a05761369f6148c6565b5b6136ab8482856146ad565b509392505050565b6000813590506136c281614f96565b92915050565b60008083601f8401126136de576136dd6148bc565b5b8235905067ffffffffffffffff8111156136fb576136fa6148b7565b5b602083019150836020820283011115613717576137166148c1565b5b9250929050565b60008083601f840112613734576137336148bc565b5b8235905067ffffffffffffffff811115613751576137506148b7565b5b60208301915083602082028301111561376d5761376c6148c1565b5b9250929050565b60008135905061378381614fad565b92915050565b60008135905061379881614fc4565b92915050565b6000815190506137ad81614fc4565b92915050565b600082601f8301126137c8576137c76148bc565b5b81356137d884826020860161362f565b91505092915050565b600082601f8301126137f6576137f56148bc565b5b8135613806848260208601613671565b91505092915050565b60008135905061381e81614fdb565b92915050565b60006020828403121561383a576138396148d0565b5b6000613848848285016136b3565b91505092915050565b60008060408385031215613868576138676148d0565b5b6000613876858286016136b3565b9250506020613887858286016136b3565b9150509250929050565b6000806000606084860312156138aa576138a96148d0565b5b60006138b8868287016136b3565b93505060206138c9868287016136b3565b92505060406138da8682870161380f565b9150509250925092565b600080600080608085870312156138fe576138fd6148d0565b5b600061390c878288016136b3565b945050602061391d878288016136b3565b935050604061392e8782880161380f565b925050606085013567ffffffffffffffff81111561394f5761394e6148cb565b5b61395b878288016137b3565b91505092959194509250565b6000806040838503121561397e5761397d6148d0565b5b600061398c858286016136b3565b925050602061399d85828601613774565b9150509250929050565b600080604083850312156139be576139bd6148d0565b5b60006139cc858286016136b3565b92505060206139dd8582860161380f565b9150509250929050565b60008060008060408587031215613a0157613a006148d0565b5b600085013567ffffffffffffffff811115613a1f57613a1e6148cb565b5b613a2b8782880161371e565b9450945050602085013567ffffffffffffffff811115613a4e57613a4d6148cb565b5b613a5a878288016136c8565b925092505092959194509250565b600060208284031215613a7e57613a7d6148d0565b5b6000613a8c84828501613789565b91505092915050565b600060208284031215613aab57613aaa6148d0565b5b6000613ab98482850161379e565b91505092915050565b600060208284031215613ad857613ad76148d0565b5b600082013567ffffffffffffffff811115613af657613af56148cb565b5b613b02848285016137e1565b91505092915050565b600060208284031215613b2157613b206148d0565b5b6000613b2f8482850161380f565b91505092915050565b613b4181614639565b82525050565b613b508161464b565b82525050565b6000613b61826144d6565b613b6b81856144ec565b9350613b7b8185602086016146bc565b613b84816148d5565b840191505092915050565b6000613b9a826144e1565b613ba48185614508565b9350613bb48185602086016146bc565b613bbd816148d5565b840191505092915050565b6000613bd3826144e1565b613bdd8185614519565b9350613bed8185602086016146bc565b80840191505092915050565b60008154613c06816146ef565b613c108186614519565b94506001821660008114613c2b5760018114613c3c57613c6f565b60ff19831686528186019350613c6f565b613c45856144c1565b60005b83811015613c6757815481890152600182019150602081019050613c48565b838801955050505b50505092915050565b6000613c85602283614508565b9150613c90826148e6565b604082019050919050565b6000613ca8601483614508565b9150613cb382614935565b602082019050919050565b6000613ccb600783614508565b9150613cd68261495e565b602082019050919050565b6000613cee602683614508565b9150613cf982614987565b604082019050919050565b6000613d11602a83614508565b9150613d1c826149d6565b604082019050919050565b6000613d34602383614508565b9150613d3f82614a25565b604082019050919050565b6000613d57602583614508565b9150613d6282614a74565b604082019050919050565b6000613d7a602183614508565b9150613d8582614ac3565b604082019050919050565b6000613d9d603983614508565b9150613da882614b12565b604082019050919050565b6000613dc0602b83614508565b9150613dcb82614b61565b604082019050919050565b6000613de3602083614508565b9150613dee82614bb0565b602082019050919050565b6000613e06602683614508565b9150613e1182614bd9565b604082019050919050565b6000613e29600883614508565b9150613e3482614c28565b602082019050919050565b6000613e4c602083614508565b9150613e5782614c51565b602082019050919050565b6000613e6f602f83614508565b9150613e7a82614c7a565b604082019050919050565b6000613e92601a83614508565b9150613e9d82614cc9565b602082019050919050565b6000613eb5603283614508565b9150613ec082614cf2565b604082019050919050565b6000613ed8602283614508565b9150613ee382614d41565b604082019050919050565b6000613efb6000836144fd565b9150613f0682614d90565b600082019050919050565b6000613f1e603383614508565b9150613f2982614d93565b604082019050919050565b6000613f41602183614508565b9150613f4c82614de2565b604082019050919050565b6000613f64602883614508565b9150613f6f82614e31565b604082019050919050565b6000613f87601383614508565b9150613f9282614e80565b602082019050919050565b6000613faa602e83614508565b9150613fb582614ea9565b604082019050919050565b6000613fcd602f83614508565b9150613fd882614ef8565b604082019050919050565b6000613ff0602d83614508565b9150613ffb82614f47565b604082019050919050565b61400f816146a3565b82525050565b60006140218286613bc8565b915061402d8285613bc8565b91506140398284613bf9565b9150819050949350505050565b600061405182613eee565b9150819050919050565b60006020820190506140706000830184613b38565b92915050565b600060808201905061408b6000830187613b38565b6140986020830186613b38565b6140a56040830185614006565b81810360608301526140b78184613b56565b905095945050505050565b60006020820190506140d76000830184613b47565b92915050565b600060208201905081810360008301526140f78184613b8f565b905092915050565b6000602082019050818103600083015261411881613c78565b9050919050565b6000602082019050818103600083015261413881613c9b565b9050919050565b6000602082019050818103600083015261415881613cbe565b9050919050565b6000602082019050818103600083015261417881613ce1565b9050919050565b6000602082019050818103600083015261419881613d04565b9050919050565b600060208201905081810360008301526141b881613d27565b9050919050565b600060208201905081810360008301526141d881613d4a565b9050919050565b600060208201905081810360008301526141f881613d6d565b9050919050565b6000602082019050818103600083015261421881613d90565b9050919050565b6000602082019050818103600083015261423881613db3565b9050919050565b6000602082019050818103600083015261425881613dd6565b9050919050565b6000602082019050818103600083015261427881613df9565b9050919050565b6000602082019050818103600083015261429881613e1c565b9050919050565b600060208201905081810360008301526142b881613e3f565b9050919050565b600060208201905081810360008301526142d881613e62565b9050919050565b600060208201905081810360008301526142f881613e85565b9050919050565b6000602082019050818103600083015261431881613ea8565b9050919050565b6000602082019050818103600083015261433881613ecb565b9050919050565b6000602082019050818103600083015261435881613f11565b9050919050565b6000602082019050818103600083015261437881613f34565b9050919050565b6000602082019050818103600083015261439881613f57565b9050919050565b600060208201905081810360008301526143b881613f7a565b9050919050565b600060208201905081810360008301526143d881613f9d565b9050919050565b600060208201905081810360008301526143f881613fc0565b9050919050565b6000602082019050818103600083015261441881613fe3565b9050919050565b60006020820190506144346000830184614006565b92915050565b6000614444614455565b90506144508282614721565b919050565b6000604051905090565b600067ffffffffffffffff82111561447a57614479614888565b5b614483826148d5565b9050602081019050919050565b600067ffffffffffffffff8211156144ab576144aa614888565b5b6144b4826148d5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061452f826146a3565b915061453a836146a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456f5761456e6147cc565b5b828201905092915050565b6000614585826146a3565b9150614590836146a3565b9250826145a05761459f6147fb565b5b828204905092915050565b60006145b6826146a3565b91506145c1836146a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145fa576145f96147cc565b5b828202905092915050565b6000614610826146a3565b915061461b836146a3565b92508282101561462e5761462d6147cc565b5b828203905092915050565b600061464482614683565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146da5780820151818401526020810190506146bf565b838111156146e9576000848401525b50505050565b6000600282049050600182168061470757607f821691505b6020821081141561471b5761471a61482a565b5b50919050565b61472a826148d5565b810181811067ffffffffffffffff8211171561474957614748614888565b5b80604052505050565b600061475d826146a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147905761478f6147cc565b5b600182019050919050565b60006147a6826146a3565b91506147b1836146a3565b9250826147c1576147c06147fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614f9f81614639565b8114614faa57600080fd5b50565b614fb68161464b565b8114614fc157600080fd5b50565b614fcd81614657565b8114614fd857600080fd5b50565b614fe4816146a3565b8114614fef57600080fd5b5056fea2646970667358221220ff360d292f94ad024adeceeea4822008d2dae02bde10ab037b8500798543b56564736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f5261726520506570652050756e6b730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452415245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e53554862364134783231796f4164687959584c57426a3139353162737972477933364275716b55363648572f0000000000000000000000000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Rare Pepe Punks
Arg [1] : _symbol (string): RARE
Arg [2] : _initBaseURI (string): ipfs://QmNSUHb6A4x21yoAdhyYXLWBj1951bsyrGy36BuqkU66HW/
Arg [3] : _initNotRevealedUri (string): ipfs

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 5261726520506570652050756e6b730000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5241524500000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e53554862364134783231796f4164687959584c57426a
Arg [10] : 3139353162737972477933364275716b55363648572f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 6970667300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45149:4797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24830:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26716:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28278:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45325:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27799:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23087:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29154:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23751:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45480:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45606:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49483:192;;;:::i;:::-;;29387:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23264:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45360:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49367:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47654:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39000:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26525:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45258:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25266:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41817:94;;;;;;;;;;;;;:::i;:::-;;41166:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49269:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26885:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47998:667;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45525:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46137:1393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28564:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49190:69;;;;;;;;;;;;;:::i;:::-;;47773:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29635:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45286:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45438:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48673:500;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45657:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45567:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49683:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45695:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47873:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28923:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49815:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42066:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45737:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45394:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24830:372;24932:4;24984:25;24969:40;;;:11;:40;;;;:105;;;;25041:33;25026:48;;;:11;:48;;;;24969:105;:172;;;;25106:35;25091:50;;;:11;:50;;;;24969:172;:225;;;;25158:36;25182:11;25158:23;:36::i;:::-;24969:225;24949:245;;24830:372;;;:::o;26716:100::-;26770:13;26803:5;26796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26716:100;:::o;28278:214::-;28346:7;28374:16;28382:7;28374;:16::i;:::-;28366:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28460:15;:24;28476:7;28460:24;;;;;;;;;;;;;;;;;;;;;28453:31;;28278:214;;;:::o;45325:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27799:413::-;27872:13;27888:24;27904:7;27888:15;:24::i;:::-;27872:40;;27937:5;27931:11;;:2;:11;;;;27923:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28032:5;28016:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28041:37;28058:5;28065:12;:10;:12::i;:::-;28041:16;:37::i;:::-;28016:62;27994:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28176:28;28185:2;28189:7;28198:5;28176:8;:28::i;:::-;27861:351;27799:413;;:::o;23087:100::-;23140:7;23167:12;;23160:19;;23087:100;:::o;29154:162::-;29280:28;29290:4;29296:2;29300:7;29280:9;:28::i;:::-;29154:162;;;:::o;23751:1007::-;23840:7;23876:16;23886:5;23876:9;:16::i;:::-;23868:5;:24;23860:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23942:22;23967:13;:11;:13::i;:::-;23942:38;;23991:19;24021:25;24210:9;24205:466;24225:14;24221:1;:18;24205:466;;;24265:31;24299:11;:14;24311:1;24299:14;;;;;;;;;;;24265:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24362:1;24336:28;;:9;:14;;;:28;;;24332:111;;24409:9;:14;;;24389:34;;24332:111;24486:5;24465:26;;:17;:26;;;24461:195;;;24535:5;24520:11;:20;24516:85;;;24576:1;24569:8;;;;;;;;;24516:85;24623:13;;;;;;;24461:195;24246:425;24241:3;;;;;;;24205:466;;;;24694:56;;;;;;;;;;:::i;:::-;;;;;;;;23751:1007;;;;;:::o;45480:38::-;;;;:::o;45606:44::-;;;;:::o;49483:192::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49540:12:::1;49566:10;49558:24;;49604:21;49558:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49539:101;;;49659:7;49651:16;;;::::0;::::1;;49528:147;49483:192::o:0;29387:177::-;29517:39;29534:4;29540:2;29544:7;29517:39;;;;;;;;;;;;:16;:39::i;:::-;29387:177;;;:::o;23264:187::-;23331:7;23367:13;:11;:13::i;:::-;23359:5;:21;23351:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23438:5;23431:12;;23264:187;;;:::o;45360:27::-;;;;;;;;;;;;;:::o;49367:104::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49452:11:::1;49442:7;:21;;;;;;;;;;;;:::i;:::-;;49367:104:::0;:::o;47654:111::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47744:13:::1;47732:9;:25;;;;47654:111:::0;:::o;39000:86::-;39047:4;39071:7;;;;;;;;;;;39064:14;;39000:86;:::o;26525:124::-;26589:7;26616:20;26628:7;26616:11;:20::i;:::-;:25;;;26609:32;;26525:124;;;:::o;45258:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25266:221::-;25330:7;25375:1;25358:19;;:5;:19;;;;25350:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25451:12;:19;25464:5;25451:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25443:36;;25436:43;;25266:221;;;:::o;41817:94::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41882:21:::1;41900:1;41882:9;:21::i;:::-;41817:94::o:0;41166:87::-;41212:7;41239:6;;;;;;;;;;;41232:13;;41166:87;:::o;49269:86::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49341:6:::1;49333:5;:14;;;;49269:86:::0;:::o;26885:104::-;26941:13;26974:7;26967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26885:104;:::o;47998:667::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48165:9:::1;;:16;;48146:8;;:15;;:35;48124:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;48253:21;48289:9:::0;48301:13:::1;:11;:13::i;:::-;48289:25;;48330:9;48325:101;48349:8;;:15;;48345:1;:19;48325:101;;;48403:8;;48412:1;48403:11;;;;;;;:::i;:::-;;;;;;;;48386:28;;;;;:::i;:::-;;;48366:3;;;;:::i;:::-;;;48325:101;;;;48465:9;;48448:13;48444:1;:17;;;;:::i;:::-;:30;;48436:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48498:20;;;48534:9;48529:110;48553:9;;:16;;48549:1;:20;48529:110;;;48591:36;48601:9;;48611:1;48601:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48615:8;;48624:1;48615:11;;;;;;;:::i;:::-;;;;;;;;48591:9;:36::i;:::-;48571:3;;;;:::i;:::-;;;48529:110;;;;48649:8;;;48113:552;;47998:667:::0;;;;:::o;45525:35::-;;;;:::o;46137:1393::-;46194:12;46209:5;;46194:20;;46225:11;46279:1;46267:9;;:13;;;;:::i;:::-;46259:5;46241:15;;:23;;;;:::i;:::-;:39;46240:102;;;;;46331:10;;46299:17;:29;46317:10;46299:29;;;;;;;;;;;;;;;;:42;46240:102;46225:118;;46360:6;46356:1126;;;46392:11;;;;;;;;;;;46384:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;46476:9;;46467:5;46451:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;46443:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46529:8;;46520:5;:17;;46512:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46602:17;:29;46620:10;46602:29;;;;;;;;;;;;;;;;46589:10;;:42;;;;:::i;:::-;46579:5;:53;46576:608;;46749:4;46716:17;:29;46734:10;46716:29;;;;;;;;;;;;;;;;46703:10;;:42;;;;:::i;:::-;46702:51;;;;:::i;:::-;46693:4;46685:5;:12;;;;:::i;:::-;46684:70;;;;:::i;:::-;46671:9;:83;;46663:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;46839:10;;46807:17;:29;46825:10;46807:29;;;;;;;;;;;;;;;:42;;;;46884:10;;46865:15;;:29;;;;;;;:::i;:::-;;;;;;;;46576:608;;;46954:17;:29;46972:10;46954:29;;;;;;;;;;;;;;;;46941:10;;:42;;;;:::i;:::-;46932:5;:52;46929:255;;;47036:1;47023:9;:14;;47015:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47123:5;47090:17;:29;47108:10;47090:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;47163:5;47144:15;;:24;;;;;;;:::i;:::-;;;;;;;;46929:255;46576:608;46356:1126;;;47228:11;;;;;;;;;;;47220:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47304:4;47296:5;:12;;;;:::i;:::-;47283:9;:25;;47275:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47389:9;;47380:5;47364:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;47356:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;47438:8;;47429:5;:17;;47421:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;46356:1126;47494:28;47504:10;47516:5;47494:9;:28::i;:::-;46183:1347;;46137:1393;:::o;28564:288::-;28671:12;:10;:12::i;:::-;28659:24;;:8;:24;;;;28651:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28772:8;28727:18;:32;28746:12;:10;:12::i;:::-;28727:32;;;;;;;;;;;;;;;:42;28760:8;28727:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28825:8;28796:48;;28811:12;:10;:12::i;:::-;28796:48;;;28835:8;28796:48;;;;;;:::i;:::-;;;;;;;;28564:288;;:::o;49190:69::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49247:4:::1;49236:8;;:15;;;;;;;;;;;;;;;;;;49190:69::o:0;47773:92::-;47822:7;47847:10;;47840:17;;47773:92;:::o;29635:355::-;29794:28;29804:4;29810:2;29814:7;29794:9;:28::i;:::-;29855:48;29878:4;29884:2;29888:7;29897:5;29855:22;:48::i;:::-;29833:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29635:355;;;;:::o;45286:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45438:35::-;;;;:::o;48673:500::-;48771:13;48813:16;48821:7;48813;:16::i;:::-;48797:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48922:5;48910:17;;:8;;;;;;;;;;;:17;;;48907:62;;;48947:14;48940:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48907:62;48977:28;49008:10;:8;:10::i;:::-;48977:41;;49063:1;49038:14;49032:28;:32;:133;;;;;;;;;;;;;;;;;49100:14;49116:18;:7;:16;:18::i;:::-;49136:13;49083:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49032:133;49025:140;;;48673:500;;;;:::o;45657:31::-;;;;;;;;;;;;;:::o;45567:32::-;;;;:::o;49683:122::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49782:17:::1;49766:13;:33;;;;;;;;;;;;:::i;:::-;;49683:122:::0;:::o;45695:33::-;;;;:::o;47873:106::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47960:11:::1;47947:10;:24;;;;47873:106:::0;:::o;28923:164::-;29020:4;29044:18;:25;29063:5;29044:25;;;;;;;;;;;;;;;:35;29070:8;29044:35;;;;;;;;;;;;;;;;;;;;;;;;;29037:42;;28923:164;;;;:::o;49815:120::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49914:15:::1;49897:14;:32;;;;;;;;;;;;:::i;:::-;;49815:120:::0;:::o;42066:229::-;41397:12;:10;:12::i;:::-;41386:23;;:7;:5;:7::i;:::-;:23;;;41378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42189:1:::1;42169:22;;:8;:22;;;;42147:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42268:19;42278:8;42268:9;:19::i;:::-;42066:229:::0;:::o;45737:52::-;;;;;;;;;;;;;;;;;:::o;45394:37::-;;;;:::o;4244:326::-;4304:4;4561:1;4539:7;:19;;;:23;4532:30;;4244:326;;;:::o;14350:157::-;14435:4;14474:25;14459:40;;;:11;:40;;;;14452:47;;14350:157;;;:::o;30245:111::-;30302:4;30336:12;;30326:7;:22;30319:29;;30245:111;;;:::o;2797:98::-;2850:7;2877:10;2870:17;;2797:98;:::o;35165:196::-;35307:2;35280:15;:24;35296:7;35280:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35345:7;35341:2;35325:28;;35334:5;35325:28;;;;;;;;;;;;35165:196;;;:::o;33045:2002::-;33160:35;33198:20;33210:7;33198:11;:20::i;:::-;33160:58;;33231:22;33273:13;:18;;;33257:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33332:12;:10;:12::i;:::-;33308:36;;:20;33320:7;33308:11;:20::i;:::-;:36;;;33257:87;:154;;;;33361:50;33378:13;:18;;;33398:12;:10;:12::i;:::-;33361:16;:50::i;:::-;33257:154;33231:181;;33433:17;33425:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33548:4;33526:26;;:13;:18;;;:26;;;33518:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33628:1;33614:16;;:2;:16;;;;33606:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33685:43;33707:4;33713:2;33717:7;33726:1;33685:21;:43::i;:::-;33793:49;33810:1;33814:7;33823:13;:18;;;33793:8;:49::i;:::-;34168:1;34138:12;:18;34151:4;34138:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34212:1;34184:12;:16;34197:2;34184:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34258:2;34230:11;:20;34242:7;34230:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34320:15;34275:11;:20;34287:7;34275:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34588:19;34620:1;34610:7;:11;34588:33;;34681:1;34640:43;;:11;:24;34652:11;34640:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34636:295;;;34708:20;34716:11;34708:7;:20::i;:::-;34704:212;;;34785:13;:18;;;34753:11;:24;34765:11;34753:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34868:13;:28;;;34826:11;:24;34838:11;34826:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34704:212;34636:295;34113:829;34978:7;34974:2;34959:27;;34968:4;34959:27;;;;;;;;;;;;34997:42;35018:4;35024:2;35028:7;35037:1;34997:20;:42::i;:::-;33149:1898;;33045:2002;;;:::o;25926:537::-;25987:21;;:::i;:::-;26029:16;26037:7;26029;:16::i;:::-;26021:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26135:12;26150:7;26135:22;;26130:245;26167:1;26159:4;:9;26130:245;;26197:31;26231:11;:17;26243:4;26231:17;;;;;;;;;;;26197:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26297:1;26271:28;;:9;:14;;;:28;;;26267:93;;26331:9;26324:16;;;;;;26267:93;26178:197;26170:6;;;;;;;;26130:245;;;;26398:57;;;;;;;;;;:::i;:::-;;;;;;;;25926:537;;;;:::o;42303:173::-;42359:16;42378:6;;;;;;;;;;;42359:25;;42404:8;42395:6;;:17;;;;;;;;;;;;;;;;;;42459:8;42428:40;;42449:8;42428:40;;;;;;;;;;;;42348:128;42303:173;:::o;30364:104::-;30433:27;30443:2;30447:8;30433:27;;;;;;;;;;;;:9;:27::i;:::-;30364:104;;:::o;35926:804::-;36081:4;36102:15;:2;:13;;;:15::i;:::-;36098:625;;;36154:2;36138:36;;;36175:12;:10;:12::i;:::-;36189:4;36195:7;36204:5;36138:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36134:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36401:1;36384:6;:13;:18;36380:273;;;36427:61;;;;;;;;;;:::i;:::-;;;;;;;;36380:273;36603:6;36597:13;36588:6;36584:2;36580:15;36573:38;36134:534;36271:45;;;36261:55;;;:6;:55;;;;36254:62;;;;;36098:625;36707:4;36700:11;;35926:804;;;;;;;:::o;47538:108::-;47598:13;47631:7;47624:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47538:108;:::o;359:723::-;415:13;645:1;636:5;:10;632:53;;;663:10;;;;;;;;;;;;;;;;;;;;;632:53;695:12;710:5;695:20;;726:14;751:78;766:1;758:4;:9;751:78;;784:8;;;;;:::i;:::-;;;;815:2;807:10;;;;;:::i;:::-;;;751:78;;;839:19;871:6;861:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;839:39;;889:154;905:1;896:5;:10;889:154;;933:1;923:11;;;;;:::i;:::-;;;1000:2;992:5;:10;;;;:::i;:::-;979:2;:24;;;;:::i;:::-;966:39;;949:6;956;949:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1029:2;1020:11;;;;;:::i;:::-;;;889:154;;;1067:6;1053:21;;;;;359:723;;;;:::o;37218:159::-;;;;;:::o;37789:158::-;;;;;:::o;30831:163::-;30954:32;30960:2;30964:8;30974:5;30981:4;30954:5;:32::i;:::-;30831:163;;;:::o;31253:1538::-;31392:20;31415:12;;31392:35;;31460:1;31446:16;;:2;:16;;;;31438:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31531:1;31519:8;:13;;31511:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31590:61;31620:1;31624:2;31628:12;31642:8;31590:21;:61::i;:::-;31965:8;31929:12;:16;31942:2;31929:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32030:8;31989:12;:16;32002:2;31989:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32089:2;32056:11;:25;32068:12;32056:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32156:15;32106:11;:25;32118:12;32106:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32189:20;32212:12;32189:35;;32246:9;32241:415;32261:8;32257:1;:12;32241:415;;;32325:12;32321:2;32300:38;;32317:1;32300:38;;;;;;;;;;;;32361:4;32357:249;;;32424:59;32455:1;32459:2;32463:12;32477:5;32424:22;:59::i;:::-;32390:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32357:249;32626:14;;;;;;;32271:3;;;;;;;32241:415;;;;32687:12;32672;:27;;;;31904:807;32723:60;32752:1;32756:2;32760:12;32774:8;32723:20;:60::i;:::-;31381:1410;31253:1538;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:934::-;6924:6;6932;6940;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7316:80;7388:7;7379:6;7368:9;7364:22;7316:80;:::i;:::-;7298:98;;;;7094:312;7473:2;7462:9;7458:18;7445:32;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:80;7711:7;7702:6;7691:9;7687:22;7639:80;:::i;:::-;7621:98;;;;7416:313;6802:934;;;;;;;:::o;7742:327::-;7800:6;7849:2;7837:9;7828:7;7824:23;7820:32;7817:119;;;7855:79;;:::i;:::-;7817:119;7975:1;8000:52;8044:7;8035:6;8024:9;8020:22;8000:52;:::i;:::-;7990:62;;7946:116;7742:327;;;;:::o;8075:349::-;8144:6;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:63;8399:7;8390:6;8379:9;8375:22;8344:63;:::i;:::-;8334:73;;8290:127;8075:349;;;;:::o;8430:509::-;8499:6;8548:2;8536:9;8527:7;8523:23;8519:32;8516:119;;;8554:79;;:::i;:::-;8516:119;8702:1;8691:9;8687:17;8674:31;8732:18;8724:6;8721:30;8718:117;;;8754:79;;:::i;:::-;8718:117;8859:63;8914:7;8905:6;8894:9;8890:22;8859:63;:::i;:::-;8849:73;;8645:287;8430:509;;;;:::o;8945:329::-;9004:6;9053:2;9041:9;9032:7;9028:23;9024:32;9021:119;;;9059:79;;:::i;:::-;9021:119;9179:1;9204:53;9249:7;9240:6;9229:9;9225:22;9204:53;:::i;:::-;9194:63;;9150:117;8945:329;;;;:::o;9280:118::-;9367:24;9385:5;9367:24;:::i;:::-;9362:3;9355:37;9280:118;;:::o;9404:109::-;9485:21;9500:5;9485:21;:::i;:::-;9480:3;9473:34;9404:109;;:::o;9519:360::-;9605:3;9633:38;9665:5;9633:38;:::i;:::-;9687:70;9750:6;9745:3;9687:70;:::i;:::-;9680:77;;9766:52;9811:6;9806:3;9799:4;9792:5;9788:16;9766:52;:::i;:::-;9843:29;9865:6;9843:29;:::i;:::-;9838:3;9834:39;9827:46;;9609:270;9519:360;;;;:::o;9885:364::-;9973:3;10001:39;10034:5;10001:39;:::i;:::-;10056:71;10120:6;10115:3;10056:71;:::i;:::-;10049:78;;10136:52;10181:6;10176:3;10169:4;10162:5;10158:16;10136:52;:::i;:::-;10213:29;10235:6;10213:29;:::i;:::-;10208:3;10204:39;10197:46;;9977:272;9885:364;;;;:::o;10255:377::-;10361:3;10389:39;10422:5;10389:39;:::i;:::-;10444:89;10526:6;10521:3;10444:89;:::i;:::-;10437:96;;10542:52;10587:6;10582:3;10575:4;10568:5;10564:16;10542:52;:::i;:::-;10619:6;10614:3;10610:16;10603:23;;10365:267;10255:377;;;;:::o;10662:845::-;10765:3;10802:5;10796:12;10831:36;10857:9;10831:36;:::i;:::-;10883:89;10965:6;10960:3;10883:89;:::i;:::-;10876:96;;11003:1;10992:9;10988:17;11019:1;11014:137;;;;11165:1;11160:341;;;;10981:520;;11014:137;11098:4;11094:9;11083;11079:25;11074:3;11067:38;11134:6;11129:3;11125:16;11118:23;;11014:137;;11160:341;11227:38;11259:5;11227:38;:::i;:::-;11287:1;11301:154;11315:6;11312:1;11309:13;11301:154;;;11389:7;11383:14;11379:1;11374:3;11370:11;11363:35;11439:1;11430:7;11426:15;11415:26;;11337:4;11334:1;11330:12;11325:17;;11301:154;;;11484:6;11479:3;11475:16;11468:23;;11167:334;;10981:520;;10769:738;;10662:845;;;;:::o;11513:366::-;11655:3;11676:67;11740:2;11735:3;11676:67;:::i;:::-;11669:74;;11752:93;11841:3;11752:93;:::i;:::-;11870:2;11865:3;11861:12;11854:19;;11513:366;;;:::o;11885:::-;12027:3;12048:67;12112:2;12107:3;12048:67;:::i;:::-;12041:74;;12124:93;12213:3;12124:93;:::i;:::-;12242:2;12237:3;12233:12;12226:19;;11885:366;;;:::o;12257:365::-;12399:3;12420:66;12484:1;12479:3;12420:66;:::i;:::-;12413:73;;12495:93;12584:3;12495:93;:::i;:::-;12613:2;12608:3;12604:12;12597:19;;12257:365;;;:::o;12628:366::-;12770:3;12791:67;12855:2;12850:3;12791:67;:::i;:::-;12784:74;;12867:93;12956:3;12867:93;:::i;:::-;12985:2;12980:3;12976:12;12969:19;;12628:366;;;:::o;13000:::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13000:366;;;:::o;13372:::-;13514:3;13535:67;13599:2;13594:3;13535:67;:::i;:::-;13528:74;;13611:93;13700:3;13611:93;:::i;:::-;13729:2;13724:3;13720:12;13713:19;;13372:366;;;:::o;13744:::-;13886:3;13907:67;13971:2;13966:3;13907:67;:::i;:::-;13900:74;;13983:93;14072:3;13983:93;:::i;:::-;14101:2;14096:3;14092:12;14085:19;;13744:366;;;:::o;14116:::-;14258:3;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14355:93;14444:3;14355:93;:::i;:::-;14473:2;14468:3;14464:12;14457:19;;14116:366;;;:::o;14488:::-;14630:3;14651:67;14715:2;14710:3;14651:67;:::i;:::-;14644:74;;14727:93;14816:3;14727:93;:::i;:::-;14845:2;14840:3;14836:12;14829:19;;14488:366;;;:::o;14860:::-;15002:3;15023:67;15087:2;15082:3;15023:67;:::i;:::-;15016:74;;15099:93;15188:3;15099:93;:::i;:::-;15217:2;15212:3;15208:12;15201:19;;14860:366;;;:::o;15232:::-;15374:3;15395:67;15459:2;15454:3;15395:67;:::i;:::-;15388:74;;15471:93;15560:3;15471:93;:::i;:::-;15589:2;15584:3;15580:12;15573:19;;15232:366;;;:::o;15604:::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:365::-;16118:3;16139:66;16203:1;16198:3;16139:66;:::i;:::-;16132:73;;16214:93;16303:3;16214:93;:::i;:::-;16332:2;16327:3;16323:12;16316:19;;15976:365;;;:::o;16347:366::-;16489:3;16510:67;16574:2;16569:3;16510:67;:::i;:::-;16503:74;;16586:93;16675:3;16586:93;:::i;:::-;16704:2;16699:3;16695:12;16688:19;;16347:366;;;:::o;16719:::-;16861:3;16882:67;16946:2;16941:3;16882:67;:::i;:::-;16875:74;;16958:93;17047:3;16958:93;:::i;:::-;17076:2;17071:3;17067:12;17060:19;;16719:366;;;:::o;17091:::-;17233:3;17254:67;17318:2;17313:3;17254:67;:::i;:::-;17247:74;;17330:93;17419:3;17330:93;:::i;:::-;17448:2;17443:3;17439:12;17432:19;;17091:366;;;:::o;17463:::-;17605:3;17626:67;17690:2;17685:3;17626:67;:::i;:::-;17619:74;;17702:93;17791:3;17702:93;:::i;:::-;17820:2;17815:3;17811:12;17804:19;;17463:366;;;:::o;17835:::-;17977:3;17998:67;18062:2;18057:3;17998:67;:::i;:::-;17991:74;;18074:93;18163:3;18074:93;:::i;:::-;18192:2;18187:3;18183:12;18176:19;;17835:366;;;:::o;18207:398::-;18366:3;18387:83;18468:1;18463:3;18387:83;:::i;:::-;18380:90;;18479:93;18568:3;18479:93;:::i;:::-;18597:1;18592:3;18588:11;18581:18;;18207:398;;;:::o;18611:366::-;18753:3;18774:67;18838:2;18833:3;18774:67;:::i;:::-;18767:74;;18850:93;18939:3;18850:93;:::i;:::-;18968:2;18963:3;18959:12;18952:19;;18611:366;;;:::o;18983:::-;19125:3;19146:67;19210:2;19205:3;19146:67;:::i;:::-;19139:74;;19222:93;19311:3;19222:93;:::i;:::-;19340:2;19335:3;19331:12;19324:19;;18983:366;;;:::o;19355:::-;19497:3;19518:67;19582:2;19577:3;19518:67;:::i;:::-;19511:74;;19594:93;19683:3;19594:93;:::i;:::-;19712:2;19707:3;19703:12;19696:19;;19355:366;;;:::o;19727:::-;19869:3;19890:67;19954:2;19949:3;19890:67;:::i;:::-;19883:74;;19966:93;20055:3;19966:93;:::i;:::-;20084:2;20079:3;20075:12;20068:19;;19727:366;;;:::o;20099:::-;20241:3;20262:67;20326:2;20321:3;20262:67;:::i;:::-;20255:74;;20338:93;20427:3;20338:93;:::i;:::-;20456:2;20451:3;20447:12;20440:19;;20099:366;;;:::o;20471:::-;20613:3;20634:67;20698:2;20693:3;20634:67;:::i;:::-;20627:74;;20710:93;20799:3;20710:93;:::i;:::-;20828:2;20823:3;20819:12;20812:19;;20471:366;;;:::o;20843:::-;20985:3;21006:67;21070:2;21065:3;21006:67;:::i;:::-;20999:74;;21082:93;21171:3;21082:93;:::i;:::-;21200:2;21195:3;21191:12;21184:19;;20843:366;;;:::o;21215:118::-;21302:24;21320:5;21302:24;:::i;:::-;21297:3;21290:37;21215:118;;:::o;21339:589::-;21564:3;21586:95;21677:3;21668:6;21586:95;:::i;:::-;21579:102;;21698:95;21789:3;21780:6;21698:95;:::i;:::-;21691:102;;21810:92;21898:3;21889:6;21810:92;:::i;:::-;21803:99;;21919:3;21912:10;;21339:589;;;;;;:::o;21934:379::-;22118:3;22140:147;22283:3;22140:147;:::i;:::-;22133:154;;22304:3;22297:10;;21934:379;;;:::o;22319:222::-;22412:4;22450:2;22439:9;22435:18;22427:26;;22463:71;22531:1;22520:9;22516:17;22507:6;22463:71;:::i;:::-;22319:222;;;;:::o;22547:640::-;22742:4;22780:3;22769:9;22765:19;22757:27;;22794:71;22862:1;22851:9;22847:17;22838:6;22794:71;:::i;:::-;22875:72;22943:2;22932:9;22928:18;22919:6;22875:72;:::i;:::-;22957;23025:2;23014:9;23010:18;23001:6;22957:72;:::i;:::-;23076:9;23070:4;23066:20;23061:2;23050:9;23046:18;23039:48;23104:76;23175:4;23166:6;23104:76;:::i;:::-;23096:84;;22547:640;;;;;;;:::o;23193:210::-;23280:4;23318:2;23307:9;23303:18;23295:26;;23331:65;23393:1;23382:9;23378:17;23369:6;23331:65;:::i;:::-;23193:210;;;;:::o;23409:313::-;23522:4;23560:2;23549:9;23545:18;23537:26;;23609:9;23603:4;23599:20;23595:1;23584:9;23580:17;23573:47;23637:78;23710:4;23701:6;23637:78;:::i;:::-;23629:86;;23409:313;;;;:::o;23728:419::-;23894:4;23932:2;23921:9;23917:18;23909:26;;23981:9;23975:4;23971:20;23967:1;23956:9;23952:17;23945:47;24009:131;24135:4;24009:131;:::i;:::-;24001:139;;23728:419;;;:::o;24153:::-;24319:4;24357:2;24346:9;24342:18;24334:26;;24406:9;24400:4;24396:20;24392:1;24381:9;24377:17;24370:47;24434:131;24560:4;24434:131;:::i;:::-;24426:139;;24153:419;;;:::o;24578:::-;24744:4;24782:2;24771:9;24767:18;24759:26;;24831:9;24825:4;24821:20;24817:1;24806:9;24802:17;24795:47;24859:131;24985:4;24859:131;:::i;:::-;24851:139;;24578:419;;;:::o;25003:::-;25169:4;25207:2;25196:9;25192:18;25184:26;;25256:9;25250:4;25246:20;25242:1;25231:9;25227:17;25220:47;25284:131;25410:4;25284:131;:::i;:::-;25276:139;;25003:419;;;:::o;25428:::-;25594:4;25632:2;25621:9;25617:18;25609:26;;25681:9;25675:4;25671:20;25667:1;25656:9;25652:17;25645:47;25709:131;25835:4;25709:131;:::i;:::-;25701:139;;25428:419;;;:::o;25853:::-;26019:4;26057:2;26046:9;26042:18;26034:26;;26106:9;26100:4;26096:20;26092:1;26081:9;26077:17;26070:47;26134:131;26260:4;26134:131;:::i;:::-;26126:139;;25853:419;;;:::o;26278:::-;26444:4;26482:2;26471:9;26467:18;26459:26;;26531:9;26525:4;26521:20;26517:1;26506:9;26502:17;26495:47;26559:131;26685:4;26559:131;:::i;:::-;26551:139;;26278:419;;;:::o;26703:::-;26869:4;26907:2;26896:9;26892:18;26884:26;;26956:9;26950:4;26946:20;26942:1;26931:9;26927:17;26920:47;26984:131;27110:4;26984:131;:::i;:::-;26976:139;;26703:419;;;:::o;27128:::-;27294:4;27332:2;27321:9;27317:18;27309:26;;27381:9;27375:4;27371:20;27367:1;27356:9;27352:17;27345:47;27409:131;27535:4;27409:131;:::i;:::-;27401:139;;27128:419;;;:::o;27553:::-;27719:4;27757:2;27746:9;27742:18;27734:26;;27806:9;27800:4;27796:20;27792:1;27781:9;27777:17;27770:47;27834:131;27960:4;27834:131;:::i;:::-;27826:139;;27553:419;;;:::o;27978:::-;28144:4;28182:2;28171:9;28167:18;28159:26;;28231:9;28225:4;28221:20;28217:1;28206:9;28202:17;28195:47;28259:131;28385:4;28259:131;:::i;:::-;28251:139;;27978:419;;;:::o;28403:::-;28569:4;28607:2;28596:9;28592:18;28584:26;;28656:9;28650:4;28646:20;28642:1;28631:9;28627:17;28620:47;28684:131;28810:4;28684:131;:::i;:::-;28676:139;;28403:419;;;:::o;28828:::-;28994:4;29032:2;29021:9;29017:18;29009:26;;29081:9;29075:4;29071:20;29067:1;29056:9;29052:17;29045:47;29109:131;29235:4;29109:131;:::i;:::-;29101:139;;28828:419;;;:::o;29253:::-;29419:4;29457:2;29446:9;29442:18;29434:26;;29506:9;29500:4;29496:20;29492:1;29481:9;29477:17;29470:47;29534:131;29660:4;29534:131;:::i;:::-;29526:139;;29253:419;;;:::o;29678:::-;29844:4;29882:2;29871:9;29867:18;29859:26;;29931:9;29925:4;29921:20;29917:1;29906:9;29902:17;29895:47;29959:131;30085:4;29959:131;:::i;:::-;29951:139;;29678:419;;;:::o;30103:::-;30269:4;30307:2;30296:9;30292:18;30284:26;;30356:9;30350:4;30346:20;30342:1;30331:9;30327:17;30320:47;30384:131;30510:4;30384:131;:::i;:::-;30376:139;;30103:419;;;:::o;30528:::-;30694:4;30732:2;30721:9;30717:18;30709:26;;30781:9;30775:4;30771:20;30767:1;30756:9;30752:17;30745:47;30809:131;30935:4;30809:131;:::i;:::-;30801:139;;30528:419;;;:::o;30953:::-;31119:4;31157:2;31146:9;31142:18;31134:26;;31206:9;31200:4;31196:20;31192:1;31181:9;31177:17;31170:47;31234:131;31360:4;31234:131;:::i;:::-;31226:139;;30953:419;;;:::o;31378:::-;31544:4;31582:2;31571:9;31567:18;31559:26;;31631:9;31625:4;31621:20;31617:1;31606:9;31602:17;31595:47;31659:131;31785:4;31659:131;:::i;:::-;31651:139;;31378:419;;;:::o;31803:::-;31969:4;32007:2;31996:9;31992:18;31984:26;;32056:9;32050:4;32046:20;32042:1;32031:9;32027:17;32020:47;32084:131;32210:4;32084:131;:::i;:::-;32076:139;;31803:419;;;:::o;32228:::-;32394:4;32432:2;32421:9;32417:18;32409:26;;32481:9;32475:4;32471:20;32467:1;32456:9;32452:17;32445:47;32509:131;32635:4;32509:131;:::i;:::-;32501:139;;32228:419;;;:::o;32653:::-;32819:4;32857:2;32846:9;32842:18;32834:26;;32906:9;32900:4;32896:20;32892:1;32881:9;32877:17;32870:47;32934:131;33060:4;32934:131;:::i;:::-;32926:139;;32653:419;;;:::o;33078:::-;33244:4;33282:2;33271:9;33267:18;33259:26;;33331:9;33325:4;33321:20;33317:1;33306:9;33302:17;33295:47;33359:131;33485:4;33359:131;:::i;:::-;33351:139;;33078:419;;;:::o;33503:::-;33669:4;33707:2;33696:9;33692:18;33684:26;;33756:9;33750:4;33746:20;33742:1;33731:9;33727:17;33720:47;33784:131;33910:4;33784:131;:::i;:::-;33776:139;;33503:419;;;:::o;33928:::-;34094:4;34132:2;34121:9;34117:18;34109:26;;34181:9;34175:4;34171:20;34167:1;34156:9;34152:17;34145:47;34209:131;34335:4;34209:131;:::i;:::-;34201:139;;33928:419;;;:::o;34353:222::-;34446:4;34484:2;34473:9;34469:18;34461:26;;34497:71;34565:1;34554:9;34550:17;34541:6;34497:71;:::i;:::-;34353:222;;;;:::o;34581:129::-;34615:6;34642:20;;:::i;:::-;34632:30;;34671:33;34699:4;34691:6;34671:33;:::i;:::-;34581:129;;;:::o;34716:75::-;34749:6;34782:2;34776:9;34766:19;;34716:75;:::o;34797:307::-;34858:4;34948:18;34940:6;34937:30;34934:56;;;34970:18;;:::i;:::-;34934:56;35008:29;35030:6;35008:29;:::i;:::-;35000:37;;35092:4;35086;35082:15;35074:23;;34797:307;;;:::o;35110:308::-;35172:4;35262:18;35254:6;35251:30;35248:56;;;35284:18;;:::i;:::-;35248:56;35322:29;35344:6;35322:29;:::i;:::-;35314:37;;35406:4;35400;35396:15;35388:23;;35110:308;;;:::o;35424:141::-;35473:4;35496:3;35488:11;;35519:3;35516:1;35509:14;35553:4;35550:1;35540:18;35532:26;;35424:141;;;:::o;35571:98::-;35622:6;35656:5;35650:12;35640:22;;35571:98;;;:::o;35675:99::-;35727:6;35761:5;35755:12;35745:22;;35675:99;;;:::o;35780:168::-;35863:11;35897:6;35892:3;35885:19;35937:4;35932:3;35928:14;35913:29;;35780:168;;;;:::o;35954:147::-;36055:11;36092:3;36077:18;;35954:147;;;;:::o;36107:169::-;36191:11;36225:6;36220:3;36213:19;36265:4;36260:3;36256:14;36241:29;;36107:169;;;;:::o;36282:148::-;36384:11;36421:3;36406:18;;36282:148;;;;:::o;36436:305::-;36476:3;36495:20;36513:1;36495:20;:::i;:::-;36490:25;;36529:20;36547:1;36529:20;:::i;:::-;36524:25;;36683:1;36615:66;36611:74;36608:1;36605:81;36602:107;;;36689:18;;:::i;:::-;36602:107;36733:1;36730;36726:9;36719:16;;36436:305;;;;:::o;36747:185::-;36787:1;36804:20;36822:1;36804:20;:::i;:::-;36799:25;;36838:20;36856:1;36838:20;:::i;:::-;36833:25;;36877:1;36867:35;;36882:18;;:::i;:::-;36867:35;36924:1;36921;36917:9;36912:14;;36747:185;;;;:::o;36938:348::-;36978:7;37001:20;37019:1;37001:20;:::i;:::-;36996:25;;37035:20;37053:1;37035:20;:::i;:::-;37030:25;;37223:1;37155:66;37151:74;37148:1;37145:81;37140:1;37133:9;37126:17;37122:105;37119:131;;;37230:18;;:::i;:::-;37119:131;37278:1;37275;37271:9;37260:20;;36938:348;;;;:::o;37292:191::-;37332:4;37352:20;37370:1;37352:20;:::i;:::-;37347:25;;37386:20;37404:1;37386:20;:::i;:::-;37381:25;;37425:1;37422;37419:8;37416:34;;;37430:18;;:::i;:::-;37416:34;37475:1;37472;37468:9;37460:17;;37292:191;;;;:::o;37489:96::-;37526:7;37555:24;37573:5;37555:24;:::i;:::-;37544:35;;37489:96;;;:::o;37591:90::-;37625:7;37668:5;37661:13;37654:21;37643:32;;37591:90;;;:::o;37687:149::-;37723:7;37763:66;37756:5;37752:78;37741:89;;37687:149;;;:::o;37842:126::-;37879:7;37919:42;37912:5;37908:54;37897:65;;37842:126;;;:::o;37974:77::-;38011:7;38040:5;38029:16;;37974:77;;;:::o;38057:154::-;38141:6;38136:3;38131;38118:30;38203:1;38194:6;38189:3;38185:16;38178:27;38057:154;;;:::o;38217:307::-;38285:1;38295:113;38309:6;38306:1;38303:13;38295:113;;;38394:1;38389:3;38385:11;38379:18;38375:1;38370:3;38366:11;38359:39;38331:2;38328:1;38324:10;38319:15;;38295:113;;;38426:6;38423:1;38420:13;38417:101;;;38506:1;38497:6;38492:3;38488:16;38481:27;38417:101;38266:258;38217:307;;;:::o;38530:320::-;38574:6;38611:1;38605:4;38601:12;38591:22;;38658:1;38652:4;38648:12;38679:18;38669:81;;38735:4;38727:6;38723:17;38713:27;;38669:81;38797:2;38789:6;38786:14;38766:18;38763:38;38760:84;;;38816:18;;:::i;:::-;38760:84;38581:269;38530:320;;;:::o;38856:281::-;38939:27;38961:4;38939:27;:::i;:::-;38931:6;38927:40;39069:6;39057:10;39054:22;39033:18;39021:10;39018:34;39015:62;39012:88;;;39080:18;;:::i;:::-;39012:88;39120:10;39116:2;39109:22;38899:238;38856:281;;:::o;39143:233::-;39182:3;39205:24;39223:5;39205:24;:::i;:::-;39196:33;;39251:66;39244:5;39241:77;39238:103;;;39321:18;;:::i;:::-;39238:103;39368:1;39361:5;39357:13;39350:20;;39143:233;;;:::o;39382:176::-;39414:1;39431:20;39449:1;39431:20;:::i;:::-;39426:25;;39465:20;39483:1;39465:20;:::i;:::-;39460:25;;39504:1;39494:35;;39509:18;;:::i;:::-;39494:35;39550:1;39547;39543:9;39538:14;;39382:176;;;;:::o;39564:180::-;39612:77;39609:1;39602:88;39709:4;39706:1;39699:15;39733:4;39730:1;39723:15;39750:180;39798:77;39795:1;39788:88;39895:4;39892:1;39885:15;39919:4;39916:1;39909:15;39936:180;39984:77;39981:1;39974:88;40081:4;40078:1;40071:15;40105:4;40102:1;40095:15;40122:180;40170:77;40167:1;40160:88;40267:4;40264:1;40257:15;40291:4;40288:1;40281:15;40308:180;40356:77;40353:1;40346:88;40453:4;40450:1;40443:15;40477:4;40474:1;40467:15;40494:117;40603:1;40600;40593:12;40617:117;40726:1;40723;40716:12;40740:117;40849:1;40846;40839:12;40863:117;40972:1;40969;40962:12;40986:117;41095:1;41092;41085:12;41109:117;41218:1;41215;41208:12;41232:102;41273:6;41324:2;41320:7;41315:2;41308:5;41304:14;41300:28;41290:38;;41232:102;;;:::o;41340:221::-;41480:34;41476:1;41468:6;41464:14;41457:58;41549:4;41544:2;41536:6;41532:15;41525:29;41340:221;:::o;41567:170::-;41707:22;41703:1;41695:6;41691:14;41684:46;41567:170;:::o;41743:157::-;41883:9;41879:1;41871:6;41867:14;41860:33;41743:157;:::o;41906:225::-;42046:34;42042:1;42034:6;42030:14;42023:58;42115:8;42110:2;42102:6;42098:15;42091:33;41906:225;:::o;42137:229::-;42277:34;42273:1;42265:6;42261:14;42254:58;42346:12;42341:2;42333:6;42329:15;42322:37;42137:229;:::o;42372:222::-;42512:34;42508:1;42500:6;42496:14;42489:58;42581:5;42576:2;42568:6;42564:15;42557:30;42372:222;:::o;42600:224::-;42740:34;42736:1;42728:6;42724:14;42717:58;42809:7;42804:2;42796:6;42792:15;42785:32;42600:224;:::o;42830:220::-;42970:34;42966:1;42958:6;42954:14;42947:58;43039:3;43034:2;43026:6;43022:15;43015:28;42830:220;:::o;43056:244::-;43196:34;43192:1;43184:6;43180:14;43173:58;43265:27;43260:2;43252:6;43248:15;43241:52;43056:244;:::o;43306:230::-;43446:34;43442:1;43434:6;43430:14;43423:58;43515:13;43510:2;43502:6;43498:15;43491:38;43306:230;:::o;43542:182::-;43682:34;43678:1;43670:6;43666:14;43659:58;43542:182;:::o;43730:225::-;43870:34;43866:1;43858:6;43854:14;43847:58;43939:8;43934:2;43926:6;43922:15;43915:33;43730:225;:::o;43961:158::-;44101:10;44097:1;44089:6;44085:14;44078:34;43961:158;:::o;44125:182::-;44265:34;44261:1;44253:6;44249:14;44242:58;44125:182;:::o;44313:234::-;44453:34;44449:1;44441:6;44437:14;44430:58;44522:17;44517:2;44509:6;44505:15;44498:42;44313:234;:::o;44553:176::-;44693:28;44689:1;44681:6;44677:14;44670:52;44553:176;:::o;44735:237::-;44875:34;44871:1;44863:6;44859:14;44852:58;44944:20;44939:2;44931:6;44927:15;44920:45;44735:237;:::o;44978:221::-;45118:34;45114:1;45106:6;45102:14;45095:58;45187:4;45182:2;45174:6;45170:15;45163:29;44978:221;:::o;45205:114::-;;:::o;45325:238::-;45465:34;45461:1;45453:6;45449:14;45442:58;45534:21;45529:2;45521:6;45517:15;45510:46;45325:238;:::o;45569:220::-;45709:34;45705:1;45697:6;45693:14;45686:58;45778:3;45773:2;45765:6;45761:15;45754:28;45569:220;:::o;45795:227::-;45935:34;45931:1;45923:6;45919:14;45912:58;46004:10;45999:2;45991:6;45987:15;45980:35;45795:227;:::o;46028:169::-;46168:21;46164:1;46156:6;46152:14;46145:45;46028:169;:::o;46203:233::-;46343:34;46339:1;46331:6;46327:14;46320:58;46412:16;46407:2;46399:6;46395:15;46388:41;46203:233;:::o;46442:234::-;46582:34;46578:1;46570:6;46566:14;46559:58;46651:17;46646:2;46638:6;46634:15;46627:42;46442:234;:::o;46682:232::-;46822:34;46818:1;46810:6;46806:14;46799:58;46891:15;46886:2;46878:6;46874:15;46867:40;46682:232;:::o;46920:122::-;46993:24;47011:5;46993:24;:::i;:::-;46986:5;46983:35;46973:63;;47032:1;47029;47022:12;46973:63;46920:122;:::o;47048:116::-;47118:21;47133:5;47118:21;:::i;:::-;47111:5;47108:32;47098:60;;47154:1;47151;47144:12;47098:60;47048:116;:::o;47170:120::-;47242:23;47259:5;47242:23;:::i;:::-;47235:5;47232:34;47222:62;;47280:1;47277;47270:12;47222:62;47170:120;:::o;47296:122::-;47369:24;47387:5;47369:24;:::i;:::-;47362:5;47359:35;47349:63;;47408:1;47405;47398:12;47349:63;47296:122;:::o

Swarm Source

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