ETH Price: $3,398.16 (+1.44%)
Gas: 7 Gwei

Token

Fee Fi Foams (FeeFiFoamsNFT)
 

Overview

Max Total Supply

2,135 FeeFiFoamsNFT

Holders

692

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
5678998765.eth
Balance
3 FeeFiFoamsNFT
0x493df0ed62fba585924b8d5fb1db903974cb9982
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:
FeeFiFoamsNFT

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-07-14
*/

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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: FeeFiFoamsNFT.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 = true;
    }

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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 FeeFiFoamsNFT is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.005 ether;
    uint256 public maxSupply = 7777;
    uint256 public maxFree = 2000;
    uint256 public maxperAddressFreeLimit = 1;
    uint256 public maxperAddressPublicMint = 3;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("Fee Fi Foams", "FeeFiFoamsNFT") {
        setBaseURI("ipfs://QmPEnWyQ8XM9WCozFSCmzQq8gCBBWnG2gbrzCotUNXZgJz/");

    }

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

    function MintFree(uint256 _mintAmount) public payable nonReentrant whenNotPaused{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded");
		require(_mintAmount > 0, "Cant mint 0" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant whenNotPaused{
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" );
        require(s + _mintAmount <= maxSupply, "Cant go over supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    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: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }



    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

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

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
    function setPaused() public onlyOwner whenNotPaused {
        _pause();
    }

    function setUnpaused() public onlyOwner whenPaused {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFree","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":"maxperAddressFreeLimit","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUnpaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526611c37937e08000600a55611e61600b556107d0600c556001600d556003600e553480156200003257600080fd5b506040518060400160405280600c81526020017f46656520466920466f616d7300000000000000000000000000000000000000008152506040518060400160405280600d81526020017f4665654669466f616d734e4654000000000000000000000000000000000000008152508160019080519060200190620000b7929190620002e9565b508060029080519060200190620000d0929190620002e9565b505050620000f3620000e76200014660201b60201c565b6200014e60201b60201c565b6001600760146101000a81548160ff02191690831515021790555060016008819055506200014060405180606001604052806036815260200162005464603691396200021460201b60201c565b62000481565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002246200014660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200024a620002bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029a90620003c0565b60405180910390fd5b8060099080519060200190620002bb929190620002e9565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f790620003f3565b90600052602060002090601f0160209004810192826200031b576000855562000367565b82601f106200033657805160ff191683800117855562000367565b8280016001018555821562000367579182015b828111156200036657825182559160200191906001019062000349565b5b5090506200037691906200037a565b5090565b5b80821115620003955760008160009055506001016200037b565b5090565b6000620003a8602083620003e2565b9150620003b58262000458565b602082019050919050565b60006020820190508181036000830152620003db8162000399565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200040c57607f821691505b6020821081141562000423576200042262000429565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614fd380620004916000396000f3fe60806040526004361061023b5760003560e01c80635c975abb1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107ff578063d5abeb011461083c578063dc4e66b514610867578063e985e9c514610890578063f2fde38b146108cd5761023b565b8063a0712d681461074c578063a22cb46514610768578063ad6ac81b14610791578063b88d4fde146107ad578063bde12d73146107d65761023b565b806377ad99f0116100f257806377ad99f0146106745780637c6b172d146106905780638da5cb5b146106cd57806395d89b41146106f857806396ea3a47146107235761023b565b80635c975abb1461058d5780636352211e146105b85780636c0360eb146105f557806370a0823114610620578063715018a61461065d5761023b565b806334c8fd75116101bc57806344a0d68a1161018057806344a0d68a146104a8578063485a68a3146104d15780634f6ccce7146104fc57806355f804b31461053957806356569a1d146105625761023b565b806334c8fd751461041c57806337a66d85146104475780633c89edce1461045e5780633ccfd60b1461047557806342842e0e1461047f5761023b565b806313faede61161020357806313faede61461033757806318160ddd14610362578063228025e81461038d57806323b872dd146103b65780632f745c59146103df5761023b565b806301ffc9a714610240578063022d67dd1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906138ad565b6108f6565b6040516102749190613f35565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613950565b610a40565b005b3480156102b257600080fd5b506102bb610ac6565b6040516102c89190613f50565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613950565b610b58565b6040516103059190613ece565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906137ec565b610bdd565b005b34801561034357600080fd5b5061034c610cf6565b6040516103599190614312565b60405180910390f35b34801561036e57600080fd5b50610377610cfc565b6040516103849190614312565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613950565b610d05565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906136d6565b610dd0565b005b3480156103eb57600080fd5b50610406600480360381019061040191906137ec565b610de0565b6040516104139190614312565b60405180910390f35b34801561042857600080fd5b50610431610fd2565b60405161043e9190614312565b60405180910390f35b34801561045357600080fd5b5061045c610fd8565b005b34801561046a57600080fd5b50610473611066565b005b61047d6110f4565b005b34801561048b57600080fd5b506104a660048036038101906104a191906136d6565b6111e9565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190613950565b611209565b005b3480156104dd57600080fd5b506104e661128f565b6040516104f39190614312565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190613950565b611295565b6040516105309190614312565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190613907565b6112e8565b005b34801561056e57600080fd5b5061057761137e565b6040516105849190614312565b60405180910390f35b34801561059957600080fd5b506105a2611384565b6040516105af9190613f35565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613950565b61139b565b6040516105ec9190613ece565b60405180910390f35b34801561060157600080fd5b5061060a6113b1565b6040516106179190613f50565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613669565b61143f565b6040516106549190614312565b60405180910390f35b34801561066957600080fd5b50610672611528565b005b61068e60048036038101906106899190613950565b6115b0565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613669565b6116a6565b6040516106c49190614312565b60405180910390f35b3480156106d957600080fd5b506106e26116be565b6040516106ef9190613ece565b60405180910390f35b34801561070457600080fd5b5061070d6116e8565b60405161071a9190613f50565b60405180910390f35b34801561072f57600080fd5b5061074a6004803603810190610745919061382c565b61177a565b005b61076660048036038101906107619190613950565b61195c565b005b34801561077457600080fd5b5061078f600480360381019061078a91906137ac565b611aca565b005b6107ab60048036038101906107a69190613950565b611c4b565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613729565b611e65565b005b3480156107e257600080fd5b506107fd60048036038101906107f89190613950565b611ec1565b005b34801561080b57600080fd5b5061082660048036038101906108219190613950565b611f47565b6040516108339190613f50565b60405180910390f35b34801561084857600080fd5b50610851611fee565b60405161085e9190614312565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613950565b611ff4565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613696565b61207a565b6040516108c49190613f35565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef9190613669565b61210e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a395750610a3882612206565b5b9050919050565b610a48612270565b73ffffffffffffffffffffffffffffffffffffffff16610a666116be565b73ffffffffffffffffffffffffffffffffffffffff1614610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390614192565b60405180910390fd5b80600e8190555050565b606060018054610ad5906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b01906145cd565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b6000610b6382612278565b610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b99906142f2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be88261139b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906141f2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c78612270565b73ffffffffffffffffffffffffffffffffffffffff161480610ca75750610ca681610ca1612270565b61207a565b5b610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906140d2565b60405180910390fd5b610cf1838383612285565b505050565b600a5481565b60008054905090565b610d0d612270565b73ffffffffffffffffffffffffffffffffffffffff16610d2b6116be565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890614192565b60405180910390fd5b600b54811115610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd906140f2565b60405180910390fd5b80600b8190555050565b610ddb838383612337565b505050565b6000610deb8361143f565b8210610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390613f72565b60405180910390fd5b6000610e36610cfc565b905060008060005b83811015610f90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f825786841415610f79578195505050505050610fcc565b83806001019450505b508080600101915050610e3e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614292565b60405180910390fd5b92915050565b600e5481565b610fe0612270565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90614192565b60405180910390fd5b61105c612877565b6110646128c1565b565b61106e612270565b73ffffffffffffffffffffffffffffffffffffffff1661108c6116be565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614192565b60405180910390fd5b6110ea612924565b6110f261296d565b565b6110fc612270565b73ffffffffffffffffffffffffffffffffffffffff1661111a6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790614192565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161119690613eb9565b60006040518083038185875af1925050503d80600081146111d3576040519150601f19603f3d011682016040523d82523d6000602084013e6111d8565b606091505b50509050806111e657600080fd5b50565b61120483838360405180602001604052806000815250611e65565b505050565b611211612270565b73ffffffffffffffffffffffffffffffffffffffff1661122f6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90614192565b60405180910390fd5b80600a8190555050565b600c5481565b600061129f610cfc565b82106112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614052565b60405180910390fd5b819050919050565b6112f0612270565b73ffffffffffffffffffffffffffffffffffffffff1661130e6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90614192565b60405180910390fd5b806009908051906020019061137a929190613397565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b60006113a6826129d0565b600001519050919050565b600980546113be906145cd565b80601f01602080910402602001604051908101604052809291908181526020018280546113ea906145cd565b80156114375780601f1061140c57610100808354040283529160200191611437565b820191906000526020600020905b81548152906001019060200180831161141a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790614112565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611530612270565b73ffffffffffffffffffffffffffffffffffffffff1661154e6116be565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614192565b60405180910390fd5b6115ae6000612b6a565b565b6115b8612270565b73ffffffffffffffffffffffffffffffffffffffff166115d66116be565b73ffffffffffffffffffffffffffffffffffffffff161461162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390614192565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161165290613eb9565b60006040518083038185875af1925050503d806000811461168f576040519150601f19603f3d011682016040523d82523d6000602084013e611694565b606091505b50509050806116a257600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116f7906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611723906145cd565b80156117705780601f1061174557610100808354040283529160200191611770565b820191906000526020600020905b81548152906001019060200180831161175357829003601f168201915b5050505050905090565b611782612270565b73ffffffffffffffffffffffffffffffffffffffff166117a06116be565b73ffffffffffffffffffffffffffffffffffffffff16146117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90614192565b60405180910390fd5b81819050848490501461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590614092565b60405180910390fd5b600080611849610cfc565b905060005b868690508110156118915786868281811061186c5761186b614737565b5b905060200201358361187e9190614402565b92508061188a90614630565b905061184e565b50600b5482826118a19190614402565b11156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614172565b60405180910390fd5b6000915060005b8484905081101561194f5761193e85858381811061190a57611909614737565b5b905060200201602081019061191f9190613669565b88888481811061193257611931614737565b5b90506020020135612c30565b8061194890614630565b90506118e9565b5060009050505050505050565b600260085414156119a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611999906142b2565b60405180910390fd5b60026008819055506119b2612877565b60006119bc610cfc565b905060008211611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613f92565b60405180910390fd5b600e54821115611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90614232565b60405180910390fd5b600b548282611a559190614402565b1115611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90614132565b60405180910390fd5b81600a54611aa49190614489565b341015611ab057600080fd5b611aba3383612c30565b6000905050600160088190555050565b611ad2612270565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906141b2565b60405180910390fd5b8060066000611b4d612270565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bfa612270565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c3f9190613f35565b60405180910390a35050565b60026008541415611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c88906142b2565b60405180910390fd5b6002600881905550611ca1612877565b6000611cab610cfc565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611d009190614402565b1115611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614032565b60405180910390fd5b60008311611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613f92565b60405180910390fd5b600c548383611d939190614402565b1115611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614132565b60405180910390fd5b60005b83811015611e4557600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e2f90614630565b919050555080611e3e90614630565b9050611dd7565b50611e503384612c30565b60009150600090505050600160088190555050565b611e70848484612337565b611e7c84848484612c4e565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614212565b60405180910390fd5b50505050565b611ec9612270565b73ffffffffffffffffffffffffffffffffffffffff16611ee76116be565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490614192565b60405180910390fd5b80600c8190555050565b6060611f5282612278565b611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890613fd2565b60405180910390fd5b6000611f9b612de5565b90506000815111611fbb5760405180602001604052806000815250611fe6565b80611fc584612e77565b604051602001611fd6929190613e8a565b6040516020818303038152906040525b915050919050565b600b5481565b611ffc612270565b73ffffffffffffffffffffffffffffffffffffffff1661201a6116be565b73ffffffffffffffffffffffffffffffffffffffff1614612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790614192565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612116612270565b73ffffffffffffffffffffffffffffffffffffffff166121346116be565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614192565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613ff2565b60405180910390fd5b61220381612b6a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612342826129d0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612369612270565b73ffffffffffffffffffffffffffffffffffffffff1614806123c5575061238e612270565b73ffffffffffffffffffffffffffffffffffffffff166123ad84610b58565b73ffffffffffffffffffffffffffffffffffffffff16145b806123e157506123e082600001516123db612270565b61207a565b5b905080612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a906141d2565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90614152565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614072565b60405180910390fd5b6125128585856001612fd8565b6125226000848460000151612285565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128075761276681612278565b156128065782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128708585856001612fde565b5050505050565b61287f611384565b156128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b6906140b2565b60405180910390fd5b565b6128c9612877565b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861290d612270565b60405161291a9190613ece565b60405180910390a1565b61292c611384565b61296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290613fb2565b60405180910390fd5b565b612975612924565b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6129b9612270565b6040516129c69190613ece565b60405180910390a1565b6129d861341d565b6129e182612278565b612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614012565b60405180910390fd5b60008290505b60008110612b29576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b1a578092505050612b65565b50808060019003915050612a26565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c906142d2565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c4a828260405180602001604052806000815250612fe4565b5050565b6000612c6f8473ffffffffffffffffffffffffffffffffffffffff16612ff6565b15612dd8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c98612270565b8786866040518563ffffffff1660e01b8152600401612cba9493929190613ee9565b602060405180830381600087803b158015612cd457600080fd5b505af1925050508015612d0557506040513d601f19601f82011682018060405250810190612d0291906138da565b60015b612d88573d8060008114612d35576040519150601f19603f3d011682016040523d82523d6000602084013e612d3a565b606091505b50600081511415612d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7790614212565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ddd565b600190505b949350505050565b606060098054612df4906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612e20906145cd565b8015612e6d5780601f10612e4257610100808354040283529160200191612e6d565b820191906000526020600020905b815481529060010190602001808311612e5057829003601f168201915b5050505050905090565b60606000821415612ebf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fd3565b600082905060005b60008214612ef1578080612eda90614630565b915050600a82612eea9190614458565b9150612ec7565b60008167ffffffffffffffff811115612f0d57612f0c614766565b5b6040519080825280601f01601f191660200182016040528015612f3f5781602001600182028036833780820191505090505b5090505b60008514612fcc57600182612f5891906144e3565b9150600a85612f679190614679565b6030612f739190614402565b60f81b818381518110612f8957612f88614737565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fc59190614458565b9450612f43565b8093505050505b919050565b50505050565b50505050565b612ff18383836001613019565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561308f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308690614252565b60405180910390fd5b60008414156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614272565b60405180910390fd5b6130e06000868387612fd8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561337a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613365576133256000888488612c4e565b613364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335b90614212565b60405180910390fd5b5b818060010192505080806001019150506132ae565b5080600081905550506133906000868387612fde565b5050505050565b8280546133a3906145cd565b90600052602060002090601f0160209004810192826133c5576000855561340c565b82601f106133de57805160ff191683800117855561340c565b8280016001018555821561340c579182015b8281111561340b5782518255916020019190600101906133f0565b5b5090506134199190613457565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613470576000816000905550600101613458565b5090565b600061348761348284614352565b61432d565b9050828152602081018484840111156134a3576134a26147a4565b5b6134ae84828561458b565b509392505050565b60006134c96134c484614383565b61432d565b9050828152602081018484840111156134e5576134e46147a4565b5b6134f084828561458b565b509392505050565b60008135905061350781614f41565b92915050565b60008083601f8401126135235761352261479a565b5b8235905067ffffffffffffffff8111156135405761353f614795565b5b60208301915083602082028301111561355c5761355b61479f565b5b9250929050565b60008083601f8401126135795761357861479a565b5b8235905067ffffffffffffffff81111561359657613595614795565b5b6020830191508360208202830111156135b2576135b161479f565b5b9250929050565b6000813590506135c881614f58565b92915050565b6000813590506135dd81614f6f565b92915050565b6000815190506135f281614f6f565b92915050565b600082601f83011261360d5761360c61479a565b5b813561361d848260208601613474565b91505092915050565b600082601f83011261363b5761363a61479a565b5b813561364b8482602086016134b6565b91505092915050565b60008135905061366381614f86565b92915050565b60006020828403121561367f5761367e6147ae565b5b600061368d848285016134f8565b91505092915050565b600080604083850312156136ad576136ac6147ae565b5b60006136bb858286016134f8565b92505060206136cc858286016134f8565b9150509250929050565b6000806000606084860312156136ef576136ee6147ae565b5b60006136fd868287016134f8565b935050602061370e868287016134f8565b925050604061371f86828701613654565b9150509250925092565b60008060008060808587031215613743576137426147ae565b5b6000613751878288016134f8565b9450506020613762878288016134f8565b935050604061377387828801613654565b925050606085013567ffffffffffffffff811115613794576137936147a9565b5b6137a0878288016135f8565b91505092959194509250565b600080604083850312156137c3576137c26147ae565b5b60006137d1858286016134f8565b92505060206137e2858286016135b9565b9150509250929050565b60008060408385031215613803576138026147ae565b5b6000613811858286016134f8565b925050602061382285828601613654565b9150509250929050565b60008060008060408587031215613846576138456147ae565b5b600085013567ffffffffffffffff811115613864576138636147a9565b5b61387087828801613563565b9450945050602085013567ffffffffffffffff811115613893576138926147a9565b5b61389f8782880161350d565b925092505092959194509250565b6000602082840312156138c3576138c26147ae565b5b60006138d1848285016135ce565b91505092915050565b6000602082840312156138f0576138ef6147ae565b5b60006138fe848285016135e3565b91505092915050565b60006020828403121561391d5761391c6147ae565b5b600082013567ffffffffffffffff81111561393b5761393a6147a9565b5b61394784828501613626565b91505092915050565b600060208284031215613966576139656147ae565b5b600061397484828501613654565b91505092915050565b61398681614517565b82525050565b61399581614529565b82525050565b60006139a6826143b4565b6139b081856143ca565b93506139c081856020860161459a565b6139c9816147b3565b840191505092915050565b60006139df826143bf565b6139e981856143e6565b93506139f981856020860161459a565b613a02816147b3565b840191505092915050565b6000613a18826143bf565b613a2281856143f7565b9350613a3281856020860161459a565b80840191505092915050565b6000613a4b6022836143e6565b9150613a56826147c4565b604082019050919050565b6000613a6e600b836143e6565b9150613a7982614813565b602082019050919050565b6000613a916014836143e6565b9150613a9c8261483c565b602082019050919050565b6000613ab46021836143e6565b9150613abf82614865565b604082019050919050565b6000613ad76026836143e6565b9150613ae2826148b4565b604082019050919050565b6000613afa602a836143e6565b9150613b0582614903565b604082019050919050565b6000613b1d601c836143e6565b9150613b2882614952565b602082019050919050565b6000613b406023836143e6565b9150613b4b8261497b565b604082019050919050565b6000613b636025836143e6565b9150613b6e826149ca565b604082019050919050565b6000613b866021836143e6565b9150613b9182614a19565b604082019050919050565b6000613ba96010836143e6565b9150613bb482614a68565b602082019050919050565b6000613bcc6039836143e6565b9150613bd782614a91565b604082019050919050565b6000613bef601a836143e6565b9150613bfa82614ae0565b602082019050919050565b6000613c12602b836143e6565b9150613c1d82614b09565b604082019050919050565b6000613c356013836143e6565b9150613c4082614b58565b602082019050919050565b6000613c586026836143e6565b9150613c6382614b81565b604082019050919050565b6000613c7b6005836143f7565b9150613c8682614bd0565b600582019050919050565b6000613c9e6008836143e6565b9150613ca982614bf9565b602082019050919050565b6000613cc16020836143e6565b9150613ccc82614c22565b602082019050919050565b6000613ce4601a836143e6565b9150613cef82614c4b565b602082019050919050565b6000613d076032836143e6565b9150613d1282614c74565b604082019050919050565b6000613d2a6022836143e6565b9150613d3582614cc3565b604082019050919050565b6000613d4d6000836143db565b9150613d5882614d12565b600082019050919050565b6000613d706033836143e6565b9150613d7b82614d15565b604082019050919050565b6000613d93601b836143e6565b9150613d9e82614d64565b602082019050919050565b6000613db66021836143e6565b9150613dc182614d8d565b604082019050919050565b6000613dd96028836143e6565b9150613de482614ddc565b604082019050919050565b6000613dfc602e836143e6565b9150613e0782614e2b565b604082019050919050565b6000613e1f601f836143e6565b9150613e2a82614e7a565b602082019050919050565b6000613e42602f836143e6565b9150613e4d82614ea3565b604082019050919050565b6000613e65602d836143e6565b9150613e7082614ef2565b604082019050919050565b613e8481614581565b82525050565b6000613e968285613a0d565b9150613ea28284613a0d565b9150613ead82613c6e565b91508190509392505050565b6000613ec482613d40565b9150819050919050565b6000602082019050613ee3600083018461397d565b92915050565b6000608082019050613efe600083018761397d565b613f0b602083018661397d565b613f186040830185613e7b565b8181036060830152613f2a818461399b565b905095945050505050565b6000602082019050613f4a600083018461398c565b92915050565b60006020820190508181036000830152613f6a81846139d4565b905092915050565b60006020820190508181036000830152613f8b81613a3e565b9050919050565b60006020820190508181036000830152613fab81613a61565b9050919050565b60006020820190508181036000830152613fcb81613a84565b9050919050565b60006020820190508181036000830152613feb81613aa7565b9050919050565b6000602082019050818103600083015261400b81613aca565b9050919050565b6000602082019050818103600083015261402b81613aed565b9050919050565b6000602082019050818103600083015261404b81613b10565b9050919050565b6000602082019050818103600083015261406b81613b33565b9050919050565b6000602082019050818103600083015261408b81613b56565b9050919050565b600060208201905081810360008301526140ab81613b79565b9050919050565b600060208201905081810360008301526140cb81613b9c565b9050919050565b600060208201905081810360008301526140eb81613bbf565b9050919050565b6000602082019050818103600083015261410b81613be2565b9050919050565b6000602082019050818103600083015261412b81613c05565b9050919050565b6000602082019050818103600083015261414b81613c28565b9050919050565b6000602082019050818103600083015261416b81613c4b565b9050919050565b6000602082019050818103600083015261418b81613c91565b9050919050565b600060208201905081810360008301526141ab81613cb4565b9050919050565b600060208201905081810360008301526141cb81613cd7565b9050919050565b600060208201905081810360008301526141eb81613cfa565b9050919050565b6000602082019050818103600083015261420b81613d1d565b9050919050565b6000602082019050818103600083015261422b81613d63565b9050919050565b6000602082019050818103600083015261424b81613d86565b9050919050565b6000602082019050818103600083015261426b81613da9565b9050919050565b6000602082019050818103600083015261428b81613dcc565b9050919050565b600060208201905081810360008301526142ab81613def565b9050919050565b600060208201905081810360008301526142cb81613e12565b9050919050565b600060208201905081810360008301526142eb81613e35565b9050919050565b6000602082019050818103600083015261430b81613e58565b9050919050565b60006020820190506143276000830184613e7b565b92915050565b6000614337614348565b905061434382826145ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561436d5761436c614766565b5b614376826147b3565b9050602081019050919050565b600067ffffffffffffffff82111561439e5761439d614766565b5b6143a7826147b3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061440d82614581565b915061441883614581565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561444d5761444c6146aa565b5b828201905092915050565b600061446382614581565b915061446e83614581565b92508261447e5761447d6146d9565b5b828204905092915050565b600061449482614581565b915061449f83614581565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d8576144d76146aa565b5b828202905092915050565b60006144ee82614581565b91506144f983614581565b92508282101561450c5761450b6146aa565b5b828203905092915050565b600061452282614561565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b857808201518184015260208101905061459d565b838111156145c7576000848401525b50505050565b600060028204905060018216806145e557607f821691505b602082108114156145f9576145f8614708565b5b50919050565b614608826147b3565b810181811067ffffffffffffffff8211171561462757614626614766565b5b80604052505050565b600061463b82614581565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466e5761466d6146aa565b5b600182019050919050565b600061468482614581565b915061468f83614581565b92508261469f5761469e6146d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614f4a81614517565b8114614f5557600080fd5b50565b614f6181614529565b8114614f6c57600080fd5b50565b614f7881614535565b8114614f8357600080fd5b50565b614f8f81614581565b8114614f9a57600080fd5b5056fea2646970667358221220f14d67e091681ea71f80dc37af02ce1916d28ad1a634c675eb28a76ccbaaf95e64736f6c63430008070033697066733a2f2f516d50456e57795138584d3957436f7a4653436d7a51713867434242576e47326762727a436f74554e585a674a7a2f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635c975abb1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107ff578063d5abeb011461083c578063dc4e66b514610867578063e985e9c514610890578063f2fde38b146108cd5761023b565b8063a0712d681461074c578063a22cb46514610768578063ad6ac81b14610791578063b88d4fde146107ad578063bde12d73146107d65761023b565b806377ad99f0116100f257806377ad99f0146106745780637c6b172d146106905780638da5cb5b146106cd57806395d89b41146106f857806396ea3a47146107235761023b565b80635c975abb1461058d5780636352211e146105b85780636c0360eb146105f557806370a0823114610620578063715018a61461065d5761023b565b806334c8fd75116101bc57806344a0d68a1161018057806344a0d68a146104a8578063485a68a3146104d15780634f6ccce7146104fc57806355f804b31461053957806356569a1d146105625761023b565b806334c8fd751461041c57806337a66d85146104475780633c89edce1461045e5780633ccfd60b1461047557806342842e0e1461047f5761023b565b806313faede61161020357806313faede61461033757806318160ddd14610362578063228025e81461038d57806323b872dd146103b65780632f745c59146103df5761023b565b806301ffc9a714610240578063022d67dd1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906138ad565b6108f6565b6040516102749190613f35565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613950565b610a40565b005b3480156102b257600080fd5b506102bb610ac6565b6040516102c89190613f50565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613950565b610b58565b6040516103059190613ece565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906137ec565b610bdd565b005b34801561034357600080fd5b5061034c610cf6565b6040516103599190614312565b60405180910390f35b34801561036e57600080fd5b50610377610cfc565b6040516103849190614312565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613950565b610d05565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906136d6565b610dd0565b005b3480156103eb57600080fd5b50610406600480360381019061040191906137ec565b610de0565b6040516104139190614312565b60405180910390f35b34801561042857600080fd5b50610431610fd2565b60405161043e9190614312565b60405180910390f35b34801561045357600080fd5b5061045c610fd8565b005b34801561046a57600080fd5b50610473611066565b005b61047d6110f4565b005b34801561048b57600080fd5b506104a660048036038101906104a191906136d6565b6111e9565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190613950565b611209565b005b3480156104dd57600080fd5b506104e661128f565b6040516104f39190614312565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190613950565b611295565b6040516105309190614312565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190613907565b6112e8565b005b34801561056e57600080fd5b5061057761137e565b6040516105849190614312565b60405180910390f35b34801561059957600080fd5b506105a2611384565b6040516105af9190613f35565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613950565b61139b565b6040516105ec9190613ece565b60405180910390f35b34801561060157600080fd5b5061060a6113b1565b6040516106179190613f50565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613669565b61143f565b6040516106549190614312565b60405180910390f35b34801561066957600080fd5b50610672611528565b005b61068e60048036038101906106899190613950565b6115b0565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613669565b6116a6565b6040516106c49190614312565b60405180910390f35b3480156106d957600080fd5b506106e26116be565b6040516106ef9190613ece565b60405180910390f35b34801561070457600080fd5b5061070d6116e8565b60405161071a9190613f50565b60405180910390f35b34801561072f57600080fd5b5061074a6004803603810190610745919061382c565b61177a565b005b61076660048036038101906107619190613950565b61195c565b005b34801561077457600080fd5b5061078f600480360381019061078a91906137ac565b611aca565b005b6107ab60048036038101906107a69190613950565b611c4b565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190613729565b611e65565b005b3480156107e257600080fd5b506107fd60048036038101906107f89190613950565b611ec1565b005b34801561080b57600080fd5b5061082660048036038101906108219190613950565b611f47565b6040516108339190613f50565b60405180910390f35b34801561084857600080fd5b50610851611fee565b60405161085e9190614312565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613950565b611ff4565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613696565b61207a565b6040516108c49190613f35565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef9190613669565b61210e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a395750610a3882612206565b5b9050919050565b610a48612270565b73ffffffffffffffffffffffffffffffffffffffff16610a666116be565b73ffffffffffffffffffffffffffffffffffffffff1614610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390614192565b60405180910390fd5b80600e8190555050565b606060018054610ad5906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b01906145cd565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b6000610b6382612278565b610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b99906142f2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be88261139b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c50906141f2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c78612270565b73ffffffffffffffffffffffffffffffffffffffff161480610ca75750610ca681610ca1612270565b61207a565b5b610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906140d2565b60405180910390fd5b610cf1838383612285565b505050565b600a5481565b60008054905090565b610d0d612270565b73ffffffffffffffffffffffffffffffffffffffff16610d2b6116be565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890614192565b60405180910390fd5b600b54811115610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd906140f2565b60405180910390fd5b80600b8190555050565b610ddb838383612337565b505050565b6000610deb8361143f565b8210610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390613f72565b60405180910390fd5b6000610e36610cfc565b905060008060005b83811015610f90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f825786841415610f79578195505050505050610fcc565b83806001019450505b508080600101915050610e3e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614292565b60405180910390fd5b92915050565b600e5481565b610fe0612270565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90614192565b60405180910390fd5b61105c612877565b6110646128c1565b565b61106e612270565b73ffffffffffffffffffffffffffffffffffffffff1661108c6116be565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990614192565b60405180910390fd5b6110ea612924565b6110f261296d565b565b6110fc612270565b73ffffffffffffffffffffffffffffffffffffffff1661111a6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790614192565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161119690613eb9565b60006040518083038185875af1925050503d80600081146111d3576040519150601f19603f3d011682016040523d82523d6000602084013e6111d8565b606091505b50509050806111e657600080fd5b50565b61120483838360405180602001604052806000815250611e65565b505050565b611211612270565b73ffffffffffffffffffffffffffffffffffffffff1661122f6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90614192565b60405180910390fd5b80600a8190555050565b600c5481565b600061129f610cfc565b82106112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614052565b60405180910390fd5b819050919050565b6112f0612270565b73ffffffffffffffffffffffffffffffffffffffff1661130e6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90614192565b60405180910390fd5b806009908051906020019061137a929190613397565b5050565b600d5481565b6000600760149054906101000a900460ff16905090565b60006113a6826129d0565b600001519050919050565b600980546113be906145cd565b80601f01602080910402602001604051908101604052809291908181526020018280546113ea906145cd565b80156114375780601f1061140c57610100808354040283529160200191611437565b820191906000526020600020905b81548152906001019060200180831161141a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790614112565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611530612270565b73ffffffffffffffffffffffffffffffffffffffff1661154e6116be565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614192565b60405180910390fd5b6115ae6000612b6a565b565b6115b8612270565b73ffffffffffffffffffffffffffffffffffffffff166115d66116be565b73ffffffffffffffffffffffffffffffffffffffff161461162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390614192565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff168260405161165290613eb9565b60006040518083038185875af1925050503d806000811461168f576040519150601f19603f3d011682016040523d82523d6000602084013e611694565b606091505b50509050806116a257600080fd5b5050565b600f6020528060005260406000206000915090505481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116f7906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611723906145cd565b80156117705780601f1061174557610100808354040283529160200191611770565b820191906000526020600020905b81548152906001019060200180831161175357829003601f168201915b5050505050905090565b611782612270565b73ffffffffffffffffffffffffffffffffffffffff166117a06116be565b73ffffffffffffffffffffffffffffffffffffffff16146117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90614192565b60405180910390fd5b81819050848490501461183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590614092565b60405180910390fd5b600080611849610cfc565b905060005b868690508110156118915786868281811061186c5761186b614737565b5b905060200201358361187e9190614402565b92508061188a90614630565b905061184e565b50600b5482826118a19190614402565b11156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990614172565b60405180910390fd5b6000915060005b8484905081101561194f5761193e85858381811061190a57611909614737565b5b905060200201602081019061191f9190613669565b88888481811061193257611931614737565b5b90506020020135612c30565b8061194890614630565b90506118e9565b5060009050505050505050565b600260085414156119a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611999906142b2565b60405180910390fd5b60026008819055506119b2612877565b60006119bc610cfc565b905060008211611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613f92565b60405180910390fd5b600e54821115611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90614232565b60405180910390fd5b600b548282611a559190614402565b1115611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d90614132565b60405180910390fd5b81600a54611aa49190614489565b341015611ab057600080fd5b611aba3383612c30565b6000905050600160088190555050565b611ad2612270565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906141b2565b60405180910390fd5b8060066000611b4d612270565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bfa612270565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c3f9190613f35565b60405180910390a35050565b60026008541415611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c88906142b2565b60405180910390fd5b6002600881905550611ca1612877565b6000611cab610cfc565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611d009190614402565b1115611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614032565b60405180910390fd5b60008311611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613f92565b60405180910390fd5b600c548383611d939190614402565b1115611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614132565b60405180910390fd5b60005b83811015611e4557600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611e2f90614630565b919050555080611e3e90614630565b9050611dd7565b50611e503384612c30565b60009150600090505050600160088190555050565b611e70848484612337565b611e7c84848484612c4e565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614212565b60405180910390fd5b50505050565b611ec9612270565b73ffffffffffffffffffffffffffffffffffffffff16611ee76116be565b73ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490614192565b60405180910390fd5b80600c8190555050565b6060611f5282612278565b611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890613fd2565b60405180910390fd5b6000611f9b612de5565b90506000815111611fbb5760405180602001604052806000815250611fe6565b80611fc584612e77565b604051602001611fd6929190613e8a565b6040516020818303038152906040525b915050919050565b600b5481565b611ffc612270565b73ffffffffffffffffffffffffffffffffffffffff1661201a6116be565b73ffffffffffffffffffffffffffffffffffffffff1614612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790614192565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612116612270565b73ffffffffffffffffffffffffffffffffffffffff166121346116be565b73ffffffffffffffffffffffffffffffffffffffff161461218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614192565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613ff2565b60405180910390fd5b61220381612b6a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612342826129d0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612369612270565b73ffffffffffffffffffffffffffffffffffffffff1614806123c5575061238e612270565b73ffffffffffffffffffffffffffffffffffffffff166123ad84610b58565b73ffffffffffffffffffffffffffffffffffffffff16145b806123e157506123e082600001516123db612270565b61207a565b5b905080612423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241a906141d2565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90614152565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614072565b60405180910390fd5b6125128585856001612fd8565b6125226000848460000151612285565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128075761276681612278565b156128065782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128708585856001612fde565b5050505050565b61287f611384565b156128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b6906140b2565b60405180910390fd5b565b6128c9612877565b6001600760146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861290d612270565b60405161291a9190613ece565b60405180910390a1565b61292c611384565b61296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290613fb2565b60405180910390fd5b565b612975612924565b6000600760146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6129b9612270565b6040516129c69190613ece565b60405180910390a1565b6129d861341d565b6129e182612278565b612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614012565b60405180910390fd5b60008290505b60008110612b29576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b1a578092505050612b65565b50808060019003915050612a26565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c906142d2565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c4a828260405180602001604052806000815250612fe4565b5050565b6000612c6f8473ffffffffffffffffffffffffffffffffffffffff16612ff6565b15612dd8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c98612270565b8786866040518563ffffffff1660e01b8152600401612cba9493929190613ee9565b602060405180830381600087803b158015612cd457600080fd5b505af1925050508015612d0557506040513d601f19601f82011682018060405250810190612d0291906138da565b60015b612d88573d8060008114612d35576040519150601f19603f3d011682016040523d82523d6000602084013e612d3a565b606091505b50600081511415612d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7790614212565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ddd565b600190505b949350505050565b606060098054612df4906145cd565b80601f0160208091040260200160405190810160405280929190818152602001828054612e20906145cd565b8015612e6d5780601f10612e4257610100808354040283529160200191612e6d565b820191906000526020600020905b815481529060010190602001808311612e5057829003601f168201915b5050505050905090565b60606000821415612ebf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fd3565b600082905060005b60008214612ef1578080612eda90614630565b915050600a82612eea9190614458565b9150612ec7565b60008167ffffffffffffffff811115612f0d57612f0c614766565b5b6040519080825280601f01601f191660200182016040528015612f3f5781602001600182028036833780820191505090505b5090505b60008514612fcc57600182612f5891906144e3565b9150600a85612f679190614679565b6030612f739190614402565b60f81b818381518110612f8957612f88614737565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fc59190614458565b9450612f43565b8093505050505b919050565b50505050565b50505050565b612ff18383836001613019565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561308f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308690614252565b60405180910390fd5b60008414156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614272565b60405180910390fd5b6130e06000868387612fd8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561337a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613365576133256000888488612c4e565b613364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335b90614212565b60405180910390fd5b5b818060010192505080806001019150506132ae565b5080600081905550506133906000868387612fde565b5050505050565b8280546133a3906145cd565b90600052602060002090601f0160209004810192826133c5576000855561340c565b82601f106133de57805160ff191683800117855561340c565b8280016001018555821561340c579182015b8281111561340b5782518255916020019190600101906133f0565b5b5090506134199190613457565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613470576000816000905550600101613458565b5090565b600061348761348284614352565b61432d565b9050828152602081018484840111156134a3576134a26147a4565b5b6134ae84828561458b565b509392505050565b60006134c96134c484614383565b61432d565b9050828152602081018484840111156134e5576134e46147a4565b5b6134f084828561458b565b509392505050565b60008135905061350781614f41565b92915050565b60008083601f8401126135235761352261479a565b5b8235905067ffffffffffffffff8111156135405761353f614795565b5b60208301915083602082028301111561355c5761355b61479f565b5b9250929050565b60008083601f8401126135795761357861479a565b5b8235905067ffffffffffffffff81111561359657613595614795565b5b6020830191508360208202830111156135b2576135b161479f565b5b9250929050565b6000813590506135c881614f58565b92915050565b6000813590506135dd81614f6f565b92915050565b6000815190506135f281614f6f565b92915050565b600082601f83011261360d5761360c61479a565b5b813561361d848260208601613474565b91505092915050565b600082601f83011261363b5761363a61479a565b5b813561364b8482602086016134b6565b91505092915050565b60008135905061366381614f86565b92915050565b60006020828403121561367f5761367e6147ae565b5b600061368d848285016134f8565b91505092915050565b600080604083850312156136ad576136ac6147ae565b5b60006136bb858286016134f8565b92505060206136cc858286016134f8565b9150509250929050565b6000806000606084860312156136ef576136ee6147ae565b5b60006136fd868287016134f8565b935050602061370e868287016134f8565b925050604061371f86828701613654565b9150509250925092565b60008060008060808587031215613743576137426147ae565b5b6000613751878288016134f8565b9450506020613762878288016134f8565b935050604061377387828801613654565b925050606085013567ffffffffffffffff811115613794576137936147a9565b5b6137a0878288016135f8565b91505092959194509250565b600080604083850312156137c3576137c26147ae565b5b60006137d1858286016134f8565b92505060206137e2858286016135b9565b9150509250929050565b60008060408385031215613803576138026147ae565b5b6000613811858286016134f8565b925050602061382285828601613654565b9150509250929050565b60008060008060408587031215613846576138456147ae565b5b600085013567ffffffffffffffff811115613864576138636147a9565b5b61387087828801613563565b9450945050602085013567ffffffffffffffff811115613893576138926147a9565b5b61389f8782880161350d565b925092505092959194509250565b6000602082840312156138c3576138c26147ae565b5b60006138d1848285016135ce565b91505092915050565b6000602082840312156138f0576138ef6147ae565b5b60006138fe848285016135e3565b91505092915050565b60006020828403121561391d5761391c6147ae565b5b600082013567ffffffffffffffff81111561393b5761393a6147a9565b5b61394784828501613626565b91505092915050565b600060208284031215613966576139656147ae565b5b600061397484828501613654565b91505092915050565b61398681614517565b82525050565b61399581614529565b82525050565b60006139a6826143b4565b6139b081856143ca565b93506139c081856020860161459a565b6139c9816147b3565b840191505092915050565b60006139df826143bf565b6139e981856143e6565b93506139f981856020860161459a565b613a02816147b3565b840191505092915050565b6000613a18826143bf565b613a2281856143f7565b9350613a3281856020860161459a565b80840191505092915050565b6000613a4b6022836143e6565b9150613a56826147c4565b604082019050919050565b6000613a6e600b836143e6565b9150613a7982614813565b602082019050919050565b6000613a916014836143e6565b9150613a9c8261483c565b602082019050919050565b6000613ab46021836143e6565b9150613abf82614865565b604082019050919050565b6000613ad76026836143e6565b9150613ae2826148b4565b604082019050919050565b6000613afa602a836143e6565b9150613b0582614903565b604082019050919050565b6000613b1d601c836143e6565b9150613b2882614952565b602082019050919050565b6000613b406023836143e6565b9150613b4b8261497b565b604082019050919050565b6000613b636025836143e6565b9150613b6e826149ca565b604082019050919050565b6000613b866021836143e6565b9150613b9182614a19565b604082019050919050565b6000613ba96010836143e6565b9150613bb482614a68565b602082019050919050565b6000613bcc6039836143e6565b9150613bd782614a91565b604082019050919050565b6000613bef601a836143e6565b9150613bfa82614ae0565b602082019050919050565b6000613c12602b836143e6565b9150613c1d82614b09565b604082019050919050565b6000613c356013836143e6565b9150613c4082614b58565b602082019050919050565b6000613c586026836143e6565b9150613c6382614b81565b604082019050919050565b6000613c7b6005836143f7565b9150613c8682614bd0565b600582019050919050565b6000613c9e6008836143e6565b9150613ca982614bf9565b602082019050919050565b6000613cc16020836143e6565b9150613ccc82614c22565b602082019050919050565b6000613ce4601a836143e6565b9150613cef82614c4b565b602082019050919050565b6000613d076032836143e6565b9150613d1282614c74565b604082019050919050565b6000613d2a6022836143e6565b9150613d3582614cc3565b604082019050919050565b6000613d4d6000836143db565b9150613d5882614d12565b600082019050919050565b6000613d706033836143e6565b9150613d7b82614d15565b604082019050919050565b6000613d93601b836143e6565b9150613d9e82614d64565b602082019050919050565b6000613db66021836143e6565b9150613dc182614d8d565b604082019050919050565b6000613dd96028836143e6565b9150613de482614ddc565b604082019050919050565b6000613dfc602e836143e6565b9150613e0782614e2b565b604082019050919050565b6000613e1f601f836143e6565b9150613e2a82614e7a565b602082019050919050565b6000613e42602f836143e6565b9150613e4d82614ea3565b604082019050919050565b6000613e65602d836143e6565b9150613e7082614ef2565b604082019050919050565b613e8481614581565b82525050565b6000613e968285613a0d565b9150613ea28284613a0d565b9150613ead82613c6e565b91508190509392505050565b6000613ec482613d40565b9150819050919050565b6000602082019050613ee3600083018461397d565b92915050565b6000608082019050613efe600083018761397d565b613f0b602083018661397d565b613f186040830185613e7b565b8181036060830152613f2a818461399b565b905095945050505050565b6000602082019050613f4a600083018461398c565b92915050565b60006020820190508181036000830152613f6a81846139d4565b905092915050565b60006020820190508181036000830152613f8b81613a3e565b9050919050565b60006020820190508181036000830152613fab81613a61565b9050919050565b60006020820190508181036000830152613fcb81613a84565b9050919050565b60006020820190508181036000830152613feb81613aa7565b9050919050565b6000602082019050818103600083015261400b81613aca565b9050919050565b6000602082019050818103600083015261402b81613aed565b9050919050565b6000602082019050818103600083015261404b81613b10565b9050919050565b6000602082019050818103600083015261406b81613b33565b9050919050565b6000602082019050818103600083015261408b81613b56565b9050919050565b600060208201905081810360008301526140ab81613b79565b9050919050565b600060208201905081810360008301526140cb81613b9c565b9050919050565b600060208201905081810360008301526140eb81613bbf565b9050919050565b6000602082019050818103600083015261410b81613be2565b9050919050565b6000602082019050818103600083015261412b81613c05565b9050919050565b6000602082019050818103600083015261414b81613c28565b9050919050565b6000602082019050818103600083015261416b81613c4b565b9050919050565b6000602082019050818103600083015261418b81613c91565b9050919050565b600060208201905081810360008301526141ab81613cb4565b9050919050565b600060208201905081810360008301526141cb81613cd7565b9050919050565b600060208201905081810360008301526141eb81613cfa565b9050919050565b6000602082019050818103600083015261420b81613d1d565b9050919050565b6000602082019050818103600083015261422b81613d63565b9050919050565b6000602082019050818103600083015261424b81613d86565b9050919050565b6000602082019050818103600083015261426b81613da9565b9050919050565b6000602082019050818103600083015261428b81613dcc565b9050919050565b600060208201905081810360008301526142ab81613def565b9050919050565b600060208201905081810360008301526142cb81613e12565b9050919050565b600060208201905081810360008301526142eb81613e35565b9050919050565b6000602082019050818103600083015261430b81613e58565b9050919050565b60006020820190506143276000830184613e7b565b92915050565b6000614337614348565b905061434382826145ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561436d5761436c614766565b5b614376826147b3565b9050602081019050919050565b600067ffffffffffffffff82111561439e5761439d614766565b5b6143a7826147b3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061440d82614581565b915061441883614581565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561444d5761444c6146aa565b5b828201905092915050565b600061446382614581565b915061446e83614581565b92508261447e5761447d6146d9565b5b828204905092915050565b600061449482614581565b915061449f83614581565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d8576144d76146aa565b5b828202905092915050565b60006144ee82614581565b91506144f983614581565b92508282101561450c5761450b6146aa565b5b828203905092915050565b600061452282614561565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b857808201518184015260208101905061459d565b838111156145c7576000848401525b50505050565b600060028204905060018216806145e557607f821691505b602082108114156145f9576145f8614708565b5b50919050565b614608826147b3565b810181811067ffffffffffffffff8211171561462757614626614766565b5b80604052505050565b600061463b82614581565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561466e5761466d6146aa565b5b600182019050919050565b600061468482614581565b915061468f83614581565b92508261469f5761469e6146d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e742030000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f43616e6e6f7420696e637265617365206d617820737570706c79000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e7420676f206f76657220737570706c7900000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614f4a81614517565b8114614f5557600080fd5b50565b614f6181614529565b8114614f6c57600080fd5b50565b614f7881614535565b8114614f8357600080fd5b50565b614f8f81614581565b8114614f9a57600080fd5b5056fea2646970667358221220f14d67e091681ea71f80dc37af02ce1916d28ad1a634c675eb28a76ccbaaf95e64736f6c63430008070033

Deployed Bytecode Sourcemap

45545:4233:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24907:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48976:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28355:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27876:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45682:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23164:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48544:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29231:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23828:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45844:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49608:79;;;;;;;;;;;;;:::i;:::-;;49695:80;;;;;;;;;;;;;:::i;:::-;;49230:192;;;:::i;:::-;;29464:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48450:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45760:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23341:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48864:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45796:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39600:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26602:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45654:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25343:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42213:94;;;;;;;;;;;;;:::i;:::-;;49430:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45895:59;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41562:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26962:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47318:667;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46864:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28641:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46231:623;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29712:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48733:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47993:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45722:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49106:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29000:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42462:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24907:372;25009:4;25061:25;25046:40;;;:11;:40;;;;:105;;;;25118:33;25103:48;;;:11;:48;;;;25046:105;:172;;;;25183:35;25168:50;;;:11;:50;;;;25046:172;:225;;;;25235:36;25259:11;25235:23;:36::i;:::-;25046:225;25026:245;;24907:372;;;:::o;48976:122::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49083:7:::1;49057:23;:33;;;;48976:122:::0;:::o;26793:100::-;26847:13;26880:5;26873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26793:100;:::o;28355:214::-;28423:7;28451:16;28459:7;28451;:16::i;:::-;28443:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28537:15;:24;28553:7;28537:24;;;;;;;;;;;;;;;;;;;;;28530:31;;28355:214;;;:::o;27876:413::-;27949:13;27965:24;27981:7;27965:15;:24::i;:::-;27949:40;;28014:5;28008:11;;:2;:11;;;;28000:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28109:5;28093:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28118:37;28135:5;28142:12;:10;:12::i;:::-;28118:16;:37::i;:::-;28093:62;28071:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28253:28;28262:2;28266:7;28275:5;28253:8;:28::i;:::-;27938:351;27876:413;;:::o;45682:33::-;;;;:::o;23164:100::-;23217:7;23244:12;;23237:19;;23164:100;:::o;48544:182::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48642:9:::1;;48625:13;:26;;48617:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48705:13;48693:9;:25;;;;48544:182:::0;:::o;29231:162::-;29357:28;29367:4;29373:2;29377:7;29357:9;:28::i;:::-;29231:162;;;:::o;23828:1007::-;23917:7;23953:16;23963:5;23953:9;:16::i;:::-;23945:5;:24;23937:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24019:22;24044:13;:11;:13::i;:::-;24019:38;;24068:19;24098:25;24287:9;24282:466;24302:14;24298:1;:18;24282:466;;;24342:31;24376:11;:14;24388:1;24376:14;;;;;;;;;;;24342:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24439:1;24413:28;;:9;:14;;;:28;;;24409:111;;24486:9;:14;;;24466:34;;24409:111;24563:5;24542:26;;:17;:26;;;24538:195;;;24612:5;24597:11;:20;24593:85;;;24653:1;24646:8;;;;;;;;;24593:85;24700:13;;;;;;;24538:195;24323:425;24318:3;;;;;;;24282:466;;;;24771:56;;;;;;;;;;:::i;:::-;;;;;;;;23828:1007;;;;;:::o;45844:42::-;;;;:::o;49608:79::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39205:19:::1;:17;:19::i;:::-;49671:8:::2;:6;:8::i;:::-;49608:79::o:0;49695:80::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39464:16:::1;:14;:16::i;:::-;49757:10:::2;:8;:10::i;:::-;49695:80::o:0;49230:192::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49287:12:::1;49313:10;49305:24;;49351:21;49305:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49286:101;;;49406:7;49398:16;;;::::0;::::1;;49275:147;49230:192::o:0;29464:177::-;29594:39;29611:4;29617:2;29621:7;29594:39;;;;;;;;;;;;:16;:39::i;:::-;29464:177;;;:::o;48450:86::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48520:8:::1;48513:4;:15;;;;48450:86:::0;:::o;45760:29::-;;;;:::o;23341:187::-;23408:7;23444:13;:11;:13::i;:::-;23436:5;:21;23428:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23515:5;23508:12;;23341:187;;;:::o;48864:104::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48949:11:::1;48939:7;:21;;;;;;;;;;;;:::i;:::-;;48864:104:::0;:::o;45796:41::-;;;;:::o;39600:86::-;39647:4;39671:7;;;;;;;;;;;39664:14;;39600:86;:::o;26602:124::-;26666:7;26693:20;26705:7;26693:11;:20::i;:::-;:25;;;26686:32;;26602:124;;;:::o;45654:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25343:221::-;25407:7;25452:1;25435:19;;:5;:19;;;;25427:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25528:12;:19;25541:5;25528:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25520:36;;25513:43;;25343:221;;;:::o;42213:94::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42278:21:::1;42296:1;42278:9;:21::i;:::-;42213:94::o:0;49430:172::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49505:12:::1;49531:10;49523:24;;49555:7;49523:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49504:63;;;49586:7;49578:16;;;::::0;::::1;;49493:109;49430:172:::0;:::o;45895:59::-;;;;;;;;;;;;;;;;;:::o;41562:87::-;41608:7;41635:6;;;;;;;;;;;41628:13;;41562:87;:::o;26962:104::-;27018:13;27051:7;27044:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26962:104;:::o;47318:667::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47485:9:::1;;:16;;47466:8;;:15;;:35;47444:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;47573:21;47609:9:::0;47621:13:::1;:11;:13::i;:::-;47609:25;;47650:9;47645:101;47669:8;;:15;;47665:1;:19;47645:101;;;47723:8;;47732:1;47723:11;;;;;;;:::i;:::-;;;;;;;;47706:28;;;;;:::i;:::-;;;47686:3;;;;:::i;:::-;;;47645:101;;;;47785:9;;47768:13;47764:1;:17;;;;:::i;:::-;:30;;47756:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;47818:20;;;47854:9;47849:110;47873:9;;:16;;47869:1;:20;47849:110;;;47911:36;47921:9;;47931:1;47921:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47935:8;;47944:1;47935:11;;;;;;;:::i;:::-;;;;;;;;47911:9;:36::i;:::-;47891:3;;;;:::i;:::-;;;47849:110;;;;47969:8;;;47433:552;;47318:667:::0;;;;:::o;46864:446::-;44557:1;45153:7;;:19;;45145:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44557:1;45286:7;:18;;;;39205:19:::1;:17;:19::i;:::-;46951:9:::2;46963:13;:11;:13::i;:::-;46951:25;;47009:1;46995:11;:15;46987:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47060:23;;47045:11;:38;;47037:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;47154:9;;47139:11;47135:1;:15;;;;:::i;:::-;:28;;47127:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47226:11;47219:4;;:18;;;;:::i;:::-;47206:9;:31;;47198:40;;;::::0;::::2;;47249:34;47259:10;47271:11;47249:9;:34::i;:::-;47294:8;;;46940:370;44513:1:::0;45465:7;:22;;;;46864:446;:::o;28641:288::-;28748:12;:10;:12::i;:::-;28736:24;;:8;:24;;;;28728:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28849:8;28804:18;:32;28823:12;:10;:12::i;:::-;28804:32;;;;;;;;;;;;;;;:42;28837:8;28804:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28902:8;28873:48;;28888:12;:10;:12::i;:::-;28873:48;;;28912:8;28873:48;;;;;;:::i;:::-;;;;;;;;28641:288;;:::o;46231:623::-;44557:1;45153:7;;:19;;45145:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44557:1;45286:7;:18;;;;39205:19:::1;:17;:19::i;:::-;46316:9:::2;46328:13;:11;:13::i;:::-;46316:25;;46352:30;46385:24;:36;46410:10;46385:36;;;;;;;;;;;;;;;;46352:69;;46480:22;;46465:11;46440:22;:36;;;;:::i;:::-;:62;;46432:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46562:1;46548:11;:15;46540:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;46612:7;;46597:11;46593:1;:15;;;;:::i;:::-;:26;;46585:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46654:9;46649:103;46673:11;46669:1;:15;46649:103;;;46706:24;:36;46731:10;46706:36;;;;;;;;;;;;;;;;:38;;;;;;;;;:::i;:::-;;;;;;46686:3;;;;:::i;:::-;;;46649:103;;;;46762:34;46772:10;46784:11;46762:9;:34::i;:::-;46801:8;;;46820:29;;;46311:543;;44513:1:::0;45465:7;:22;;;;46231:623;:::o;29712:355::-;29871:28;29881:4;29887:2;29891:7;29871:9;:28::i;:::-;29932:48;29955:4;29961:2;29965:7;29974:5;29932:22;:48::i;:::-;29910:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;29712:355;;;;:::o;48733:123::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48831:17:::1;48821:7;:27;;;;48733:123:::0;:::o;47993:445::-;48111:13;48150:16;48158:7;48150;:16::i;:::-;48142:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48215:28;48246:10;:8;:10::i;:::-;48215:41;;48318:1;48293:14;48287:28;:32;:143;;;;;;;;;;;;;;;;;48363:14;48379:18;:7;:16;:18::i;:::-;48346:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48287:143;48267:163;;;47993:445;;;:::o;45722:31::-;;;;:::o;49106:118::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49209:7:::1;49184:22;:32;;;;49106:118:::0;:::o;29000:164::-;29097:4;29121:18;:25;29140:5;29121:25;;;;;;;;;;;;;;;:35;29147:8;29121:35;;;;;;;;;;;;;;;;;;;;;;;;;29114:42;;29000:164;;;;:::o;42462:229::-;41793:12;:10;:12::i;:::-;41782:23;;:7;:5;:7::i;:::-;:23;;;41774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42585:1:::1;42565:22;;:8;:22;;;;42543:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;42664:19;42674:8;42664:9;:19::i;:::-;42462:229:::0;:::o;14427:157::-;14512:4;14551:25;14536:40;;;:11;:40;;;;14529:47;;14427:157;;;:::o;2874:98::-;2927:7;2954:10;2947:17;;2874:98;:::o;30322:111::-;30379:4;30413:12;;30403:7;:22;30396:29;;30322:111;;;:::o;35242:196::-;35384:2;35357:15;:24;35373:7;35357:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35422:7;35418:2;35402:28;;35411:5;35402:28;;;;;;;;;;;;35242:196;;;:::o;33122:2002::-;33237:35;33275:20;33287:7;33275:11;:20::i;:::-;33237:58;;33308:22;33350:13;:18;;;33334:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33409:12;:10;:12::i;:::-;33385:36;;:20;33397:7;33385:11;:20::i;:::-;:36;;;33334:87;:154;;;;33438:50;33455:13;:18;;;33475:12;:10;:12::i;:::-;33438:16;:50::i;:::-;33334:154;33308:181;;33510:17;33502:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;33625:4;33603:26;;:13;:18;;;:26;;;33595:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33705:1;33691:16;;:2;:16;;;;33683:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33762:43;33784:4;33790:2;33794:7;33803:1;33762:21;:43::i;:::-;33870:49;33887:1;33891:7;33900:13;:18;;;33870:8;:49::i;:::-;34245:1;34215:12;:18;34228:4;34215:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34289:1;34261:12;:16;34274:2;34261:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34335:2;34307:11;:20;34319:7;34307:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34397:15;34352:11;:20;34364:7;34352:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34665:19;34697:1;34687:7;:11;34665:33;;34758:1;34717:43;;:11;:24;34729:11;34717:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34713:295;;;34785:20;34793:11;34785:7;:20::i;:::-;34781:212;;;34862:13;:18;;;34830:11;:24;34842:11;34830:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34945:13;:28;;;34903:11;:24;34915:11;34903:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34781:212;34713:295;34190:829;35055:7;35051:2;35036:27;;35045:4;35036:27;;;;;;;;;;;;35074:42;35095:4;35101:2;35105:7;35114:1;35074:20;:42::i;:::-;33226:1898;;33122:2002;;;:::o;39759:108::-;39830:8;:6;:8::i;:::-;39829:9;39821:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;39759:108::o;40196:118::-;39205:19;:17;:19::i;:::-;40266:4:::1;40256:7;;:14;;;;;;;;;;;;;;;;;;40286:20;40293:12;:10;:12::i;:::-;40286:20;;;;;;:::i;:::-;;;;;;;;40196:118::o:0;39944:108::-;40011:8;:6;:8::i;:::-;40003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;39944:108::o;40455:120::-;39464:16;:14;:16::i;:::-;40524:5:::1;40514:7;;:15;;;;;;;;;;;;;;;;;;40545:22;40554:12;:10;:12::i;:::-;40545:22;;;;;;:::i;:::-;;;;;;;;40455:120::o:0;26003:537::-;26064:21;;:::i;:::-;26106:16;26114:7;26106;:16::i;:::-;26098:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26212:12;26227:7;26212:22;;26207:245;26244:1;26236:4;:9;26207:245;;26274:31;26308:11;:17;26320:4;26308:17;;;;;;;;;;;26274:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26374:1;26348:28;;:9;:14;;;:28;;;26344:93;;26408:9;26401:16;;;;;;26344:93;26255:197;26247:6;;;;;;;;26207:245;;;;26475:57;;;;;;;;;;:::i;:::-;;;;;;;;26003:537;;;;:::o;42699:173::-;42755:16;42774:6;;;;;;;;;;;42755:25;;42800:8;42791:6;;:17;;;;;;;;;;;;;;;;;;42855:8;42824:40;;42845:8;42824:40;;;;;;;;;;;;42744:128;42699:173;:::o;30441:104::-;30510:27;30520:2;30524:8;30510:27;;;;;;;;;;;;:9;:27::i;:::-;30441:104;;:::o;36003:804::-;36158:4;36179:15;:2;:13;;;:15::i;:::-;36175:625;;;36231:2;36215:36;;;36252:12;:10;:12::i;:::-;36266:4;36272:7;36281:5;36215:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36211:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36478:1;36461:6;:13;:18;36457:273;;;36504:61;;;;;;;;;;:::i;:::-;;;;;;;;36457:273;36680:6;36674:13;36665:6;36661:2;36657:15;36650:38;36211:534;36348:45;;;36338:55;;;:6;:55;;;;36331:62;;;;;36175:625;36784:4;36777:11;;36003:804;;;;;;;:::o;46115:108::-;46175:13;46208:7;46201:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46115:108;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;37295:159::-;;;;;:::o;37866:158::-;;;;;:::o;30908:163::-;31031:32;31037:2;31041:8;31051:5;31058:4;31031:5;:32::i;:::-;30908:163;;;:::o;4321:326::-;4381:4;4638:1;4616:7;:19;;;:23;4609:30;;4321:326;;;:::o;31330:1538::-;31469:20;31492:12;;31469:35;;31537:1;31523:16;;:2;:16;;;;31515:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31608:1;31596:8;:13;;31588:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31667:61;31697:1;31701:2;31705:12;31719:8;31667:21;:61::i;:::-;32042:8;32006:12;:16;32019:2;32006:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32107:8;32066:12;:16;32079:2;32066:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32166:2;32133:11;:25;32145:12;32133:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32233:15;32183:11;:25;32195:12;32183:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32266:20;32289:12;32266:35;;32323:9;32318:415;32338:8;32334:1;:12;32318:415;;;32402:12;32398:2;32377:38;;32394:1;32377:38;;;;;;;;;;;;32438:4;32434:249;;;32501:59;32532:1;32536:2;32540:12;32554:5;32501:22;:59::i;:::-;32467:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;32434:249;32703:14;;;;;;;32348:3;;;;;;;32318:415;;;;32764:12;32749;:27;;;;31981:807;32800:60;32829:1;32833:2;32837:12;32851:8;32800:20;:60::i;:::-;31458:1410;31330: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;10638:366::-;10780:3;10801:67;10865:2;10860:3;10801:67;:::i;:::-;10794:74;;10877:93;10966:3;10877:93;:::i;:::-;10995:2;10990:3;10986:12;10979:19;;10638:366;;;:::o;11010:::-;11152:3;11173:67;11237:2;11232:3;11173:67;:::i;:::-;11166:74;;11249:93;11338:3;11249:93;:::i;:::-;11367:2;11362:3;11358:12;11351:19;;11010:366;;;:::o;11382:::-;11524:3;11545:67;11609:2;11604:3;11545:67;:::i;:::-;11538:74;;11621:93;11710:3;11621:93;:::i;:::-;11739:2;11734:3;11730:12;11723:19;;11382:366;;;:::o;11754:::-;11896:3;11917:67;11981:2;11976:3;11917:67;:::i;:::-;11910:74;;11993:93;12082:3;11993:93;:::i;:::-;12111:2;12106:3;12102:12;12095:19;;11754:366;;;:::o;12126:::-;12268:3;12289:67;12353:2;12348:3;12289:67;:::i;:::-;12282:74;;12365:93;12454:3;12365:93;:::i;:::-;12483:2;12478:3;12474:12;12467:19;;12126:366;;;:::o;12498:::-;12640:3;12661:67;12725:2;12720:3;12661:67;:::i;:::-;12654:74;;12737:93;12826:3;12737:93;:::i;:::-;12855:2;12850:3;12846:12;12839:19;;12498:366;;;:::o;12870:::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:::-;13384:3;13405:67;13469:2;13464:3;13405:67;:::i;:::-;13398:74;;13481:93;13570:3;13481:93;:::i;:::-;13599:2;13594:3;13590:12;13583:19;;13242:366;;;:::o;13614:::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:::-;14128:3;14149:67;14213:2;14208:3;14149:67;:::i;:::-;14142:74;;14225:93;14314:3;14225:93;:::i;:::-;14343:2;14338:3;14334:12;14327:19;;13986:366;;;:::o;14358:::-;14500:3;14521:67;14585:2;14580:3;14521:67;:::i;:::-;14514:74;;14597:93;14686:3;14597:93;:::i;:::-;14715:2;14710:3;14706:12;14699:19;;14358:366;;;:::o;14730:::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:::-;15244:3;15265:67;15329:2;15324:3;15265:67;:::i;:::-;15258:74;;15341:93;15430:3;15341:93;:::i;:::-;15459:2;15454:3;15450:12;15443:19;;15102:366;;;:::o;15474:::-;15616:3;15637:67;15701:2;15696:3;15637:67;:::i;:::-;15630:74;;15713:93;15802:3;15713:93;:::i;:::-;15831:2;15826:3;15822:12;15815:19;;15474:366;;;:::o;15846:::-;15988:3;16009:67;16073:2;16068:3;16009:67;:::i;:::-;16002:74;;16085:93;16174:3;16085:93;:::i;:::-;16203:2;16198:3;16194:12;16187:19;;15846:366;;;:::o;16218:::-;16360:3;16381:67;16445:2;16440:3;16381:67;:::i;:::-;16374:74;;16457:93;16546:3;16457:93;:::i;:::-;16575:2;16570:3;16566:12;16559:19;;16218:366;;;:::o;16590:400::-;16750:3;16771:84;16853:1;16848:3;16771:84;:::i;:::-;16764:91;;16864:93;16953:3;16864:93;:::i;:::-;16982:1;16977:3;16973:11;16966:18;;16590:400;;;:::o;16996:365::-;17138:3;17159:66;17223:1;17218:3;17159:66;:::i;:::-;17152:73;;17234:93;17323:3;17234:93;:::i;:::-;17352:2;17347:3;17343:12;17336:19;;16996:365;;;:::o;17367:366::-;17509:3;17530:67;17594:2;17589:3;17530:67;:::i;:::-;17523:74;;17606:93;17695:3;17606:93;:::i;:::-;17724:2;17719:3;17715:12;17708:19;;17367:366;;;:::o;17739:::-;17881:3;17902:67;17966:2;17961:3;17902:67;:::i;:::-;17895:74;;17978:93;18067:3;17978:93;:::i;:::-;18096:2;18091:3;18087:12;18080:19;;17739:366;;;:::o;18111:::-;18253:3;18274:67;18338:2;18333:3;18274:67;:::i;:::-;18267:74;;18350:93;18439:3;18350:93;:::i;:::-;18468:2;18463:3;18459:12;18452:19;;18111:366;;;:::o;18483:::-;18625:3;18646:67;18710:2;18705:3;18646:67;:::i;:::-;18639:74;;18722:93;18811:3;18722:93;:::i;:::-;18840:2;18835:3;18831:12;18824:19;;18483:366;;;:::o;18855:398::-;19014:3;19035:83;19116:1;19111:3;19035:83;:::i;:::-;19028:90;;19127:93;19216:3;19127:93;:::i;:::-;19245:1;19240:3;19236:11;19229:18;;18855:398;;;:::o;19259:366::-;19401:3;19422:67;19486:2;19481:3;19422:67;:::i;:::-;19415:74;;19498:93;19587:3;19498:93;:::i;:::-;19616:2;19611:3;19607:12;19600:19;;19259:366;;;:::o;19631:::-;19773:3;19794:67;19858:2;19853:3;19794:67;:::i;:::-;19787:74;;19870:93;19959:3;19870:93;:::i;:::-;19988:2;19983:3;19979:12;19972:19;;19631:366;;;:::o;20003:::-;20145:3;20166:67;20230:2;20225:3;20166:67;:::i;:::-;20159:74;;20242:93;20331:3;20242:93;:::i;:::-;20360:2;20355:3;20351:12;20344:19;;20003:366;;;:::o;20375:::-;20517:3;20538:67;20602:2;20597:3;20538:67;:::i;:::-;20531:74;;20614:93;20703:3;20614:93;:::i;:::-;20732:2;20727:3;20723:12;20716:19;;20375:366;;;:::o;20747:::-;20889:3;20910:67;20974:2;20969:3;20910:67;:::i;:::-;20903:74;;20986:93;21075:3;20986:93;:::i;:::-;21104:2;21099:3;21095:12;21088:19;;20747:366;;;:::o;21119:::-;21261:3;21282:67;21346:2;21341:3;21282:67;:::i;:::-;21275:74;;21358:93;21447:3;21358:93;:::i;:::-;21476:2;21471:3;21467:12;21460:19;;21119:366;;;:::o;21491:::-;21633:3;21654:67;21718:2;21713:3;21654:67;:::i;:::-;21647:74;;21730:93;21819:3;21730:93;:::i;:::-;21848:2;21843:3;21839:12;21832:19;;21491:366;;;:::o;21863:::-;22005:3;22026:67;22090:2;22085:3;22026:67;:::i;:::-;22019:74;;22102:93;22191:3;22102:93;:::i;:::-;22220:2;22215:3;22211:12;22204:19;;21863:366;;;:::o;22235:118::-;22322:24;22340:5;22322:24;:::i;:::-;22317:3;22310:37;22235:118;;:::o;22359:701::-;22640:3;22662:95;22753:3;22744:6;22662:95;:::i;:::-;22655:102;;22774:95;22865:3;22856:6;22774:95;:::i;:::-;22767:102;;22886:148;23030:3;22886:148;:::i;:::-;22879:155;;23051:3;23044:10;;22359:701;;;;;:::o;23066:379::-;23250:3;23272:147;23415:3;23272:147;:::i;:::-;23265:154;;23436:3;23429:10;;23066:379;;;:::o;23451:222::-;23544:4;23582:2;23571:9;23567:18;23559:26;;23595:71;23663:1;23652:9;23648:17;23639:6;23595:71;:::i;:::-;23451:222;;;;:::o;23679:640::-;23874:4;23912:3;23901:9;23897:19;23889:27;;23926:71;23994:1;23983:9;23979:17;23970:6;23926:71;:::i;:::-;24007:72;24075:2;24064:9;24060:18;24051:6;24007:72;:::i;:::-;24089;24157:2;24146:9;24142:18;24133:6;24089:72;:::i;:::-;24208:9;24202:4;24198:20;24193:2;24182:9;24178:18;24171:48;24236:76;24307:4;24298:6;24236:76;:::i;:::-;24228:84;;23679:640;;;;;;;:::o;24325:210::-;24412:4;24450:2;24439:9;24435:18;24427:26;;24463:65;24525:1;24514:9;24510:17;24501:6;24463:65;:::i;:::-;24325:210;;;;:::o;24541:313::-;24654:4;24692:2;24681:9;24677:18;24669:26;;24741:9;24735:4;24731:20;24727:1;24716:9;24712:17;24705:47;24769:78;24842:4;24833:6;24769:78;:::i;:::-;24761:86;;24541:313;;;;:::o;24860:419::-;25026:4;25064:2;25053:9;25049:18;25041:26;;25113:9;25107:4;25103:20;25099:1;25088:9;25084:17;25077:47;25141:131;25267:4;25141:131;:::i;:::-;25133:139;;24860:419;;;:::o;25285:::-;25451:4;25489:2;25478:9;25474:18;25466:26;;25538:9;25532:4;25528:20;25524:1;25513:9;25509:17;25502:47;25566:131;25692:4;25566:131;:::i;:::-;25558:139;;25285:419;;;:::o;25710:::-;25876:4;25914:2;25903:9;25899:18;25891:26;;25963:9;25957:4;25953:20;25949:1;25938:9;25934:17;25927:47;25991:131;26117:4;25991:131;:::i;:::-;25983:139;;25710:419;;;:::o;26135:::-;26301:4;26339:2;26328:9;26324:18;26316:26;;26388:9;26382:4;26378:20;26374:1;26363:9;26359:17;26352:47;26416:131;26542:4;26416:131;:::i;:::-;26408:139;;26135:419;;;:::o;26560:::-;26726:4;26764:2;26753:9;26749:18;26741:26;;26813:9;26807:4;26803:20;26799:1;26788:9;26784:17;26777:47;26841:131;26967:4;26841:131;:::i;:::-;26833:139;;26560:419;;;:::o;26985:::-;27151:4;27189:2;27178:9;27174:18;27166:26;;27238:9;27232:4;27228:20;27224:1;27213:9;27209:17;27202:47;27266:131;27392:4;27266:131;:::i;:::-;27258:139;;26985:419;;;:::o;27410:::-;27576:4;27614:2;27603:9;27599:18;27591:26;;27663:9;27657:4;27653:20;27649:1;27638:9;27634:17;27627:47;27691:131;27817:4;27691:131;:::i;:::-;27683:139;;27410:419;;;:::o;27835:::-;28001:4;28039:2;28028:9;28024:18;28016:26;;28088:9;28082:4;28078:20;28074:1;28063:9;28059:17;28052:47;28116:131;28242:4;28116:131;:::i;:::-;28108:139;;27835:419;;;:::o;28260:::-;28426:4;28464:2;28453:9;28449:18;28441:26;;28513:9;28507:4;28503:20;28499:1;28488:9;28484:17;28477:47;28541:131;28667:4;28541:131;:::i;:::-;28533:139;;28260:419;;;:::o;28685:::-;28851:4;28889:2;28878:9;28874:18;28866:26;;28938:9;28932:4;28928:20;28924:1;28913:9;28909:17;28902:47;28966:131;29092:4;28966:131;:::i;:::-;28958:139;;28685:419;;;:::o;29110:::-;29276:4;29314:2;29303:9;29299:18;29291:26;;29363:9;29357:4;29353:20;29349:1;29338:9;29334:17;29327:47;29391:131;29517:4;29391:131;:::i;:::-;29383:139;;29110:419;;;:::o;29535:::-;29701:4;29739:2;29728:9;29724:18;29716:26;;29788:9;29782:4;29778:20;29774:1;29763:9;29759:17;29752:47;29816:131;29942:4;29816:131;:::i;:::-;29808:139;;29535:419;;;:::o;29960:::-;30126:4;30164:2;30153:9;30149:18;30141:26;;30213:9;30207:4;30203:20;30199:1;30188:9;30184:17;30177:47;30241:131;30367:4;30241:131;:::i;:::-;30233:139;;29960:419;;;:::o;30385:::-;30551:4;30589:2;30578:9;30574:18;30566:26;;30638:9;30632:4;30628:20;30624:1;30613:9;30609:17;30602:47;30666:131;30792:4;30666:131;:::i;:::-;30658:139;;30385:419;;;:::o;30810:::-;30976:4;31014:2;31003:9;30999:18;30991:26;;31063:9;31057:4;31053:20;31049:1;31038:9;31034:17;31027:47;31091:131;31217:4;31091:131;:::i;:::-;31083:139;;30810:419;;;:::o;31235:::-;31401:4;31439:2;31428:9;31424:18;31416:26;;31488:9;31482:4;31478:20;31474:1;31463:9;31459:17;31452:47;31516:131;31642:4;31516:131;:::i;:::-;31508:139;;31235:419;;;:::o;31660:::-;31826:4;31864:2;31853:9;31849:18;31841:26;;31913:9;31907:4;31903:20;31899:1;31888:9;31884:17;31877:47;31941:131;32067:4;31941:131;:::i;:::-;31933:139;;31660:419;;;:::o;32085:::-;32251:4;32289:2;32278:9;32274:18;32266:26;;32338:9;32332:4;32328:20;32324:1;32313:9;32309:17;32302:47;32366:131;32492:4;32366:131;:::i;:::-;32358:139;;32085:419;;;:::o;32510:::-;32676:4;32714:2;32703:9;32699:18;32691:26;;32763:9;32757:4;32753:20;32749:1;32738:9;32734:17;32727:47;32791:131;32917:4;32791:131;:::i;:::-;32783:139;;32510:419;;;:::o;32935:::-;33101:4;33139:2;33128:9;33124:18;33116:26;;33188:9;33182:4;33178:20;33174:1;33163:9;33159:17;33152:47;33216:131;33342:4;33216:131;:::i;:::-;33208:139;;32935:419;;;:::o;33360:::-;33526:4;33564:2;33553:9;33549:18;33541:26;;33613:9;33607:4;33603:20;33599:1;33588:9;33584:17;33577:47;33641:131;33767:4;33641:131;:::i;:::-;33633:139;;33360:419;;;:::o;33785:::-;33951:4;33989:2;33978:9;33974:18;33966:26;;34038:9;34032:4;34028:20;34024:1;34013:9;34009:17;34002:47;34066:131;34192:4;34066:131;:::i;:::-;34058:139;;33785:419;;;:::o;34210:::-;34376:4;34414:2;34403:9;34399:18;34391:26;;34463:9;34457:4;34453:20;34449:1;34438:9;34434:17;34427:47;34491:131;34617:4;34491:131;:::i;:::-;34483:139;;34210:419;;;:::o;34635:::-;34801:4;34839:2;34828:9;34824:18;34816:26;;34888:9;34882:4;34878:20;34874:1;34863:9;34859:17;34852:47;34916:131;35042:4;34916:131;:::i;:::-;34908:139;;34635:419;;;:::o;35060:::-;35226:4;35264:2;35253:9;35249:18;35241:26;;35313:9;35307:4;35303:20;35299:1;35288:9;35284:17;35277:47;35341:131;35467:4;35341:131;:::i;:::-;35333:139;;35060:419;;;:::o;35485:::-;35651:4;35689:2;35678:9;35674:18;35666:26;;35738:9;35732:4;35728:20;35724:1;35713:9;35709:17;35702:47;35766:131;35892:4;35766:131;:::i;:::-;35758:139;;35485:419;;;:::o;35910:::-;36076:4;36114:2;36103:9;36099:18;36091:26;;36163:9;36157:4;36153:20;36149:1;36138:9;36134:17;36127:47;36191:131;36317:4;36191:131;:::i;:::-;36183:139;;35910:419;;;:::o;36335:::-;36501:4;36539:2;36528:9;36524:18;36516:26;;36588:9;36582:4;36578:20;36574:1;36563:9;36559:17;36552:47;36616:131;36742:4;36616:131;:::i;:::-;36608:139;;36335:419;;;:::o;36760:::-;36926:4;36964:2;36953:9;36949:18;36941:26;;37013:9;37007:4;37003:20;36999:1;36988:9;36984:17;36977:47;37041:131;37167:4;37041:131;:::i;:::-;37033:139;;36760:419;;;:::o;37185:222::-;37278:4;37316:2;37305:9;37301:18;37293:26;;37329:71;37397:1;37386:9;37382:17;37373:6;37329:71;:::i;:::-;37185:222;;;;:::o;37413:129::-;37447:6;37474:20;;:::i;:::-;37464:30;;37503:33;37531:4;37523:6;37503:33;:::i;:::-;37413:129;;;:::o;37548:75::-;37581:6;37614:2;37608:9;37598:19;;37548:75;:::o;37629:307::-;37690:4;37780:18;37772:6;37769:30;37766:56;;;37802:18;;:::i;:::-;37766:56;37840:29;37862:6;37840:29;:::i;:::-;37832:37;;37924:4;37918;37914:15;37906:23;;37629:307;;;:::o;37942:308::-;38004:4;38094:18;38086:6;38083:30;38080:56;;;38116:18;;:::i;:::-;38080:56;38154:29;38176:6;38154:29;:::i;:::-;38146:37;;38238:4;38232;38228:15;38220:23;;37942:308;;;:::o;38256:98::-;38307:6;38341:5;38335:12;38325:22;;38256:98;;;:::o;38360:99::-;38412:6;38446:5;38440:12;38430:22;;38360:99;;;:::o;38465:168::-;38548:11;38582:6;38577:3;38570:19;38622:4;38617:3;38613:14;38598:29;;38465:168;;;;:::o;38639:147::-;38740:11;38777:3;38762:18;;38639:147;;;;:::o;38792:169::-;38876:11;38910:6;38905:3;38898:19;38950:4;38945:3;38941:14;38926:29;;38792:169;;;;:::o;38967:148::-;39069:11;39106:3;39091:18;;38967:148;;;;:::o;39121:305::-;39161:3;39180:20;39198:1;39180:20;:::i;:::-;39175:25;;39214:20;39232:1;39214:20;:::i;:::-;39209:25;;39368:1;39300:66;39296:74;39293:1;39290:81;39287:107;;;39374:18;;:::i;:::-;39287:107;39418:1;39415;39411:9;39404:16;;39121:305;;;;:::o;39432:185::-;39472:1;39489:20;39507:1;39489:20;:::i;:::-;39484:25;;39523:20;39541:1;39523:20;:::i;:::-;39518:25;;39562:1;39552:35;;39567:18;;:::i;:::-;39552:35;39609:1;39606;39602:9;39597:14;;39432:185;;;;:::o;39623:348::-;39663:7;39686:20;39704:1;39686:20;:::i;:::-;39681:25;;39720:20;39738:1;39720:20;:::i;:::-;39715:25;;39908:1;39840:66;39836:74;39833:1;39830:81;39825:1;39818:9;39811:17;39807:105;39804:131;;;39915:18;;:::i;:::-;39804:131;39963:1;39960;39956:9;39945:20;;39623:348;;;;:::o;39977:191::-;40017:4;40037:20;40055:1;40037:20;:::i;:::-;40032:25;;40071:20;40089:1;40071:20;:::i;:::-;40066:25;;40110:1;40107;40104:8;40101:34;;;40115:18;;:::i;:::-;40101:34;40160:1;40157;40153:9;40145:17;;39977:191;;;;:::o;40174:96::-;40211:7;40240:24;40258:5;40240:24;:::i;:::-;40229:35;;40174:96;;;:::o;40276:90::-;40310:7;40353:5;40346:13;40339:21;40328:32;;40276:90;;;:::o;40372:149::-;40408:7;40448:66;40441:5;40437:78;40426:89;;40372:149;;;:::o;40527:126::-;40564:7;40604:42;40597:5;40593:54;40582:65;;40527:126;;;:::o;40659:77::-;40696:7;40725:5;40714:16;;40659:77;;;:::o;40742:154::-;40826:6;40821:3;40816;40803:30;40888:1;40879:6;40874:3;40870:16;40863:27;40742:154;;;:::o;40902:307::-;40970:1;40980:113;40994:6;40991:1;40988:13;40980:113;;;41079:1;41074:3;41070:11;41064:18;41060:1;41055:3;41051:11;41044:39;41016:2;41013:1;41009:10;41004:15;;40980:113;;;41111:6;41108:1;41105:13;41102:101;;;41191:1;41182:6;41177:3;41173:16;41166:27;41102:101;40951:258;40902:307;;;:::o;41215:320::-;41259:6;41296:1;41290:4;41286:12;41276:22;;41343:1;41337:4;41333:12;41364:18;41354:81;;41420:4;41412:6;41408:17;41398:27;;41354:81;41482:2;41474:6;41471:14;41451:18;41448:38;41445:84;;;41501:18;;:::i;:::-;41445:84;41266:269;41215:320;;;:::o;41541:281::-;41624:27;41646:4;41624:27;:::i;:::-;41616:6;41612:40;41754:6;41742:10;41739:22;41718:18;41706:10;41703:34;41700:62;41697:88;;;41765:18;;:::i;:::-;41697:88;41805:10;41801:2;41794:22;41584:238;41541:281;;:::o;41828:233::-;41867:3;41890:24;41908:5;41890:24;:::i;:::-;41881:33;;41936:66;41929:5;41926:77;41923:103;;;42006:18;;:::i;:::-;41923:103;42053:1;42046:5;42042:13;42035:20;;41828:233;;;:::o;42067:176::-;42099:1;42116:20;42134:1;42116:20;:::i;:::-;42111:25;;42150:20;42168:1;42150:20;:::i;:::-;42145:25;;42189:1;42179:35;;42194:18;;:::i;:::-;42179:35;42235:1;42232;42228:9;42223:14;;42067:176;;;;:::o;42249:180::-;42297:77;42294:1;42287:88;42394:4;42391:1;42384:15;42418:4;42415:1;42408:15;42435:180;42483:77;42480:1;42473:88;42580:4;42577:1;42570:15;42604:4;42601:1;42594:15;42621:180;42669:77;42666:1;42659:88;42766:4;42763:1;42756:15;42790:4;42787:1;42780:15;42807:180;42855:77;42852:1;42845:88;42952:4;42949:1;42942:15;42976:4;42973:1;42966:15;42993:180;43041:77;43038:1;43031:88;43138:4;43135:1;43128:15;43162:4;43159:1;43152:15;43179:117;43288:1;43285;43278:12;43302:117;43411:1;43408;43401:12;43425:117;43534:1;43531;43524:12;43548:117;43657:1;43654;43647:12;43671:117;43780:1;43777;43770:12;43794:117;43903:1;43900;43893:12;43917:102;43958:6;44009:2;44005:7;44000:2;43993:5;43989:14;43985:28;43975:38;;43917:102;;;:::o;44025:221::-;44165:34;44161:1;44153:6;44149:14;44142:58;44234:4;44229:2;44221:6;44217:15;44210:29;44025:221;:::o;44252:161::-;44392:13;44388:1;44380:6;44376:14;44369:37;44252:161;:::o;44419:170::-;44559:22;44555:1;44547:6;44543:14;44536:46;44419:170;:::o;44595:220::-;44735:34;44731:1;44723:6;44719:14;44712:58;44804:3;44799:2;44791:6;44787:15;44780:28;44595:220;:::o;44821:225::-;44961:34;44957:1;44949:6;44945:14;44938:58;45030:8;45025:2;45017:6;45013:15;45006:33;44821:225;:::o;45052:229::-;45192:34;45188:1;45180:6;45176:14;45169:58;45261:12;45256:2;45248:6;45244:15;45237:37;45052:229;:::o;45287:178::-;45427:30;45423:1;45415:6;45411:14;45404:54;45287:178;:::o;45471:222::-;45611:34;45607:1;45599:6;45595:14;45588:58;45680:5;45675:2;45667:6;45663:15;45656:30;45471:222;:::o;45699:224::-;45839:34;45835:1;45827:6;45823:14;45816:58;45908:7;45903:2;45895:6;45891:15;45884:32;45699:224;:::o;45929:220::-;46069:34;46065:1;46057:6;46053:14;46046:58;46138:3;46133:2;46125:6;46121:15;46114:28;45929:220;:::o;46155:166::-;46295:18;46291:1;46283:6;46279:14;46272:42;46155:166;:::o;46327:244::-;46467:34;46463:1;46455:6;46451:14;46444:58;46536:27;46531:2;46523:6;46519:15;46512:52;46327:244;:::o;46577:176::-;46717:28;46713:1;46705:6;46701:14;46694:52;46577:176;:::o;46759:230::-;46899:34;46895:1;46887:6;46883:14;46876:58;46968:13;46963:2;46955:6;46951:15;46944:38;46759:230;:::o;46995:169::-;47135:21;47131:1;47123:6;47119:14;47112:45;46995:169;:::o;47170:225::-;47310:34;47306:1;47298:6;47294:14;47287:58;47379:8;47374:2;47366:6;47362:15;47355:33;47170:225;:::o;47401:155::-;47541:7;47537:1;47529:6;47525:14;47518:31;47401:155;:::o;47562:158::-;47702:10;47698:1;47690:6;47686:14;47679:34;47562:158;:::o;47726:182::-;47866:34;47862:1;47854:6;47850:14;47843:58;47726:182;:::o;47914:176::-;48054:28;48050:1;48042:6;48038:14;48031:52;47914:176;:::o;48096:237::-;48236:34;48232:1;48224:6;48220:14;48213:58;48305:20;48300:2;48292:6;48288:15;48281:45;48096:237;:::o;48339:221::-;48479:34;48475:1;48467:6;48463:14;48456:58;48548:4;48543:2;48535:6;48531:15;48524:29;48339:221;:::o;48566:114::-;;:::o;48686:238::-;48826:34;48822:1;48814:6;48810:14;48803:58;48895:21;48890:2;48882:6;48878:15;48871:46;48686:238;:::o;48930:177::-;49070:29;49066:1;49058:6;49054:14;49047:53;48930:177;:::o;49113:220::-;49253:34;49249:1;49241:6;49237:14;49230:58;49322:3;49317:2;49309:6;49305:15;49298:28;49113:220;:::o;49339:227::-;49479:34;49475:1;49467:6;49463:14;49456:58;49548:10;49543:2;49535:6;49531:15;49524:35;49339:227;:::o;49572:233::-;49712:34;49708:1;49700:6;49696:14;49689:58;49781:16;49776:2;49768:6;49764:15;49757:41;49572:233;:::o;49811:181::-;49951:33;49947:1;49939:6;49935:14;49928:57;49811:181;:::o;49998:234::-;50138:34;50134:1;50126:6;50122:14;50115:58;50207:17;50202:2;50194:6;50190:15;50183:42;49998:234;:::o;50238:232::-;50378:34;50374:1;50366:6;50362:14;50355:58;50447:15;50442:2;50434:6;50430:15;50423:40;50238:232;:::o;50476:122::-;50549:24;50567:5;50549:24;:::i;:::-;50542:5;50539:35;50529:63;;50588:1;50585;50578:12;50529:63;50476:122;:::o;50604:116::-;50674:21;50689:5;50674:21;:::i;:::-;50667:5;50664:32;50654:60;;50710:1;50707;50700:12;50654:60;50604:116;:::o;50726:120::-;50798:23;50815:5;50798:23;:::i;:::-;50791:5;50788:34;50778:62;;50836:1;50833;50826:12;50778:62;50726:120;:::o;50852:122::-;50925:24;50943:5;50925:24;:::i;:::-;50918:5;50915:35;50905:63;;50964:1;50961;50954:12;50905:63;50852:122;:::o

Swarm Source

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