ETH Price: $3,318.29 (-3.66%)
Gas: 4 Gwei

gm gems (GEMS)
 

Overview

TokenID

11

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
gm_gems

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-05
*/

// SPDX-License-Identifier: MIT

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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.7.0 <0.9.0;
contract gm_gems is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 200;
  uint256 public maxMintAmount = 1;
  uint256 public nftPerAddressLimit = 1;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
 function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003ba565b506000600e5560c8600f55600160105560016011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff021916908315150217905550348015620000c457600080fd5b50604051620056d0380380620056d08339818101604052810190620000ea9190620004dc565b8383816000908051906020019062000104929190620003ba565b5080600190805190602001906200011d929190620003ba565b50505062000140620001346200016c60201b60201c565b6200017460201b60201c565b62000151826200023a60201b60201c565b6200016281620002e560201b60201c565b5050505062000752565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024a6200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002706200039060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c090620005ee565b60405180910390fd5b80600b9080519060200190620002e1929190620003ba565b5050565b620002f56200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031b6200039060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036b90620005ee565b60405180910390fd5b80600d90805190602001906200038c929190620003ba565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003c890620006be565b90600052602060002090601f016020900481019282620003ec576000855562000438565b82601f106200040757805160ff191683800117855562000438565b8280016001018555821562000438579182015b82811115620004375782518255916020019190600101906200041a565b5b5090506200044791906200044b565b5090565b5b80821115620004665760008160009055506001016200044c565b5090565b6000620004816200047b8462000644565b62000610565b9050828152602081018484840111156200049a57600080fd5b620004a784828562000688565b509392505050565b600082601f830112620004c157600080fd5b8151620004d38482602086016200046a565b91505092915050565b60008060008060808587031215620004f357600080fd5b600085015167ffffffffffffffff8111156200050e57600080fd5b6200051c87828801620004af565b945050602085015167ffffffffffffffff8111156200053a57600080fd5b6200054887828801620004af565b935050604085015167ffffffffffffffff8111156200056657600080fd5b6200057487828801620004af565b925050606085015167ffffffffffffffff8111156200059257600080fd5b620005a087828801620004af565b91505092959194509250565b6000620005bb60208362000677565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200060981620005ac565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200063a576200063962000723565b5b8060405250919050565b600067ffffffffffffffff82111562000662576200066162000723565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620006a85780820151818401526020810190506200068b565b83811115620006b8576000848401525b50505050565b60006002820490506001821680620006d757607f821691505b60208210811415620006ee57620006ed620006f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614f6e80620007626000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb011461095c578063da3ef23f14610987578063e985e9c5146109b0578063edec5f27146109ed578063f2c4ce1e14610a16578063f2fde38b14610a3f57610272565b8063b88d4fde1461083a578063ba4e5c4914610863578063ba7d2c76146108a0578063c6682862146108cb578063c87b56dd146108f6578063d0eb26b01461093357610272565b80638da5cb5b116101135780638da5cb5b1461075d57806395d89b41146107885780639c70b512146107b3578063a0712d68146107de578063a22cb465146107fa578063a475b5dd1461082357610272565b80636352211e146106785780636c0360eb146106b557806370a08231146106e0578063715018a61461071d5780637f00c7a61461073457610272565b80632f745c59116101e8578063438b6300116101ac578063438b63001461055657806344a0d68a146105935780634f6ccce7146105bc57806351830227146105f957806355f804b3146106245780635c975abb1461064d57610272565b80632f745c59146104805780633af32abf146104bd5780633c952764146104fa5780633ccfd60b1461052357806342842e0e1461052d57610272565b8063095ea7b31161023a578063095ea7b31461037057806313faede61461039957806318160ddd146103c457806318cae269146103ef578063239c70ae1461042c57806323b872dd1461045757610272565b806301ffc9a71461027757806302329a29146102b457806306fdde03146102dd578063081812fc14610308578063081c8c4414610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b00565b610a68565b6040516102ab91906146f3565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613ad7565b610ae2565b005b3480156102e957600080fd5b506102f2610b7b565b6040516102ff919061470e565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613b93565b610c0d565b60405161033c919061466a565b60405180910390f35b34801561035157600080fd5b5061035a610c92565b604051610367919061470e565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613a56565b610d20565b005b3480156103a557600080fd5b506103ae610e38565b6040516103bb9190614a50565b60405180910390f35b3480156103d057600080fd5b506103d9610e3e565b6040516103e69190614a50565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906138eb565b610e4b565b6040516104239190614a50565b60405180910390f35b34801561043857600080fd5b50610441610e63565b60405161044e9190614a50565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190613950565b610e69565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613a56565b610ec9565b6040516104b49190614a50565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906138eb565b610f6e565b6040516104f191906146f3565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613ad7565b611043565b005b61052b6110dc565b005b34801561053957600080fd5b50610554600480360381019061054f9190613950565b6111d1565b005b34801561056257600080fd5b5061057d600480360381019061057891906138eb565b6111f1565b60405161058a91906146d1565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613b93565b6112eb565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613b93565b611371565b6040516105f09190614a50565b60405180910390f35b34801561060557600080fd5b5061060e611408565b60405161061b91906146f3565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613b52565b61141b565b005b34801561065957600080fd5b506106626114b1565b60405161066f91906146f3565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613b93565b6114c4565b6040516106ac919061466a565b60405180910390f35b3480156106c157600080fd5b506106ca611576565b6040516106d7919061470e565b60405180910390f35b3480156106ec57600080fd5b50610707600480360381019061070291906138eb565b611604565b6040516107149190614a50565b60405180910390f35b34801561072957600080fd5b506107326116bc565b005b34801561074057600080fd5b5061075b60048036038101906107569190613b93565b611744565b005b34801561076957600080fd5b506107726117ca565b60405161077f919061466a565b60405180910390f35b34801561079457600080fd5b5061079d6117f4565b6040516107aa919061470e565b60405180910390f35b3480156107bf57600080fd5b506107c8611886565b6040516107d591906146f3565b60405180910390f35b6107f860048036038101906107f39190613b93565b611899565b005b34801561080657600080fd5b50610821600480360381019061081c9190613a1a565b611be2565b005b34801561082f57600080fd5b50610838611d63565b005b34801561084657600080fd5b50610861600480360381019061085c919061399f565b611dfc565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613b93565b611e5e565b604051610897919061466a565b60405180910390f35b3480156108ac57600080fd5b506108b5611e9d565b6040516108c29190614a50565b60405180910390f35b3480156108d757600080fd5b506108e0611ea3565b6040516108ed919061470e565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190613b93565b611f31565b60405161092a919061470e565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190613b93565b61208a565b005b34801561096857600080fd5b50610971612110565b60405161097e9190614a50565b60405180910390f35b34801561099357600080fd5b506109ae60048036038101906109a99190613b52565b612116565b005b3480156109bc57600080fd5b506109d760048036038101906109d29190613914565b6121ac565b6040516109e491906146f3565b60405180910390f35b3480156109f957600080fd5b50610a146004803603810190610a0f9190613a92565b612240565b005b348015610a2257600080fd5b50610a3d6004803603810190610a389190613b52565b6122e0565b005b348015610a4b57600080fd5b50610a666004803603810190610a6191906138eb565b612376565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610adb5750610ada8261246e565b5b9050919050565b610aea612550565b73ffffffffffffffffffffffffffffffffffffffff16610b086117ca565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590614910565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610b8a90614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb690614d63565b8015610c035780601f10610bd857610100808354040283529160200191610c03565b820191906000526020600020905b815481529060010190602001808311610be657829003601f168201915b5050505050905090565b6000610c1882612558565b610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906148f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610c9f90614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccb90614d63565b8015610d185780601f10610ced57610100808354040283529160200191610d18565b820191906000526020600020905b815481529060010190602001808311610cfb57829003601f168201915b505050505081565b6000610d2b826114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9390614990565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dbb612550565b73ffffffffffffffffffffffffffffffffffffffff161480610dea5750610de981610de4612550565b6121ac565b5b610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090614830565b60405180910390fd5b610e3383836125c4565b505050565b600e5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b610e7a610e74612550565b8261267d565b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906149d0565b60405180910390fd5b610ec483838361275b565b505050565b6000610ed483611604565b8210610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90614730565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015611038578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610fd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561102557600191505061103e565b808061103090614d95565b915050610f76565b50600090505b919050565b61104b612550565b73ffffffffffffffffffffffffffffffffffffffff166110696117ca565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690614910565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6110e4612550565b73ffffffffffffffffffffffffffffffffffffffff166111026117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614910565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161117e90614655565b60006040518083038185875af1925050503d80600081146111bb576040519150601f19603f3d011682016040523d82523d6000602084013e6111c0565b606091505b50509050806111ce57600080fd5b50565b6111ec83838360405180602001604052806000815250611dfc565b505050565b606060006111fe83611604565b905060008167ffffffffffffffff811115611242577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112705781602001602082028036833780820191505090505b50905060005b828110156112e0576112888582610ec9565b8282815181106112c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112d890614d95565b915050611276565b508092505050919050565b6112f3612550565b73ffffffffffffffffffffffffffffffffffffffff166113116117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90614910565b60405180910390fd5b80600e8190555050565b600061137b610e3e565b82106113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906149f0565b60405180910390fd5b600882815481106113f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b611423612550565b73ffffffffffffffffffffffffffffffffffffffff166114416117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90614910565b60405180910390fd5b80600b90805190602001906114ad929190613604565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490614870565b60405180910390fd5b80915050919050565b600b805461158390614d63565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90614d63565b80156115fc5780601f106115d1576101008083540402835291602001916115fc565b820191906000526020600020905b8154815290600101906020018083116115df57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614850565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c4612550565b73ffffffffffffffffffffffffffffffffffffffff166116e26117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90614910565b60405180910390fd5b61174260006129b7565b565b61174c612550565b73ffffffffffffffffffffffffffffffffffffffff1661176a6117ca565b73ffffffffffffffffffffffffffffffffffffffff16146117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790614910565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461180390614d63565b80601f016020809104026020016040519081016040528092919081815260200182805461182f90614d63565b801561187c5780601f106118515761010080835404028352916020019161187c565b820191906000526020600020905b81548152906001019060200180831161185f57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff16156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090614930565b60405180910390fd5b60006118f3610e3e565b905060008211611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90614a30565b60405180910390fd5b60105482111561197d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611974906148b0565b60405180910390fd5b600f54828261198c9190614b98565b11156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490614890565b60405180910390fd5b6119d56117ca565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b525760011515601260029054906101000a900460ff1615151415611b0157611a2c33610f6e565b611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614a10565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548382611abe9190614b98565b1115611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af6906147b0565b60405180910390fd5b505b81600e54611b0f9190614c1f565b341015611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b48906149b0565b60405180910390fd5b5b6000600190505b828111611bdd57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bb090614d95565b9190505550611bca338284611bc59190614b98565b612a7d565b8080611bd590614d95565b915050611b59565b505050565b611bea612550565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906147f0565b60405180910390fd5b8060056000611c65612550565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d12612550565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5791906146f3565b60405180910390a35050565b611d6b612550565b73ffffffffffffffffffffffffffffffffffffffff16611d896117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd690614910565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b611e0d611e07612550565b8361267d565b611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906149d0565b60405180910390fd5b611e5884848484612a9b565b50505050565b60138181548110611e6e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611eb090614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054611edc90614d63565b8015611f295780601f10611efe57610100808354040283529160200191611f29565b820191906000526020600020905b815481529060010190602001808311611f0c57829003601f168201915b505050505081565b6060611f3c82612558565b611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614970565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561202957600d8054611fa490614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd090614d63565b801561201d5780601f10611ff25761010080835404028352916020019161201d565b820191906000526020600020905b81548152906001019060200180831161200057829003601f168201915b50505050509050612085565b6000612033612af7565b905060008151116120535760405180602001604052806000815250612081565b8061205d84612b89565b600c60405160200161207193929190614624565b6040516020818303038152906040525b9150505b919050565b612092612550565b73ffffffffffffffffffffffffffffffffffffffff166120b06117ca565b73ffffffffffffffffffffffffffffffffffffffff1614612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614910565b60405180910390fd5b8060118190555050565b600f5481565b61211e612550565b73ffffffffffffffffffffffffffffffffffffffff1661213c6117ca565b73ffffffffffffffffffffffffffffffffffffffff1614612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990614910565b60405180910390fd5b80600c90805190602001906121a8929190613604565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612248612550565b73ffffffffffffffffffffffffffffffffffffffff166122666117ca565b73ffffffffffffffffffffffffffffffffffffffff16146122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b390614910565b60405180910390fd5b601360006122ca919061368a565b8181601391906122db9291906136ab565b505050565b6122e8612550565b73ffffffffffffffffffffffffffffffffffffffff166123066117ca565b73ffffffffffffffffffffffffffffffffffffffff161461235c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235390614910565b60405180910390fd5b80600d9080519060200190612372929190613604565b5050565b61237e612550565b73ffffffffffffffffffffffffffffffffffffffff1661239c6117ca565b73ffffffffffffffffffffffffffffffffffffffff16146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990614910565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990614770565b60405180910390fd5b61246b816129b7565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612549575061254882612d36565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612637836114c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061268882612558565b6126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be90614810565b60405180910390fd5b60006126d2836114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274157508373ffffffffffffffffffffffffffffffffffffffff1661272984610c0d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612752575061275181856121ac565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661277b826114c4565b73ffffffffffffffffffffffffffffffffffffffff16146127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c890614950565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612838906147d0565b60405180910390fd5b61284c838383612da0565b6128576000826125c4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a79190614c79565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128fe9190614b98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a97828260405180602001604052806000815250612eb4565b5050565b612aa684848461275b565b612ab284848484612f0f565b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae890614750565b60405180910390fd5b50505050565b6060600b8054612b0690614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3290614d63565b8015612b7f5780601f10612b5457610100808354040283529160200191612b7f565b820191906000526020600020905b815481529060010190602001808311612b6257829003601f168201915b5050505050905090565b60606000821415612bd1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d31565b600082905060005b60008214612c03578080612bec90614d95565b915050600a82612bfc9190614bee565b9150612bd9565b60008167ffffffffffffffff811115612c45577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c775781602001600182028036833780820191505090505b5090505b60008514612d2a57600182612c909190614c79565b9150600a85612c9f9190614dde565b6030612cab9190614b98565b60f81b818381518110612ce7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d239190614bee565b9450612c7b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612dab8383836130a6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dee57612de9816130ab565b612e2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2c57612e2b83826130f4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7057612e6b81613261565b612eaf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612eae57612ead82826133a4565b5b5b505050565b612ebe8383613423565b612ecb6000848484612f0f565b612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614750565b60405180910390fd5b505050565b6000612f308473ffffffffffffffffffffffffffffffffffffffff166135f1565b15613099578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f59612550565b8786866040518563ffffffff1660e01b8152600401612f7b9493929190614685565b602060405180830381600087803b158015612f9557600080fd5b505af1925050508015612fc657506040513d601f19601f82011682018060405250810190612fc39190613b29565b60015b613049573d8060008114612ff6576040519150601f19603f3d011682016040523d82523d6000602084013e612ffb565b606091505b50600081511415613041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303890614750565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061309e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161310184611604565b61310b9190614c79565b90506000600760008481526020019081526020016000205490508181146131f0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132759190614c79565b90506000600960008481526020019081526020016000205490506000600883815481106132cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613313577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613388577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006133af83611604565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348a906148d0565b60405180910390fd5b61349c81612558565b156134dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d390614790565b60405180910390fd5b6134e860008383612da0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135389190614b98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461361090614d63565b90600052602060002090601f0160209004810192826136325760008555613679565b82601f1061364b57805160ff1916838001178555613679565b82800160010185558215613679579182015b8281111561367857825182559160200191906001019061365d565b5b509050613686919061374b565b5090565b50805460008255906000526020600020908101906136a8919061374b565b50565b82805482825590600052602060002090810192821561373a579160200282015b8281111561373957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906136cb565b5b509050613747919061374b565b5090565b5b8082111561376457600081600090555060010161374c565b5090565b600061377b61377684614a9c565b614a6b565b90508281526020810184848401111561379357600080fd5b61379e848285614d21565b509392505050565b60006137b96137b484614acc565b614a6b565b9050828152602081018484840111156137d157600080fd5b6137dc848285614d21565b509392505050565b6000813590506137f381614edc565b92915050565b60008083601f84011261380b57600080fd5b8235905067ffffffffffffffff81111561382457600080fd5b60208301915083602082028301111561383c57600080fd5b9250929050565b60008135905061385281614ef3565b92915050565b60008135905061386781614f0a565b92915050565b60008151905061387c81614f0a565b92915050565b600082601f83011261389357600080fd5b81356138a3848260208601613768565b91505092915050565b600082601f8301126138bd57600080fd5b81356138cd8482602086016137a6565b91505092915050565b6000813590506138e581614f21565b92915050565b6000602082840312156138fd57600080fd5b600061390b848285016137e4565b91505092915050565b6000806040838503121561392757600080fd5b6000613935858286016137e4565b9250506020613946858286016137e4565b9150509250929050565b60008060006060848603121561396557600080fd5b6000613973868287016137e4565b9350506020613984868287016137e4565b9250506040613995868287016138d6565b9150509250925092565b600080600080608085870312156139b557600080fd5b60006139c3878288016137e4565b94505060206139d4878288016137e4565b93505060406139e5878288016138d6565b925050606085013567ffffffffffffffff811115613a0257600080fd5b613a0e87828801613882565b91505092959194509250565b60008060408385031215613a2d57600080fd5b6000613a3b858286016137e4565b9250506020613a4c85828601613843565b9150509250929050565b60008060408385031215613a6957600080fd5b6000613a77858286016137e4565b9250506020613a88858286016138d6565b9150509250929050565b60008060208385031215613aa557600080fd5b600083013567ffffffffffffffff811115613abf57600080fd5b613acb858286016137f9565b92509250509250929050565b600060208284031215613ae957600080fd5b6000613af784828501613843565b91505092915050565b600060208284031215613b1257600080fd5b6000613b2084828501613858565b91505092915050565b600060208284031215613b3b57600080fd5b6000613b498482850161386d565b91505092915050565b600060208284031215613b6457600080fd5b600082013567ffffffffffffffff811115613b7e57600080fd5b613b8a848285016138ac565b91505092915050565b600060208284031215613ba557600080fd5b6000613bb3848285016138d6565b91505092915050565b6000613bc88383614606565b60208301905092915050565b613bdd81614cad565b82525050565b6000613bee82614b21565b613bf88185614b4f565b9350613c0383614afc565b8060005b83811015613c34578151613c1b8882613bbc565b9750613c2683614b42565b925050600181019050613c07565b5085935050505092915050565b613c4a81614cbf565b82525050565b6000613c5b82614b2c565b613c658185614b60565b9350613c75818560208601614d30565b613c7e81614ecb565b840191505092915050565b6000613c9482614b37565b613c9e8185614b7c565b9350613cae818560208601614d30565b613cb781614ecb565b840191505092915050565b6000613ccd82614b37565b613cd78185614b8d565b9350613ce7818560208601614d30565b80840191505092915050565b60008154613d0081614d63565b613d0a8186614b8d565b94506001821660008114613d255760018114613d3657613d69565b60ff19831686528186019350613d69565b613d3f85614b0c565b60005b83811015613d6157815481890152600182019150602081019050613d42565b838801955050505b50505092915050565b6000613d7f602b83614b7c565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613de5603283614b7c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613e4b602683614b7c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eb1601c83614b7c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613ef1601c83614b7c565b91507f6d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000613f31602483614b7c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f97601983614b7c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613fd7602c83614b7c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061403d603883614b7c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006140a3602a83614b7c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614109602983614b7c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061416f601683614b7c565b91507f6d6178204e4654206c696d6974206578636565646564000000000000000000006000830152602082019050919050565b60006141af602483614b7c565b91507f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008301527f65646564000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614215602083614b7c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614255602c83614b7c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142bb602083614b7c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006142fb601683614b7c565b91507f74686520636f6e747261637420697320706175736564000000000000000000006000830152602082019050919050565b600061433b602983614b7c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143a1602f83614b7c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614407602183614b7c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061446d600083614b71565b9150600082019050919050565b6000614487601283614b7c565b91507f696e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b60006144c7603183614b7c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061452d602c83614b7c565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614593601783614b7c565b91507f75736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b60006145d3601b83614b7c565b91507f6e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61460f81614d17565b82525050565b61461e81614d17565b82525050565b60006146308286613cc2565b915061463c8285613cc2565b91506146488284613cf3565b9150819050949350505050565b600061466082614460565b9150819050919050565b600060208201905061467f6000830184613bd4565b92915050565b600060808201905061469a6000830187613bd4565b6146a76020830186613bd4565b6146b46040830185614615565b81810360608301526146c68184613c50565b905095945050505050565b600060208201905081810360008301526146eb8184613be3565b905092915050565b60006020820190506147086000830184613c41565b92915050565b600060208201905081810360008301526147288184613c89565b905092915050565b6000602082019050818103600083015261474981613d72565b9050919050565b6000602082019050818103600083015261476981613dd8565b9050919050565b6000602082019050818103600083015261478981613e3e565b9050919050565b600060208201905081810360008301526147a981613ea4565b9050919050565b600060208201905081810360008301526147c981613ee4565b9050919050565b600060208201905081810360008301526147e981613f24565b9050919050565b6000602082019050818103600083015261480981613f8a565b9050919050565b6000602082019050818103600083015261482981613fca565b9050919050565b6000602082019050818103600083015261484981614030565b9050919050565b6000602082019050818103600083015261486981614096565b9050919050565b60006020820190508181036000830152614889816140fc565b9050919050565b600060208201905081810360008301526148a981614162565b9050919050565b600060208201905081810360008301526148c9816141a2565b9050919050565b600060208201905081810360008301526148e981614208565b9050919050565b6000602082019050818103600083015261490981614248565b9050919050565b60006020820190508181036000830152614929816142ae565b9050919050565b60006020820190508181036000830152614949816142ee565b9050919050565b600060208201905081810360008301526149698161432e565b9050919050565b6000602082019050818103600083015261498981614394565b9050919050565b600060208201905081810360008301526149a9816143fa565b9050919050565b600060208201905081810360008301526149c98161447a565b9050919050565b600060208201905081810360008301526149e9816144ba565b9050919050565b60006020820190508181036000830152614a0981614520565b9050919050565b60006020820190508181036000830152614a2981614586565b9050919050565b60006020820190508181036000830152614a49816145c6565b9050919050565b6000602082019050614a656000830184614615565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614a9257614a91614e9c565b5b8060405250919050565b600067ffffffffffffffff821115614ab757614ab6614e9c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614ae757614ae6614e9c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ba382614d17565b9150614bae83614d17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614be357614be2614e0f565b5b828201905092915050565b6000614bf982614d17565b9150614c0483614d17565b925082614c1457614c13614e3e565b5b828204905092915050565b6000614c2a82614d17565b9150614c3583614d17565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c6e57614c6d614e0f565b5b828202905092915050565b6000614c8482614d17565b9150614c8f83614d17565b925082821015614ca257614ca1614e0f565b5b828203905092915050565b6000614cb882614cf7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d4e578082015181840152602081019050614d33565b83811115614d5d576000848401525b50505050565b60006002820490506001821680614d7b57607f821691505b60208210811415614d8f57614d8e614e6d565b5b50919050565b6000614da082614d17565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dd357614dd2614e0f565b5b600182019050919050565b6000614de982614d17565b9150614df483614d17565b925082614e0457614e03614e3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614ee581614cad565b8114614ef057600080fd5b50565b614efc81614cbf565b8114614f0757600080fd5b50565b614f1381614ccb565b8114614f1e57600080fd5b50565b614f2a81614d17565b8114614f3557600080fd5b5056fea2646970667358221220ebc5013ecfb249bc21e81d32225749be5140c19ac4d3fdb7812753bec6fc6c1d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000007676d2067656d7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447454d5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6c6f747573616c657274732e696f2f676d5f722f00000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6c6f747573616c657274732e696f2f676d5f67656d732f00

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb011461095c578063da3ef23f14610987578063e985e9c5146109b0578063edec5f27146109ed578063f2c4ce1e14610a16578063f2fde38b14610a3f57610272565b8063b88d4fde1461083a578063ba4e5c4914610863578063ba7d2c76146108a0578063c6682862146108cb578063c87b56dd146108f6578063d0eb26b01461093357610272565b80638da5cb5b116101135780638da5cb5b1461075d57806395d89b41146107885780639c70b512146107b3578063a0712d68146107de578063a22cb465146107fa578063a475b5dd1461082357610272565b80636352211e146106785780636c0360eb146106b557806370a08231146106e0578063715018a61461071d5780637f00c7a61461073457610272565b80632f745c59116101e8578063438b6300116101ac578063438b63001461055657806344a0d68a146105935780634f6ccce7146105bc57806351830227146105f957806355f804b3146106245780635c975abb1461064d57610272565b80632f745c59146104805780633af32abf146104bd5780633c952764146104fa5780633ccfd60b1461052357806342842e0e1461052d57610272565b8063095ea7b31161023a578063095ea7b31461037057806313faede61461039957806318160ddd146103c457806318cae269146103ef578063239c70ae1461042c57806323b872dd1461045757610272565b806301ffc9a71461027757806302329a29146102b457806306fdde03146102dd578063081812fc14610308578063081c8c4414610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b00565b610a68565b6040516102ab91906146f3565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613ad7565b610ae2565b005b3480156102e957600080fd5b506102f2610b7b565b6040516102ff919061470e565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613b93565b610c0d565b60405161033c919061466a565b60405180910390f35b34801561035157600080fd5b5061035a610c92565b604051610367919061470e565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613a56565b610d20565b005b3480156103a557600080fd5b506103ae610e38565b6040516103bb9190614a50565b60405180910390f35b3480156103d057600080fd5b506103d9610e3e565b6040516103e69190614a50565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906138eb565b610e4b565b6040516104239190614a50565b60405180910390f35b34801561043857600080fd5b50610441610e63565b60405161044e9190614a50565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190613950565b610e69565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613a56565b610ec9565b6040516104b49190614a50565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906138eb565b610f6e565b6040516104f191906146f3565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613ad7565b611043565b005b61052b6110dc565b005b34801561053957600080fd5b50610554600480360381019061054f9190613950565b6111d1565b005b34801561056257600080fd5b5061057d600480360381019061057891906138eb565b6111f1565b60405161058a91906146d1565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b59190613b93565b6112eb565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613b93565b611371565b6040516105f09190614a50565b60405180910390f35b34801561060557600080fd5b5061060e611408565b60405161061b91906146f3565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190613b52565b61141b565b005b34801561065957600080fd5b506106626114b1565b60405161066f91906146f3565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613b93565b6114c4565b6040516106ac919061466a565b60405180910390f35b3480156106c157600080fd5b506106ca611576565b6040516106d7919061470e565b60405180910390f35b3480156106ec57600080fd5b50610707600480360381019061070291906138eb565b611604565b6040516107149190614a50565b60405180910390f35b34801561072957600080fd5b506107326116bc565b005b34801561074057600080fd5b5061075b60048036038101906107569190613b93565b611744565b005b34801561076957600080fd5b506107726117ca565b60405161077f919061466a565b60405180910390f35b34801561079457600080fd5b5061079d6117f4565b6040516107aa919061470e565b60405180910390f35b3480156107bf57600080fd5b506107c8611886565b6040516107d591906146f3565b60405180910390f35b6107f860048036038101906107f39190613b93565b611899565b005b34801561080657600080fd5b50610821600480360381019061081c9190613a1a565b611be2565b005b34801561082f57600080fd5b50610838611d63565b005b34801561084657600080fd5b50610861600480360381019061085c919061399f565b611dfc565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613b93565b611e5e565b604051610897919061466a565b60405180910390f35b3480156108ac57600080fd5b506108b5611e9d565b6040516108c29190614a50565b60405180910390f35b3480156108d757600080fd5b506108e0611ea3565b6040516108ed919061470e565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190613b93565b611f31565b60405161092a919061470e565b60405180910390f35b34801561093f57600080fd5b5061095a60048036038101906109559190613b93565b61208a565b005b34801561096857600080fd5b50610971612110565b60405161097e9190614a50565b60405180910390f35b34801561099357600080fd5b506109ae60048036038101906109a99190613b52565b612116565b005b3480156109bc57600080fd5b506109d760048036038101906109d29190613914565b6121ac565b6040516109e491906146f3565b60405180910390f35b3480156109f957600080fd5b50610a146004803603810190610a0f9190613a92565b612240565b005b348015610a2257600080fd5b50610a3d6004803603810190610a389190613b52565b6122e0565b005b348015610a4b57600080fd5b50610a666004803603810190610a6191906138eb565b612376565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610adb5750610ada8261246e565b5b9050919050565b610aea612550565b73ffffffffffffffffffffffffffffffffffffffff16610b086117ca565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590614910565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610b8a90614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb690614d63565b8015610c035780601f10610bd857610100808354040283529160200191610c03565b820191906000526020600020905b815481529060010190602001808311610be657829003601f168201915b5050505050905090565b6000610c1882612558565b610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e906148f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610c9f90614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccb90614d63565b8015610d185780601f10610ced57610100808354040283529160200191610d18565b820191906000526020600020905b815481529060010190602001808311610cfb57829003601f168201915b505050505081565b6000610d2b826114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9390614990565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dbb612550565b73ffffffffffffffffffffffffffffffffffffffff161480610dea5750610de981610de4612550565b6121ac565b5b610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090614830565b60405180910390fd5b610e3383836125c4565b505050565b600e5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b60105481565b610e7a610e74612550565b8261267d565b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906149d0565b60405180910390fd5b610ec483838361275b565b505050565b6000610ed483611604565b8210610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90614730565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601380549050811015611038578273ffffffffffffffffffffffffffffffffffffffff1660138281548110610fd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561102557600191505061103e565b808061103090614d95565b915050610f76565b50600090505b919050565b61104b612550565b73ffffffffffffffffffffffffffffffffffffffff166110696117ca565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690614910565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6110e4612550565b73ffffffffffffffffffffffffffffffffffffffff166111026117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614910565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161117e90614655565b60006040518083038185875af1925050503d80600081146111bb576040519150601f19603f3d011682016040523d82523d6000602084013e6111c0565b606091505b50509050806111ce57600080fd5b50565b6111ec83838360405180602001604052806000815250611dfc565b505050565b606060006111fe83611604565b905060008167ffffffffffffffff811115611242577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112705781602001602082028036833780820191505090505b50905060005b828110156112e0576112888582610ec9565b8282815181106112c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112d890614d95565b915050611276565b508092505050919050565b6112f3612550565b73ffffffffffffffffffffffffffffffffffffffff166113116117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90614910565b60405180910390fd5b80600e8190555050565b600061137b610e3e565b82106113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b3906149f0565b60405180910390fd5b600882815481106113f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b611423612550565b73ffffffffffffffffffffffffffffffffffffffff166114416117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90614910565b60405180910390fd5b80600b90805190602001906114ad929190613604565b5050565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490614870565b60405180910390fd5b80915050919050565b600b805461158390614d63565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90614d63565b80156115fc5780601f106115d1576101008083540402835291602001916115fc565b820191906000526020600020905b8154815290600101906020018083116115df57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614850565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c4612550565b73ffffffffffffffffffffffffffffffffffffffff166116e26117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90614910565b60405180910390fd5b61174260006129b7565b565b61174c612550565b73ffffffffffffffffffffffffffffffffffffffff1661176a6117ca565b73ffffffffffffffffffffffffffffffffffffffff16146117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790614910565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461180390614d63565b80601f016020809104026020016040519081016040528092919081815260200182805461182f90614d63565b801561187c5780601f106118515761010080835404028352916020019161187c565b820191906000526020600020905b81548152906001019060200180831161185f57829003601f168201915b5050505050905090565b601260029054906101000a900460ff1681565b601260009054906101000a900460ff16156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090614930565b60405180910390fd5b60006118f3610e3e565b905060008211611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90614a30565b60405180910390fd5b60105482111561197d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611974906148b0565b60405180910390fd5b600f54828261198c9190614b98565b11156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490614890565b60405180910390fd5b6119d56117ca565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b525760011515601260029054906101000a900460ff1615151415611b0157611a2c33610f6e565b611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614a10565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506011548382611abe9190614b98565b1115611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af6906147b0565b60405180910390fd5b505b81600e54611b0f9190614c1f565b341015611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b48906149b0565b60405180910390fd5b5b6000600190505b828111611bdd57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bb090614d95565b9190505550611bca338284611bc59190614b98565b612a7d565b8080611bd590614d95565b915050611b59565b505050565b611bea612550565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906147f0565b60405180910390fd5b8060056000611c65612550565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d12612550565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5791906146f3565b60405180910390a35050565b611d6b612550565b73ffffffffffffffffffffffffffffffffffffffff16611d896117ca565b73ffffffffffffffffffffffffffffffffffffffff1614611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd690614910565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b611e0d611e07612550565b8361267d565b611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e43906149d0565b60405180910390fd5b611e5884848484612a9b565b50505050565b60138181548110611e6e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600c8054611eb090614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054611edc90614d63565b8015611f295780601f10611efe57610100808354040283529160200191611f29565b820191906000526020600020905b815481529060010190602001808311611f0c57829003601f168201915b505050505081565b6060611f3c82612558565b611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614970565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561202957600d8054611fa490614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd090614d63565b801561201d5780601f10611ff25761010080835404028352916020019161201d565b820191906000526020600020905b81548152906001019060200180831161200057829003601f168201915b50505050509050612085565b6000612033612af7565b905060008151116120535760405180602001604052806000815250612081565b8061205d84612b89565b600c60405160200161207193929190614624565b6040516020818303038152906040525b9150505b919050565b612092612550565b73ffffffffffffffffffffffffffffffffffffffff166120b06117ca565b73ffffffffffffffffffffffffffffffffffffffff1614612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90614910565b60405180910390fd5b8060118190555050565b600f5481565b61211e612550565b73ffffffffffffffffffffffffffffffffffffffff1661213c6117ca565b73ffffffffffffffffffffffffffffffffffffffff1614612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990614910565b60405180910390fd5b80600c90805190602001906121a8929190613604565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612248612550565b73ffffffffffffffffffffffffffffffffffffffff166122666117ca565b73ffffffffffffffffffffffffffffffffffffffff16146122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b390614910565b60405180910390fd5b601360006122ca919061368a565b8181601391906122db9291906136ab565b505050565b6122e8612550565b73ffffffffffffffffffffffffffffffffffffffff166123066117ca565b73ffffffffffffffffffffffffffffffffffffffff161461235c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235390614910565b60405180910390fd5b80600d9080519060200190612372929190613604565b5050565b61237e612550565b73ffffffffffffffffffffffffffffffffffffffff1661239c6117ca565b73ffffffffffffffffffffffffffffffffffffffff16146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990614910565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990614770565b60405180910390fd5b61246b816129b7565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612549575061254882612d36565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612637836114c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061268882612558565b6126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be90614810565b60405180910390fd5b60006126d2836114c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061274157508373ffffffffffffffffffffffffffffffffffffffff1661272984610c0d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612752575061275181856121ac565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661277b826114c4565b73ffffffffffffffffffffffffffffffffffffffff16146127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c890614950565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612838906147d0565b60405180910390fd5b61284c838383612da0565b6128576000826125c4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a79190614c79565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128fe9190614b98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a97828260405180602001604052806000815250612eb4565b5050565b612aa684848461275b565b612ab284848484612f0f565b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae890614750565b60405180910390fd5b50505050565b6060600b8054612b0690614d63565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3290614d63565b8015612b7f5780601f10612b5457610100808354040283529160200191612b7f565b820191906000526020600020905b815481529060010190602001808311612b6257829003601f168201915b5050505050905090565b60606000821415612bd1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d31565b600082905060005b60008214612c03578080612bec90614d95565b915050600a82612bfc9190614bee565b9150612bd9565b60008167ffffffffffffffff811115612c45577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c775781602001600182028036833780820191505090505b5090505b60008514612d2a57600182612c909190614c79565b9150600a85612c9f9190614dde565b6030612cab9190614b98565b60f81b818381518110612ce7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d239190614bee565b9450612c7b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612dab8383836130a6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dee57612de9816130ab565b612e2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2c57612e2b83826130f4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7057612e6b81613261565b612eaf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612eae57612ead82826133a4565b5b5b505050565b612ebe8383613423565b612ecb6000848484612f0f565b612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614750565b60405180910390fd5b505050565b6000612f308473ffffffffffffffffffffffffffffffffffffffff166135f1565b15613099578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f59612550565b8786866040518563ffffffff1660e01b8152600401612f7b9493929190614685565b602060405180830381600087803b158015612f9557600080fd5b505af1925050508015612fc657506040513d601f19601f82011682018060405250810190612fc39190613b29565b60015b613049573d8060008114612ff6576040519150601f19603f3d011682016040523d82523d6000602084013e612ffb565b606091505b50600081511415613041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303890614750565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061309e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161310184611604565b61310b9190614c79565b90506000600760008481526020019081526020016000205490508181146131f0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506132759190614c79565b90506000600960008481526020019081526020016000205490506000600883815481106132cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613313577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613388577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006133af83611604565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348a906148d0565b60405180910390fd5b61349c81612558565b156134dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d390614790565b60405180910390fd5b6134e860008383612da0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135389190614b98565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461361090614d63565b90600052602060002090601f0160209004810192826136325760008555613679565b82601f1061364b57805160ff1916838001178555613679565b82800160010185558215613679579182015b8281111561367857825182559160200191906001019061365d565b5b509050613686919061374b565b5090565b50805460008255906000526020600020908101906136a8919061374b565b50565b82805482825590600052602060002090810192821561373a579160200282015b8281111561373957823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906136cb565b5b509050613747919061374b565b5090565b5b8082111561376457600081600090555060010161374c565b5090565b600061377b61377684614a9c565b614a6b565b90508281526020810184848401111561379357600080fd5b61379e848285614d21565b509392505050565b60006137b96137b484614acc565b614a6b565b9050828152602081018484840111156137d157600080fd5b6137dc848285614d21565b509392505050565b6000813590506137f381614edc565b92915050565b60008083601f84011261380b57600080fd5b8235905067ffffffffffffffff81111561382457600080fd5b60208301915083602082028301111561383c57600080fd5b9250929050565b60008135905061385281614ef3565b92915050565b60008135905061386781614f0a565b92915050565b60008151905061387c81614f0a565b92915050565b600082601f83011261389357600080fd5b81356138a3848260208601613768565b91505092915050565b600082601f8301126138bd57600080fd5b81356138cd8482602086016137a6565b91505092915050565b6000813590506138e581614f21565b92915050565b6000602082840312156138fd57600080fd5b600061390b848285016137e4565b91505092915050565b6000806040838503121561392757600080fd5b6000613935858286016137e4565b9250506020613946858286016137e4565b9150509250929050565b60008060006060848603121561396557600080fd5b6000613973868287016137e4565b9350506020613984868287016137e4565b9250506040613995868287016138d6565b9150509250925092565b600080600080608085870312156139b557600080fd5b60006139c3878288016137e4565b94505060206139d4878288016137e4565b93505060406139e5878288016138d6565b925050606085013567ffffffffffffffff811115613a0257600080fd5b613a0e87828801613882565b91505092959194509250565b60008060408385031215613a2d57600080fd5b6000613a3b858286016137e4565b9250506020613a4c85828601613843565b9150509250929050565b60008060408385031215613a6957600080fd5b6000613a77858286016137e4565b9250506020613a88858286016138d6565b9150509250929050565b60008060208385031215613aa557600080fd5b600083013567ffffffffffffffff811115613abf57600080fd5b613acb858286016137f9565b92509250509250929050565b600060208284031215613ae957600080fd5b6000613af784828501613843565b91505092915050565b600060208284031215613b1257600080fd5b6000613b2084828501613858565b91505092915050565b600060208284031215613b3b57600080fd5b6000613b498482850161386d565b91505092915050565b600060208284031215613b6457600080fd5b600082013567ffffffffffffffff811115613b7e57600080fd5b613b8a848285016138ac565b91505092915050565b600060208284031215613ba557600080fd5b6000613bb3848285016138d6565b91505092915050565b6000613bc88383614606565b60208301905092915050565b613bdd81614cad565b82525050565b6000613bee82614b21565b613bf88185614b4f565b9350613c0383614afc565b8060005b83811015613c34578151613c1b8882613bbc565b9750613c2683614b42565b925050600181019050613c07565b5085935050505092915050565b613c4a81614cbf565b82525050565b6000613c5b82614b2c565b613c658185614b60565b9350613c75818560208601614d30565b613c7e81614ecb565b840191505092915050565b6000613c9482614b37565b613c9e8185614b7c565b9350613cae818560208601614d30565b613cb781614ecb565b840191505092915050565b6000613ccd82614b37565b613cd78185614b8d565b9350613ce7818560208601614d30565b80840191505092915050565b60008154613d0081614d63565b613d0a8186614b8d565b94506001821660008114613d255760018114613d3657613d69565b60ff19831686528186019350613d69565b613d3f85614b0c565b60005b83811015613d6157815481890152600182019150602081019050613d42565b838801955050505b50505092915050565b6000613d7f602b83614b7c565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613de5603283614b7c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613e4b602683614b7c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613eb1601c83614b7c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613ef1601c83614b7c565b91507f6d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000613f31602483614b7c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f97601983614b7c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613fd7602c83614b7c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061403d603883614b7c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006140a3602a83614b7c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614109602983614b7c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061416f601683614b7c565b91507f6d6178204e4654206c696d6974206578636565646564000000000000000000006000830152602082019050919050565b60006141af602483614b7c565b91507f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008301527f65646564000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614215602083614b7c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614255602c83614b7c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006142bb602083614b7c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006142fb601683614b7c565b91507f74686520636f6e747261637420697320706175736564000000000000000000006000830152602082019050919050565b600061433b602983614b7c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006143a1602f83614b7c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614407602183614b7c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061446d600083614b71565b9150600082019050919050565b6000614487601283614b7c565b91507f696e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b60006144c7603183614b7c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061452d602c83614b7c565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614593601783614b7c565b91507f75736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b60006145d3601b83614b7c565b91507f6e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b61460f81614d17565b82525050565b61461e81614d17565b82525050565b60006146308286613cc2565b915061463c8285613cc2565b91506146488284613cf3565b9150819050949350505050565b600061466082614460565b9150819050919050565b600060208201905061467f6000830184613bd4565b92915050565b600060808201905061469a6000830187613bd4565b6146a76020830186613bd4565b6146b46040830185614615565b81810360608301526146c68184613c50565b905095945050505050565b600060208201905081810360008301526146eb8184613be3565b905092915050565b60006020820190506147086000830184613c41565b92915050565b600060208201905081810360008301526147288184613c89565b905092915050565b6000602082019050818103600083015261474981613d72565b9050919050565b6000602082019050818103600083015261476981613dd8565b9050919050565b6000602082019050818103600083015261478981613e3e565b9050919050565b600060208201905081810360008301526147a981613ea4565b9050919050565b600060208201905081810360008301526147c981613ee4565b9050919050565b600060208201905081810360008301526147e981613f24565b9050919050565b6000602082019050818103600083015261480981613f8a565b9050919050565b6000602082019050818103600083015261482981613fca565b9050919050565b6000602082019050818103600083015261484981614030565b9050919050565b6000602082019050818103600083015261486981614096565b9050919050565b60006020820190508181036000830152614889816140fc565b9050919050565b600060208201905081810360008301526148a981614162565b9050919050565b600060208201905081810360008301526148c9816141a2565b9050919050565b600060208201905081810360008301526148e981614208565b9050919050565b6000602082019050818103600083015261490981614248565b9050919050565b60006020820190508181036000830152614929816142ae565b9050919050565b60006020820190508181036000830152614949816142ee565b9050919050565b600060208201905081810360008301526149698161432e565b9050919050565b6000602082019050818103600083015261498981614394565b9050919050565b600060208201905081810360008301526149a9816143fa565b9050919050565b600060208201905081810360008301526149c98161447a565b9050919050565b600060208201905081810360008301526149e9816144ba565b9050919050565b60006020820190508181036000830152614a0981614520565b9050919050565b60006020820190508181036000830152614a2981614586565b9050919050565b60006020820190508181036000830152614a49816145c6565b9050919050565b6000602082019050614a656000830184614615565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614a9257614a91614e9c565b5b8060405250919050565b600067ffffffffffffffff821115614ab757614ab6614e9c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614ae757614ae6614e9c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ba382614d17565b9150614bae83614d17565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614be357614be2614e0f565b5b828201905092915050565b6000614bf982614d17565b9150614c0483614d17565b925082614c1457614c13614e3e565b5b828204905092915050565b6000614c2a82614d17565b9150614c3583614d17565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c6e57614c6d614e0f565b5b828202905092915050565b6000614c8482614d17565b9150614c8f83614d17565b925082821015614ca257614ca1614e0f565b5b828203905092915050565b6000614cb882614cf7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d4e578082015181840152602081019050614d33565b83811115614d5d576000848401525b50505050565b60006002820490506001821680614d7b57607f821691505b60208210811415614d8f57614d8e614e6d565b5b50919050565b6000614da082614d17565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dd357614dd2614e0f565b5b600182019050919050565b6000614de982614d17565b9150614df483614d17565b925082614e0457614e03614e3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614ee581614cad565b8114614ef057600080fd5b50565b614efc81614cbf565b8114614f0757600080fd5b50565b614f1381614ccb565b8114614f1e57600080fd5b50565b614f2a81614d17565b8114614f3557600080fd5b5056fea2646970667358221220ebc5013ecfb249bc21e81d32225749be5140c19ac4d3fdb7812753bec6fc6c1d64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000007676d2067656d7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447454d5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6c6f747573616c657274732e696f2f676d5f722f00000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6c6f747573616c657274732e696f2f676d5f67656d732f00

-----Decoded View---------------
Arg [0] : _name (string): gm gems
Arg [1] : _symbol (string): GEMS
Arg [2] : _initBaseURI (string): https://lotusalerts.io/gm_r/
Arg [3] : _initNotRevealedUri (string): https://lotusalerts.io/gm_gems/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 676d2067656d7300000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 47454d5300000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [9] : 68747470733a2f2f6c6f747573616c657274732e696f2f676d5f722f00000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [11] : 68747470733a2f2f6c6f747573616c657274732e696f2f676d5f67656d732f00


Deployed Bytecode Sourcemap

43113:4243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34662:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46861:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24113:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43264:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23636:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43297:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35302:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43590:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43366:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25003:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34970:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44990:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46942:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47195:158;;;:::i;:::-;;25413:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45235:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46293:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35492:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43476:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46501:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43445:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22248:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43196:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21978:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42451:94;;;;;;;;;;;;;:::i;:::-;;46379:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41800:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22723:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43509:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44045:937;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24406:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46108:65;;;;;;;;;;;;;:::i;:::-;;25669:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43548:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43403;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43222;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45589:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46181:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43331:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46605:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24772:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47045:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46735:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42700:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34662:224;34764:4;34803:35;34788:50;;;:11;:50;;;;:90;;;;34842:36;34866:11;34842:23;:36::i;:::-;34788:90;34781:97;;34662:224;;;:::o;46861:73::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46922:6:::1;46913;;:15;;;;;;;;;;;;;;;;;;46861:73:::0;:::o;22554:100::-;22608:13;22641:5;22634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22554:100;:::o;24113:221::-;24189:7;24217:16;24225:7;24217;:16::i;:::-;24209:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24302:15;:24;24318:7;24302:24;;;;;;;;;;;;;;;;;;;;;24295:31;;24113:221;;;:::o;43264:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23636:411::-;23717:13;23733:23;23748:7;23733:14;:23::i;:::-;23717:39;;23781:5;23775:11;;:2;:11;;;;23767:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23875:5;23859:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23884:37;23901:5;23908:12;:10;:12::i;:::-;23884:16;:37::i;:::-;23859:62;23837:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24018:21;24027:2;24031:7;24018:8;:21::i;:::-;23636:411;;;:::o;43297:29::-;;;;:::o;35302:113::-;35363:7;35390:10;:17;;;;35383:24;;35302:113;:::o;43590:55::-;;;;;;;;;;;;;;;;;:::o;43366:32::-;;;;:::o;25003:339::-;25198:41;25217:12;:10;:12::i;:::-;25231:7;25198:18;:41::i;:::-;25190:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25306:28;25316:4;25322:2;25326:7;25306:9;:28::i;:::-;25003:339;;;:::o;34970:256::-;35067:7;35103:23;35120:5;35103:16;:23::i;:::-;35095:5;:31;35087:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35192:12;:19;35205:5;35192:19;;;;;;;;;;;;;;;:26;35212:5;35192:26;;;;;;;;;;;;35185:33;;34970:256;;;;:::o;44990:239::-;45049:4;45067:6;45076:1;45067:10;;45062:143;45083:20;:27;;;;45079:1;:31;45062:143;;;45157:5;45130:32;;:20;45151:1;45130:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;45126:72;;;45184:4;45177:11;;;;;45126:72;45112:3;;;;;:::i;:::-;;;;45062:143;;;;45218:5;45211:12;;44990:239;;;;:::o;46942:95::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47025:6:::1;47007:15;;:24;;;;;;;;;;;;;;;;;;46942:95:::0;:::o;47195:158::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47248:12:::1;47274:10;47266:24;;47298:21;47266:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47247:77;;;47339:7;47331:16;;;::::0;::::1;;42091:1;47195:158::o:0;25413:185::-;25551:39;25568:4;25574:2;25578:7;25551:39;;;;;;;;;;;;:16;:39::i;:::-;25413:185;;;:::o;45235:348::-;45310:16;45338:23;45364:17;45374:6;45364:9;:17::i;:::-;45338:43;;45388:25;45430:15;45416:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45388:58;;45458:9;45453:103;45473:15;45469:1;:19;45453:103;;;45518:30;45538:6;45546:1;45518:19;:30::i;:::-;45504:8;45513:1;45504:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;45490:3;;;;;:::i;:::-;;;;45453:103;;;;45569:8;45562:15;;;;45235:348;;;:::o;46293:80::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46359:8:::1;46352:4;:15;;;;46293:80:::0;:::o;35492:233::-;35567:7;35603:30;:28;:30::i;:::-;35595:5;:38;35587:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35700:10;35711:5;35700:17;;;;;;;;;;;;;;;;;;;;;;;;35693:24;;35492:233;;;:::o;43476:28::-;;;;;;;;;;;;;:::o;46501:98::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46582:11:::1;46572:7;:21;;;;;;;;;;;;:::i;:::-;;46501:98:::0;:::o;43445:26::-;;;;;;;;;;;;;:::o;22248:239::-;22320:7;22340:13;22356:7;:16;22364:7;22356:16;;;;;;;;;;;;;;;;;;;;;22340:32;;22408:1;22391:19;;:5;:19;;;;22383:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22474:5;22467:12;;;22248:239;;;:::o;43196:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21978:208::-;22050:7;22095:1;22078:19;;:5;:19;;;;22070:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22162:9;:16;22172:5;22162:16;;;;;;;;;;;;;;;;22155:23;;21978:208;;;:::o;42451:94::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42516:21:::1;42534:1;42516:9;:21::i;:::-;42451:94::o:0;46379:116::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46472:17:::1;46456:13;:33;;;;46379:116:::0;:::o;41800:87::-;41846:7;41873:6;;;;;;;;;;;41866:13;;41800:87;:::o;22723:104::-;22779:13;22812:7;22805:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22723:104;:::o;43509:34::-;;;;;;;;;;;;;:::o;44045:937::-;44111:6;;;;;;;;;;;44110:7;44102:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;44151:14;44168:13;:11;:13::i;:::-;44151:30;;44210:1;44196:11;:15;44188:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44273:13;;44258:11;:28;;44250:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;44366:9;;44351:11;44342:6;:20;;;;:::i;:::-;:33;;44334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44429:7;:5;:7::i;:::-;44415:21;;:10;:21;;;44411:416;;44471:4;44452:23;;:15;;;;;;;;;;;:23;;;44449:298;;;44500:25;44514:10;44500:13;:25::i;:::-;44492:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44568:24;44595:20;:32;44616:10;44595:32;;;;;;;;;;;;;;;;44568:59;;44684:18;;44669:11;44650:16;:30;;;;:::i;:::-;:52;;44642:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;44449:298;;44785:11;44778:4;;:18;;;;:::i;:::-;44765:9;:31;;44757:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44411:416;44844:9;44856:1;44844:13;;44839:138;44864:11;44859:1;:16;44839:138;;44893:20;:32;44914:10;44893:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;44936:33;44946:10;44967:1;44958:6;:10;;;;:::i;:::-;44936:9;:33::i;:::-;44877:3;;;;;:::i;:::-;;;;44839:138;;;;44045:937;;:::o;24406:295::-;24521:12;:10;:12::i;:::-;24509:24;;:8;:24;;;;24501:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24621:8;24576:18;:32;24595:12;:10;:12::i;:::-;24576:32;;;;;;;;;;;;;;;:42;24609:8;24576:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24674:8;24645:48;;24660:12;:10;:12::i;:::-;24645:48;;;24684:8;24645:48;;;;;;:::i;:::-;;;;;;;;24406:295;;:::o;46108:65::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46163:4:::1;46152:8;;:15;;;;;;;;;;;;;;;;;;46108:65::o:0;25669:328::-;25844:41;25863:12;:10;:12::i;:::-;25877:7;25844:18;:41::i;:::-;25836:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25950:39;25964:4;25970:2;25974:7;25983:5;25950:13;:39::i;:::-;25669:328;;;;:::o;43548:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43403:::-;;;;:::o;43222:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45589:497::-;45687:13;45728:16;45736:7;45728;:16::i;:::-;45712:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45837:5;45825:17;;:8;;;;;;;;;;;:17;;;45822:62;;;45862:14;45855:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45822:62;45892:28;45923:10;:8;:10::i;:::-;45892:41;;45978:1;45953:14;45947:28;:32;:133;;;;;;;;;;;;;;;;;46015:14;46031:18;:7;:16;:18::i;:::-;46051:13;45998:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45947:133;45940:140;;;45589:497;;;;:::o;46181:104::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46273:6:::1;46252:18;:27;;;;46181:104:::0;:::o;43331:30::-;;;;:::o;46605:122::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46704:17:::1;46688:13;:33;;;;;;;;;;;;:::i;:::-;;46605:122:::0;:::o;24772:164::-;24869:4;24893:18;:25;24912:5;24893:25;;;;;;;;;;;;;;;:35;24919:8;24893:35;;;;;;;;;;;;;;;;;;;;;;;;;24886:42;;24772:164;;;;:::o;47045:144::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47127:20:::1;;47120:27;;;;:::i;:::-;47177:6;;47154:20;:29;;;;;;;:::i;:::-;;47045:144:::0;;:::o;46735:120::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46834:15:::1;46817:14;:32;;;;;;;;;;;;:::i;:::-;;46735:120:::0;:::o;42700:192::-;42031:12;:10;:12::i;:::-;42020:23;;:7;:5;:7::i;:::-;:23;;;42012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42809:1:::1;42789:22;;:8;:22;;;;42781:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42865:19;42875:8;42865:9;:19::i;:::-;42700:192:::0;:::o;21609:305::-;21711:4;21763:25;21748:40;;;:11;:40;;;;:105;;;;21820:33;21805:48;;;:11;:48;;;;21748:105;:158;;;;21870:36;21894:11;21870:23;:36::i;:::-;21748:158;21728:178;;21609:305;;;:::o;20083:98::-;20136:7;20163:10;20156:17;;20083:98;:::o;27507:127::-;27572:4;27624:1;27596:30;;:7;:16;27604:7;27596:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27589:37;;27507:127;;;:::o;31489:174::-;31591:2;31564:15;:24;31580:7;31564:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31647:7;31643:2;31609:46;;31618:23;31633:7;31618:14;:23::i;:::-;31609:46;;;;;;;;;;;;31489:174;;:::o;27801:348::-;27894:4;27919:16;27927:7;27919;:16::i;:::-;27911:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27995:13;28011:23;28026:7;28011:14;:23::i;:::-;27995:39;;28064:5;28053:16;;:7;:16;;;:51;;;;28097:7;28073:31;;:20;28085:7;28073:11;:20::i;:::-;:31;;;28053:51;:87;;;;28108:32;28125:5;28132:7;28108:16;:32::i;:::-;28053:87;28045:96;;;27801:348;;;;:::o;30793:578::-;30952:4;30925:31;;:23;30940:7;30925:14;:23::i;:::-;:31;;;30917:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31035:1;31021:16;;:2;:16;;;;31013:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31091:39;31112:4;31118:2;31122:7;31091:20;:39::i;:::-;31195:29;31212:1;31216:7;31195:8;:29::i;:::-;31256:1;31237:9;:15;31247:4;31237:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31285:1;31268:9;:13;31278:2;31268:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31316:2;31297:7;:16;31305:7;31297:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31355:7;31351:2;31336:27;;31345:4;31336:27;;;;;;;;;;;;30793:578;;;:::o;42900:173::-;42956:16;42975:6;;;;;;;;;;;42956:25;;43001:8;42992:6;;:17;;;;;;;;;;;;;;;;;;43056:8;43025:40;;43046:8;43025:40;;;;;;;;;;;;42900:173;;:::o;28491:110::-;28567:26;28577:2;28581:7;28567:26;;;;;;;;;;;;:9;:26::i;:::-;28491:110;;:::o;26879:315::-;27036:28;27046:4;27052:2;27056:7;27036:9;:28::i;:::-;27083:48;27106:4;27112:2;27116:7;27125:5;27083:22;:48::i;:::-;27075:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26879:315;;;;:::o;43924:102::-;43984:13;44013:7;44006:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43924:102;:::o;7915:723::-;7971:13;8201:1;8192:5;:10;8188:53;;;8219:10;;;;;;;;;;;;;;;;;;;;;8188:53;8251:12;8266:5;8251:20;;8282:14;8307:78;8322:1;8314:4;:9;8307:78;;8340:8;;;;;:::i;:::-;;;;8371:2;8363:10;;;;;:::i;:::-;;;8307:78;;;8395:19;8427:6;8417:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8395:39;;8445:154;8461:1;8452:5;:10;8445:154;;8489:1;8479:11;;;;;:::i;:::-;;;8556:2;8548:5;:10;;;;:::i;:::-;8535:2;:24;;;;:::i;:::-;8522:39;;8505:6;8512;8505:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;8585:2;8576:11;;;;;:::i;:::-;;;8445:154;;;8623:6;8609:21;;;;;7915:723;;;;:::o;7440:157::-;7525:4;7564:25;7549:40;;;:11;:40;;;;7542:47;;7440:157;;;:::o;36338:589::-;36482:45;36509:4;36515:2;36519:7;36482:26;:45::i;:::-;36560:1;36544:18;;:4;:18;;;36540:187;;;36579:40;36611:7;36579:31;:40::i;:::-;36540:187;;;36649:2;36641:10;;:4;:10;;;36637:90;;36668:47;36701:4;36707:7;36668:32;:47::i;:::-;36637:90;36540:187;36755:1;36741:16;;:2;:16;;;36737:183;;;36774:45;36811:7;36774:36;:45::i;:::-;36737:183;;;36847:4;36841:10;;:2;:10;;;36837:83;;36868:40;36896:2;36900:7;36868:27;:40::i;:::-;36837:83;36737:183;36338:589;;;:::o;28828:321::-;28958:18;28964:2;28968:7;28958:5;:18::i;:::-;29009:54;29040:1;29044:2;29048:7;29057:5;29009:22;:54::i;:::-;28987:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28828:321;;;:::o;32228:799::-;32383:4;32404:15;:2;:13;;;:15::i;:::-;32400:620;;;32456:2;32440:36;;;32477:12;:10;:12::i;:::-;32491:4;32497:7;32506:5;32440:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32436:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32699:1;32682:6;:13;:18;32678:272;;;32725:60;;;;;;;;;;:::i;:::-;;;;;;;;32678:272;32900:6;32894:13;32885:6;32881:2;32877:15;32870:38;32436:529;32573:41;;;32563:51;;;:6;:51;;;;32556:58;;;;;32400:620;33004:4;32997:11;;32228:799;;;;;;;:::o;33599:126::-;;;;:::o;37650:164::-;37754:10;:17;;;;37727:15;:24;37743:7;37727:24;;;;;;;;;;;:44;;;;37782:10;37798:7;37782:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37650:164;:::o;38441:988::-;38707:22;38757:1;38732:22;38749:4;38732:16;:22::i;:::-;:26;;;;:::i;:::-;38707:51;;38769:18;38790:17;:26;38808:7;38790:26;;;;;;;;;;;;38769:47;;38937:14;38923:10;:28;38919:328;;38968:19;38990:12;:18;39003:4;38990:18;;;;;;;;;;;;;;;:34;39009:14;38990:34;;;;;;;;;;;;38968:56;;39074:11;39041:12;:18;39054:4;39041:18;;;;;;;;;;;;;;;:30;39060:10;39041:30;;;;;;;;;;;:44;;;;39191:10;39158:17;:30;39176:11;39158:30;;;;;;;;;;;:43;;;;38919:328;;39343:17;:26;39361:7;39343:26;;;;;;;;;;;39336:33;;;39387:12;:18;39400:4;39387:18;;;;;;;;;;;;;;;:34;39406:14;39387:34;;;;;;;;;;;39380:41;;;38441:988;;;;:::o;39724:1079::-;39977:22;40022:1;40002:10;:17;;;;:21;;;;:::i;:::-;39977:46;;40034:18;40055:15;:24;40071:7;40055:24;;;;;;;;;;;;40034:45;;40406:19;40428:10;40439:14;40428:26;;;;;;;;;;;;;;;;;;;;;;;;40406:48;;40492:11;40467:10;40478;40467:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40603:10;40572:15;:28;40588:11;40572:28;;;;;;;;;;;:41;;;;40744:15;:24;40760:7;40744:24;;;;;;;;;;;40737:31;;;40779:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39724:1079;;;;:::o;37228:221::-;37313:14;37330:20;37347:2;37330:16;:20::i;:::-;37313:37;;37388:7;37361:12;:16;37374:2;37361:16;;;;;;;;;;;;;;;:24;37378:6;37361:24;;;;;;;;;;;:34;;;;37435:6;37406:17;:26;37424:7;37406:26;;;;;;;;;;;:35;;;;37228:221;;;:::o;29485:382::-;29579:1;29565:16;;:2;:16;;;;29557:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29638:16;29646:7;29638;:16::i;:::-;29637:17;29629:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29700:45;29729:1;29733:2;29737:7;29700:20;:45::i;:::-;29775:1;29758:9;:13;29768:2;29758:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29806:2;29787:7;:16;29795:7;29787:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29851:7;29847:2;29826:33;;29843:1;29826:33;;;;;;;;;;;;29485:382;;:::o;10440:387::-;10500:4;10708:12;10775:7;10763:20;10755:28;;10818:1;10811:4;:8;10804:15;;;10440:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:425::-;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5501:1;5490:9;5486:17;5473:31;5531:18;5523:6;5520:30;5517:2;;;5563:1;5560;5553:12;5517:2;5599:80;5671:7;5662:6;5651:9;5647:22;5599:80;:::i;:::-;5581:98;;;;5444:245;5372:324;;;;;:::o;5702:256::-;;5807:2;5795:9;5786:7;5782:23;5778:32;5775:2;;;5823:1;5820;5813:12;5775:2;5866:1;5891:50;5933:7;5924:6;5913:9;5909:22;5891:50;:::i;:::-;5881:60;;5837:114;5765:193;;;;:::o;5964:260::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:52;6199:7;6190:6;6179:9;6175:22;6155:52;:::i;:::-;6145:62;;6101:116;6029:195;;;;:::o;6230:282::-;;6348:2;6336:9;6327:7;6323:23;6319:32;6316:2;;;6364:1;6361;6354:12;6316:2;6407:1;6432:63;6487:7;6478:6;6467:9;6463:22;6432:63;:::i;:::-;6422:73;;6378:127;6306:206;;;;:::o;6518:375::-;;6636:2;6624:9;6615:7;6611:23;6607:32;6604:2;;;6652:1;6649;6642:12;6604:2;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:2;;;6785:1;6782;6775:12;6739:2;6813:63;6868:7;6859:6;6848:9;6844:22;6813:63;:::i;:::-;6803:73;;6666:220;6594:299;;;;:::o;6899:262::-;;7007:2;6995:9;6986:7;6982:23;6978:32;6975:2;;;7023:1;7020;7013:12;6975:2;7066:1;7091:53;7136:7;7127:6;7116:9;7112:22;7091:53;:::i;:::-;7081:63;;7037:117;6965:196;;;;:::o;7167:179::-;;7257:46;7299:3;7291:6;7257:46;:::i;:::-;7335:4;7330:3;7326:14;7312:28;;7247:99;;;;:::o;7352:118::-;7439:24;7457:5;7439:24;:::i;:::-;7434:3;7427:37;7417:53;;:::o;7506:732::-;;7654:54;7702:5;7654:54;:::i;:::-;7724:86;7803:6;7798:3;7724:86;:::i;:::-;7717:93;;7834:56;7884:5;7834:56;:::i;:::-;7913:7;7944:1;7929:284;7954:6;7951:1;7948:13;7929:284;;;8030:6;8024:13;8057:63;8116:3;8101:13;8057:63;:::i;:::-;8050:70;;8143:60;8196:6;8143:60;:::i;:::-;8133:70;;7989:224;7976:1;7973;7969:9;7964:14;;7929:284;;;7933:14;8229:3;8222:10;;7630:608;;;;;;;:::o;8244:109::-;8325:21;8340:5;8325:21;:::i;:::-;8320:3;8313:34;8303:50;;:::o;8359:360::-;;8473:38;8505:5;8473:38;:::i;:::-;8527:70;8590:6;8585:3;8527:70;:::i;:::-;8520:77;;8606:52;8651:6;8646:3;8639:4;8632:5;8628:16;8606:52;:::i;:::-;8683:29;8705:6;8683:29;:::i;:::-;8678:3;8674:39;8667:46;;8449:270;;;;;:::o;8725:364::-;;8841:39;8874:5;8841:39;:::i;:::-;8896:71;8960:6;8955:3;8896:71;:::i;:::-;8889:78;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:29;9075:6;9053:29;:::i;:::-;9048:3;9044:39;9037:46;;8817:272;;;;;:::o;9095:377::-;;9229:39;9262:5;9229:39;:::i;:::-;9284:89;9366:6;9361:3;9284:89;:::i;:::-;9277:96;;9382:52;9427:6;9422:3;9415:4;9408:5;9404:16;9382:52;:::i;:::-;9459:6;9454:3;9450:16;9443:23;;9205:267;;;;;:::o;9502:845::-;;9642:5;9636:12;9671:36;9697:9;9671:36;:::i;:::-;9723:89;9805:6;9800:3;9723:89;:::i;:::-;9716:96;;9843:1;9832:9;9828:17;9859:1;9854:137;;;;10005:1;10000:341;;;;9821:520;;9854:137;9938:4;9934:9;9923;9919:25;9914:3;9907:38;9974:6;9969:3;9965:16;9958:23;;9854:137;;10000:341;10067:38;10099:5;10067:38;:::i;:::-;10127:1;10141:154;10155:6;10152:1;10149:13;10141:154;;;10229:7;10223:14;10219:1;10214:3;10210:11;10203:35;10279:1;10270:7;10266:15;10255:26;;10177:4;10174:1;10170:12;10165:17;;10141:154;;;10324:6;10319:3;10315:16;10308:23;;10007:334;;9821:520;;9609:738;;;;;;:::o;10353:375::-;;10516:67;10580:2;10575:3;10516:67;:::i;:::-;10509:74;;10613:34;10609:1;10604:3;10600:11;10593:55;10679:13;10674:2;10669:3;10665:12;10658:35;10719:2;10714:3;10710:12;10703:19;;10499:229;;;:::o;10734:382::-;;10897:67;10961:2;10956:3;10897:67;:::i;:::-;10890:74;;10994:34;10990:1;10985:3;10981:11;10974:55;11060:20;11055:2;11050:3;11046:12;11039:42;11107:2;11102:3;11098:12;11091:19;;10880:236;;;:::o;11122:370::-;;11285:67;11349:2;11344:3;11285:67;:::i;:::-;11278:74;;11382:34;11378:1;11373:3;11369:11;11362:55;11448:8;11443:2;11438:3;11434:12;11427:30;11483:2;11478:3;11474:12;11467:19;;11268:224;;;:::o;11498:326::-;;11661:67;11725:2;11720:3;11661:67;:::i;:::-;11654:74;;11758:30;11754:1;11749:3;11745:11;11738:51;11815:2;11810:3;11806:12;11799:19;;11644:180;;;:::o;11830:326::-;;11993:67;12057:2;12052:3;11993:67;:::i;:::-;11986:74;;12090:30;12086:1;12081:3;12077:11;12070:51;12147:2;12142:3;12138:12;12131:19;;11976:180;;;:::o;12162:368::-;;12325:67;12389:2;12384:3;12325:67;:::i;:::-;12318:74;;12422:34;12418:1;12413:3;12409:11;12402:55;12488:6;12483:2;12478:3;12474:12;12467:28;12521:2;12516:3;12512:12;12505:19;;12308:222;;;:::o;12536:323::-;;12699:67;12763:2;12758:3;12699:67;:::i;:::-;12692:74;;12796:27;12792:1;12787:3;12783:11;12776:48;12850:2;12845:3;12841:12;12834:19;;12682:177;;;:::o;12865:376::-;;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13125:34;13121:1;13116:3;13112:11;13105:55;13191:14;13186:2;13181:3;13177:12;13170:36;13232:2;13227:3;13223:12;13216:19;;13011:230;;;:::o;13247:388::-;;13410:67;13474:2;13469:3;13410:67;:::i;:::-;13403:74;;13507:34;13503:1;13498:3;13494:11;13487:55;13573:26;13568:2;13563:3;13559:12;13552:48;13626:2;13621:3;13617:12;13610:19;;13393:242;;;:::o;13641:374::-;;13804:67;13868:2;13863:3;13804:67;:::i;:::-;13797:74;;13901:34;13897:1;13892:3;13888:11;13881:55;13967:12;13962:2;13957:3;13953:12;13946:34;14006:2;14001:3;13997:12;13990:19;;13787:228;;;:::o;14021:373::-;;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14281:34;14277:1;14272:3;14268:11;14261:55;14347:11;14342:2;14337:3;14333:12;14326:33;14385:2;14380:3;14376:12;14369:19;;14167:227;;;:::o;14400:320::-;;14563:67;14627:2;14622:3;14563:67;:::i;:::-;14556:74;;14660:24;14656:1;14651:3;14647:11;14640:45;14711:2;14706:3;14702:12;14695:19;;14546:174;;;:::o;14726:368::-;;14889:67;14953:2;14948:3;14889:67;:::i;:::-;14882:74;;14986:34;14982:1;14977:3;14973:11;14966:55;15052:6;15047:2;15042:3;15038:12;15031:28;15085:2;15080:3;15076:12;15069:19;;14872:222;;;:::o;15100:330::-;;15263:67;15327:2;15322:3;15263:67;:::i;:::-;15256:74;;15360:34;15356:1;15351:3;15347:11;15340:55;15421:2;15416:3;15412:12;15405:19;;15246:184;;;:::o;15436:376::-;;15599:67;15663:2;15658:3;15599:67;:::i;:::-;15592:74;;15696:34;15692:1;15687:3;15683:11;15676:55;15762:14;15757:2;15752:3;15748:12;15741:36;15803:2;15798:3;15794:12;15787:19;;15582:230;;;:::o;15818:330::-;;15981:67;16045:2;16040:3;15981:67;:::i;:::-;15974:74;;16078:34;16074:1;16069:3;16065:11;16058:55;16139:2;16134:3;16130:12;16123:19;;15964:184;;;:::o;16154:320::-;;16317:67;16381:2;16376:3;16317:67;:::i;:::-;16310:74;;16414:24;16410:1;16405:3;16401:11;16394:45;16465:2;16460:3;16456:12;16449:19;;16300:174;;;:::o;16480:373::-;;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16740:34;16736:1;16731:3;16727:11;16720:55;16806:11;16801:2;16796:3;16792:12;16785:33;16844:2;16839:3;16835:12;16828:19;;16626:227;;;:::o;16859:379::-;;17022:67;17086:2;17081:3;17022:67;:::i;:::-;17015:74;;17119:34;17115:1;17110:3;17106:11;17099:55;17185:17;17180:2;17175:3;17171:12;17164:39;17229:2;17224:3;17220:12;17213:19;;17005:233;;;:::o;17244:365::-;;17407:67;17471:2;17466:3;17407:67;:::i;:::-;17400:74;;17504:34;17500:1;17495:3;17491:11;17484:55;17570:3;17565:2;17560:3;17556:12;17549:25;17600:2;17595:3;17591:12;17584:19;;17390:219;;;:::o;17615:297::-;;17795:83;17876:1;17871:3;17795:83;:::i;:::-;17788:90;;17904:1;17899:3;17895:11;17888:18;;17778:134;;;:::o;17918:316::-;;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18178:20;18174:1;18169:3;18165:11;18158:41;18225:2;18220:3;18216:12;18209:19;;18064:170;;;:::o;18240:381::-;;18403:67;18467:2;18462:3;18403:67;:::i;:::-;18396:74;;18500:34;18496:1;18491:3;18487:11;18480:55;18566:19;18561:2;18556:3;18552:12;18545:41;18612:2;18607:3;18603:12;18596:19;;18386:235;;;:::o;18627:376::-;;18790:67;18854:2;18849:3;18790:67;:::i;:::-;18783:74;;18887:34;18883:1;18878:3;18874:11;18867:55;18953:14;18948:2;18943:3;18939:12;18932:36;18994:2;18989:3;18985:12;18978:19;;18773:230;;;:::o;19009:321::-;;19172:67;19236:2;19231:3;19172:67;:::i;:::-;19165:74;;19269:25;19265:1;19260:3;19256:11;19249:46;19321:2;19316:3;19312:12;19305:19;;19155:175;;;:::o;19336:325::-;;19499:67;19563:2;19558:3;19499:67;:::i;:::-;19492:74;;19596:29;19592:1;19587:3;19583:11;19576:50;19652:2;19647:3;19643:12;19636:19;;19482:179;;;:::o;19667:108::-;19744:24;19762:5;19744:24;:::i;:::-;19739:3;19732:37;19722:53;;:::o;19781:118::-;19868:24;19886:5;19868:24;:::i;:::-;19863:3;19856:37;19846:53;;:::o;19905:589::-;;20152:95;20243:3;20234:6;20152:95;:::i;:::-;20145:102;;20264:95;20355:3;20346:6;20264:95;:::i;:::-;20257:102;;20376:92;20464:3;20455:6;20376:92;:::i;:::-;20369:99;;20485:3;20478:10;;20134:360;;;;;;:::o;20500:379::-;;20706:147;20849:3;20706:147;:::i;:::-;20699:154;;20870:3;20863:10;;20688:191;;;:::o;20885:222::-;;21016:2;21005:9;21001:18;20993:26;;21029:71;21097:1;21086:9;21082:17;21073:6;21029:71;:::i;:::-;20983:124;;;;:::o;21113:640::-;;21346:3;21335:9;21331:19;21323:27;;21360:71;21428:1;21417:9;21413:17;21404:6;21360:71;:::i;:::-;21441:72;21509:2;21498:9;21494:18;21485:6;21441:72;:::i;:::-;21523;21591:2;21580:9;21576:18;21567:6;21523:72;:::i;:::-;21642:9;21636:4;21632:20;21627:2;21616:9;21612:18;21605:48;21670:76;21741:4;21732:6;21670:76;:::i;:::-;21662:84;;21313:440;;;;;;;:::o;21759:373::-;;21940:2;21929:9;21925:18;21917:26;;21989:9;21983:4;21979:20;21975:1;21964:9;21960:17;21953:47;22017:108;22120:4;22111:6;22017:108;:::i;:::-;22009:116;;21907:225;;;;:::o;22138:210::-;;22263:2;22252:9;22248:18;22240:26;;22276:65;22338:1;22327:9;22323:17;22314:6;22276:65;:::i;:::-;22230:118;;;;:::o;22354:313::-;;22505:2;22494:9;22490:18;22482:26;;22554:9;22548:4;22544:20;22540:1;22529:9;22525:17;22518:47;22582:78;22655:4;22646:6;22582:78;:::i;:::-;22574:86;;22472:195;;;;:::o;22673:419::-;;22877:2;22866:9;22862:18;22854:26;;22926:9;22920:4;22916:20;22912:1;22901:9;22897:17;22890:47;22954:131;23080:4;22954:131;:::i;:::-;22946:139;;22844:248;;;:::o;23098:419::-;;23302:2;23291:9;23287:18;23279:26;;23351:9;23345:4;23341:20;23337:1;23326:9;23322:17;23315:47;23379:131;23505:4;23379:131;:::i;:::-;23371:139;;23269:248;;;:::o;23523:419::-;;23727:2;23716:9;23712:18;23704:26;;23776:9;23770:4;23766:20;23762:1;23751:9;23747:17;23740:47;23804:131;23930:4;23804:131;:::i;:::-;23796:139;;23694:248;;;:::o;23948:419::-;;24152:2;24141:9;24137:18;24129:26;;24201:9;24195:4;24191:20;24187:1;24176:9;24172:17;24165:47;24229:131;24355:4;24229:131;:::i;:::-;24221:139;;24119:248;;;:::o;24373:419::-;;24577:2;24566:9;24562:18;24554:26;;24626:9;24620:4;24616:20;24612:1;24601:9;24597:17;24590:47;24654:131;24780:4;24654:131;:::i;:::-;24646:139;;24544:248;;;:::o;24798:419::-;;25002:2;24991:9;24987:18;24979:26;;25051:9;25045:4;25041:20;25037:1;25026:9;25022:17;25015:47;25079:131;25205:4;25079:131;:::i;:::-;25071:139;;24969:248;;;:::o;25223:419::-;;25427:2;25416:9;25412:18;25404:26;;25476:9;25470:4;25466:20;25462:1;25451:9;25447:17;25440:47;25504:131;25630:4;25504:131;:::i;:::-;25496:139;;25394:248;;;:::o;25648:419::-;;25852:2;25841:9;25837:18;25829:26;;25901:9;25895:4;25891:20;25887:1;25876:9;25872:17;25865:47;25929:131;26055:4;25929:131;:::i;:::-;25921:139;;25819:248;;;:::o;26073:419::-;;26277:2;26266:9;26262:18;26254:26;;26326:9;26320:4;26316:20;26312:1;26301:9;26297:17;26290:47;26354:131;26480:4;26354:131;:::i;:::-;26346:139;;26244:248;;;:::o;26498:419::-;;26702:2;26691:9;26687:18;26679:26;;26751:9;26745:4;26741:20;26737:1;26726:9;26722:17;26715:47;26779:131;26905:4;26779:131;:::i;:::-;26771:139;;26669:248;;;:::o;26923:419::-;;27127:2;27116:9;27112:18;27104:26;;27176:9;27170:4;27166:20;27162:1;27151:9;27147:17;27140:47;27204:131;27330:4;27204:131;:::i;:::-;27196:139;;27094:248;;;:::o;27348:419::-;;27552:2;27541:9;27537:18;27529:26;;27601:9;27595:4;27591:20;27587:1;27576:9;27572:17;27565:47;27629:131;27755:4;27629:131;:::i;:::-;27621:139;;27519:248;;;:::o;27773:419::-;;27977:2;27966:9;27962:18;27954:26;;28026:9;28020:4;28016:20;28012:1;28001:9;27997:17;27990:47;28054:131;28180:4;28054:131;:::i;:::-;28046:139;;27944:248;;;:::o;28198:419::-;;28402:2;28391:9;28387:18;28379:26;;28451:9;28445:4;28441:20;28437:1;28426:9;28422:17;28415:47;28479:131;28605:4;28479:131;:::i;:::-;28471:139;;28369:248;;;:::o;28623:419::-;;28827:2;28816:9;28812:18;28804:26;;28876:9;28870:4;28866:20;28862:1;28851:9;28847:17;28840:47;28904:131;29030:4;28904:131;:::i;:::-;28896:139;;28794:248;;;:::o;29048:419::-;;29252:2;29241:9;29237:18;29229:26;;29301:9;29295:4;29291:20;29287:1;29276:9;29272:17;29265:47;29329:131;29455:4;29329:131;:::i;:::-;29321:139;;29219:248;;;:::o;29473:419::-;;29677:2;29666:9;29662:18;29654:26;;29726:9;29720:4;29716:20;29712:1;29701:9;29697:17;29690:47;29754:131;29880:4;29754:131;:::i;:::-;29746:139;;29644:248;;;:::o;29898:419::-;;30102:2;30091:9;30087:18;30079:26;;30151:9;30145:4;30141:20;30137:1;30126:9;30122:17;30115:47;30179:131;30305:4;30179:131;:::i;:::-;30171:139;;30069:248;;;:::o;30323:419::-;;30527:2;30516:9;30512:18;30504:26;;30576:9;30570:4;30566:20;30562:1;30551:9;30547:17;30540:47;30604:131;30730:4;30604:131;:::i;:::-;30596:139;;30494:248;;;:::o;30748:419::-;;30952:2;30941:9;30937:18;30929:26;;31001:9;30995:4;30991:20;30987:1;30976:9;30972:17;30965:47;31029:131;31155:4;31029:131;:::i;:::-;31021:139;;30919:248;;;:::o;31173:419::-;;31377:2;31366:9;31362:18;31354:26;;31426:9;31420:4;31416:20;31412:1;31401:9;31397:17;31390:47;31454:131;31580:4;31454:131;:::i;:::-;31446:139;;31344:248;;;:::o;31598:419::-;;31802:2;31791:9;31787:18;31779:26;;31851:9;31845:4;31841:20;31837:1;31826:9;31822:17;31815:47;31879:131;32005:4;31879:131;:::i;:::-;31871:139;;31769:248;;;:::o;32023:419::-;;32227:2;32216:9;32212:18;32204:26;;32276:9;32270:4;32266:20;32262:1;32251:9;32247:17;32240:47;32304:131;32430:4;32304:131;:::i;:::-;32296:139;;32194:248;;;:::o;32448:419::-;;32652:2;32641:9;32637:18;32629:26;;32701:9;32695:4;32691:20;32687:1;32676:9;32672:17;32665:47;32729:131;32855:4;32729:131;:::i;:::-;32721:139;;32619:248;;;:::o;32873:419::-;;33077:2;33066:9;33062:18;33054:26;;33126:9;33120:4;33116:20;33112:1;33101:9;33097:17;33090:47;33154:131;33280:4;33154:131;:::i;:::-;33146:139;;33044:248;;;:::o;33298:222::-;;33429:2;33418:9;33414:18;33406:26;;33442:71;33510:1;33499:9;33495:17;33486:6;33442:71;:::i;:::-;33396:124;;;;:::o;33526:283::-;;33592:2;33586:9;33576:19;;33634:4;33626:6;33622:17;33741:6;33729:10;33726:22;33705:18;33693:10;33690:34;33687:62;33684:2;;;33752:18;;:::i;:::-;33684:2;33792:10;33788:2;33781:22;33566:243;;;;:::o;33815:331::-;;33966:18;33958:6;33955:30;33952:2;;;33988:18;;:::i;:::-;33952:2;34073:4;34069:9;34062:4;34054:6;34050:17;34046:33;34038:41;;34134:4;34128;34124:15;34116:23;;33881:265;;;:::o;34152:332::-;;34304:18;34296:6;34293:30;34290:2;;;34326:18;;:::i;:::-;34290:2;34411:4;34407:9;34400:4;34392:6;34388:17;34384:33;34376:41;;34472:4;34466;34462:15;34454:23;;34219:265;;;:::o;34490:132::-;;34580:3;34572:11;;34610:4;34605:3;34601:14;34593:22;;34562:60;;;:::o;34628:141::-;;34700:3;34692:11;;34723:3;34720:1;34713:14;34757:4;34754:1;34744:18;34736:26;;34682:87;;;:::o;34775:114::-;;34876:5;34870:12;34860:22;;34849:40;;;:::o;34895:98::-;;34980:5;34974:12;34964:22;;34953:40;;;:::o;34999:99::-;;35085:5;35079:12;35069:22;;35058:40;;;:::o;35104:113::-;;35206:4;35201:3;35197:14;35189:22;;35179:38;;;:::o;35223:184::-;;35356:6;35351:3;35344:19;35396:4;35391:3;35387:14;35372:29;;35334:73;;;;:::o;35413:168::-;;35530:6;35525:3;35518:19;35570:4;35565:3;35561:14;35546:29;;35508:73;;;;:::o;35587:147::-;;35725:3;35710:18;;35700:34;;;;:::o;35740:169::-;;35858:6;35853:3;35846:19;35898:4;35893:3;35889:14;35874:29;;35836:73;;;;:::o;35915:148::-;;36054:3;36039:18;;36029:34;;;;:::o;36069:305::-;;36128:20;36146:1;36128:20;:::i;:::-;36123:25;;36162:20;36180:1;36162:20;:::i;:::-;36157:25;;36316:1;36248:66;36244:74;36241:1;36238:81;36235:2;;;36322:18;;:::i;:::-;36235:2;36366:1;36363;36359:9;36352:16;;36113:261;;;;:::o;36380:185::-;;36437:20;36455:1;36437:20;:::i;:::-;36432:25;;36471:20;36489:1;36471:20;:::i;:::-;36466:25;;36510:1;36500:2;;36515:18;;:::i;:::-;36500:2;36557:1;36554;36550:9;36545:14;;36422:143;;;;:::o;36571:348::-;;36634:20;36652:1;36634:20;:::i;:::-;36629:25;;36668:20;36686:1;36668:20;:::i;:::-;36663:25;;36856:1;36788:66;36784:74;36781:1;36778:81;36773:1;36766:9;36759:17;36755:105;36752:2;;;36863:18;;:::i;:::-;36752:2;36911:1;36908;36904:9;36893:20;;36619:300;;;;:::o;36925:191::-;;36985:20;37003:1;36985:20;:::i;:::-;36980:25;;37019:20;37037:1;37019:20;:::i;:::-;37014:25;;37058:1;37055;37052:8;37049:2;;;37063:18;;:::i;:::-;37049:2;37108:1;37105;37101:9;37093:17;;36970:146;;;;:::o;37122:96::-;;37188:24;37206:5;37188:24;:::i;:::-;37177:35;;37167:51;;;:::o;37224:90::-;;37301:5;37294:13;37287:21;37276:32;;37266:48;;;:::o;37320:149::-;;37396:66;37389:5;37385:78;37374:89;;37364:105;;;:::o;37475:126::-;;37552:42;37545:5;37541:54;37530:65;;37520:81;;;:::o;37607:77::-;;37673:5;37662:16;;37652:32;;;:::o;37690:154::-;37774:6;37769:3;37764;37751:30;37836:1;37827:6;37822:3;37818:16;37811:27;37741:103;;;:::o;37850:307::-;37918:1;37928:113;37942:6;37939:1;37936:13;37928:113;;;38027:1;38022:3;38018:11;38012:18;38008:1;38003:3;37999:11;37992:39;37964:2;37961:1;37957:10;37952:15;;37928:113;;;38059:6;38056:1;38053:13;38050:2;;;38139:1;38130:6;38125:3;38121:16;38114:27;38050:2;37899:258;;;;:::o;38163:320::-;;38244:1;38238:4;38234:12;38224:22;;38291:1;38285:4;38281:12;38312:18;38302:2;;38368:4;38360:6;38356:17;38346:27;;38302:2;38430;38422:6;38419:14;38399:18;38396:38;38393:2;;;38449:18;;:::i;:::-;38393:2;38214:269;;;;:::o;38489:233::-;;38551:24;38569:5;38551:24;:::i;:::-;38542:33;;38597:66;38590:5;38587:77;38584:2;;;38667:18;;:::i;:::-;38584:2;38714:1;38707:5;38703:13;38696:20;;38532:190;;;:::o;38728:176::-;;38777:20;38795:1;38777:20;:::i;:::-;38772:25;;38811:20;38829:1;38811:20;:::i;:::-;38806:25;;38850:1;38840:2;;38855:18;;:::i;:::-;38840:2;38896:1;38893;38889:9;38884:14;;38762:142;;;;:::o;38910:180::-;38958:77;38955:1;38948:88;39055:4;39052:1;39045:15;39079:4;39076:1;39069:15;39096:180;39144:77;39141:1;39134:88;39241:4;39238:1;39231:15;39265:4;39262:1;39255:15;39282:180;39330:77;39327:1;39320:88;39427:4;39424:1;39417:15;39451:4;39448:1;39441:15;39468:180;39516:77;39513:1;39506:88;39613:4;39610:1;39603:15;39637:4;39634:1;39627:15;39654:102;;39746:2;39742:7;39737:2;39730:5;39726:14;39722:28;39712:38;;39702:54;;;:::o;39762:122::-;39835:24;39853:5;39835:24;:::i;:::-;39828:5;39825:35;39815:2;;39874:1;39871;39864:12;39815:2;39805:79;:::o;39890:116::-;39960:21;39975:5;39960:21;:::i;:::-;39953:5;39950:32;39940:2;;39996:1;39993;39986:12;39940:2;39930:76;:::o;40012:120::-;40084:23;40101:5;40084:23;:::i;:::-;40077:5;40074:34;40064:2;;40122:1;40119;40112:12;40064:2;40054:78;:::o;40138:122::-;40211:24;40229:5;40211:24;:::i;:::-;40204:5;40201:35;40191:2;;40250:1;40247;40240:12;40191:2;40181:79;:::o

Swarm Source

ipfs://ebc5013ecfb249bc21e81d32225749be5140c19ac4d3fdb7812753bec6fc6c1d
Loading...
Loading
Loading...
Loading
[ 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.