ETH Price: $3,239.00 (-1.09%)
Gas: 4 Gwei

Token

Kewl Club (KEWL)
 

Overview

Max Total Supply

190 KEWL

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 KEWL
0xb78faaB3FC6AB3691aAddF94847cA53481e6410E
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:
KewlClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-29
*/

// Sources flattened with hardhat v2.6.4 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

/**
 * @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/[email protected]

/**
 * @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/[email protected]

/**
 * @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/token/ERC721/extensions/[email protected]

/**
 * @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/utils/[email protected]

/**
 * @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/utils/[email protected]

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

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


// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

/**
 * @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/[email protected]

/**
 * @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/token/ERC721/extensions/[email protected]

/**
 * @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/[email protected]

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


// File contracts/KewlClub.sol

contract KewlClub is ERC721Enumerable, Ownable {
    uint256 private constant price = 0.2 ether;
    string public uri;

    constructor(string memory _uri) ERC721("Kewl Club", "KEWL") {
        setUri(_uri);
    }

    function safeMint(uint256 amount) external payable {
        require(amount < 11, "KewlClub: can mint up to 10");
        require(msg.value >= price * amount, "KewlClub: insufficient ether");
        uint256 supply = totalSupply();
        require(supply + amount < 501, "KewlClub: max supply reached");

        for (uint256 i = 1; i <= amount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function setUri(string memory _uri) public onlyOwner {
        uri = _uri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "KewlClub: URI query for nonexistent token");
        return uri;
    }

    function withdraw(address to) external onlyOwner {
        payable(to).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003e7e38038062003e7e8339818101604052810190620000379190620003e0565b6040518060400160405280600981526020017f4b65776c20436c756200000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b45574c000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620002b2565b508060019080519060200190620000d4929190620002b2565b505050620000f7620000eb6200010f60201b60201c565b6200011760201b60201c565b6200010881620001dd60201b60201c565b5062000638565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ed6200010f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002136200028860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002639062000458565b60405180910390fd5b80600b908051906020019062000284929190620002b2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c09062000520565b90600052602060002090601f016020900481019282620002e4576000855562000330565b82601f10620002ff57805160ff191683800117855562000330565b8280016001018555821562000330579182015b828111156200032f57825182559160200191906001019062000312565b5b5090506200033f919062000343565b5090565b5b808211156200035e57600081600090555060010162000344565b5090565b6000620003796200037384620004a3565b6200047a565b905082815260208101848484011115620003985762000397620005ef565b5b620003a5848285620004ea565b509392505050565b600082601f830112620003c557620003c4620005ea565b5b8151620003d784826020860162000362565b91505092915050565b600060208284031215620003f957620003f8620005f9565b5b600082015167ffffffffffffffff8111156200041a5762000419620005f4565b5b6200042884828501620003ad565b91505092915050565b600062000440602083620004d9565b91506200044d826200060f565b602082019050919050565b60006020820190508181036000830152620004738162000431565b9050919050565b60006200048662000499565b905062000494828262000556565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c157620004c0620005bb565b5b620004cc82620005fe565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200050a578082015181840152602081019050620004ed565b838111156200051a576000848401525b50505050565b600060028204905060018216806200053957607f821691505b6020821081141562000550576200054f6200058c565b5b50919050565b6200056182620005fe565b810181811067ffffffffffffffff82111715620005835762000582620005bb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61383680620006486000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063e985e9c5146104ee578063eac989f81461052b578063f2fde38b1461055657610140565b80636352211e1461034f57806370a082311461038c578063715018a6146103c95780638da5cb5b146103e057806395d89b411461040b5780639b642de11461043657610140565b806323b872dd1161010857806323b872dd1461023e5780632f745c591461026757806331c864e8146102a457806342842e0e146102c05780634f6ccce7146102e957806351cff8d91461032657610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612671565b61057f565b6040516101799190612b26565b60405180910390f35b34801561018e57600080fd5b506101976105f9565b6040516101a49190612b41565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190612714565b61068b565b6040516101e19190612abf565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612631565b610710565b005b34801561021f57600080fd5b50610228610828565b6040516102359190612e03565b60405180910390f35b34801561024a57600080fd5b506102656004803603810190610260919061251b565b610835565b005b34801561027357600080fd5b5061028e60048036038101906102899190612631565b610895565b60405161029b9190612e03565b60405180910390f35b6102be60048036038101906102b99190612714565b61093a565b005b3480156102cc57600080fd5b506102e760048036038101906102e2919061251b565b610a69565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612714565b610a89565b60405161031d9190612e03565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906124ae565b610afa565b005b34801561035b57600080fd5b5061037660048036038101906103719190612714565b610bc0565b6040516103839190612abf565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906124ae565b610c72565b6040516103c09190612e03565b60405180910390f35b3480156103d557600080fd5b506103de610d2a565b005b3480156103ec57600080fd5b506103f5610db2565b6040516104029190612abf565b60405180910390f35b34801561041757600080fd5b50610420610ddc565b60405161042d9190612b41565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906126cb565b610e6e565b005b34801561046b57600080fd5b50610486600480360381019061048191906125f1565b610f04565b005b34801561049457600080fd5b506104af60048036038101906104aa919061256e565b611085565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612714565b6110e7565b6040516104e59190612b41565b60405180910390f35b3480156104fa57600080fd5b50610515600480360381019061051091906124db565b6111c3565b6040516105229190612b26565b60405180910390f35b34801561053757600080fd5b50610540611257565b60405161054d9190612b41565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906124ae565b6112e5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f257506105f1826113dd565b5b9050919050565b60606000805461060890613077565b80601f016020809104026020016040519081016040528092919081815260200182805461063490613077565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000610696826114bf565b6106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc90612d23565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071b82610bc0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078390612da3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ab61152b565b73ffffffffffffffffffffffffffffffffffffffff1614806107da57506107d9816107d461152b565b6111c3565b5b610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090612c83565b60405180910390fd5b6108238383611533565b505050565b6000600880549050905090565b61084661084061152b565b826115ec565b610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90612dc3565b60405180910390fd5b6108908383836116ca565b505050565b60006108a083610c72565b82106108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890612b63565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b811061097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490612c43565b60405180910390fd5b806702c68af0bb1400006109919190612f33565b3410156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612d03565b60405180910390fd5b60006109dd610828565b90506101f582826109ee9190612edd565b10610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590612be3565b60405180910390fd5b6000600190505b828111610a6457610a51338284610a4c9190612edd565b611926565b8080610a5c906130da565b915050610a35565b505050565b610a8483838360405180602001604052806000815250611085565b505050565b6000610a93610828565b8210610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612de3565b60405180910390fd5b60088281548110610ae857610ae76131b0565b5b90600052602060002001549050919050565b610b0261152b565b73ffffffffffffffffffffffffffffffffffffffff16610b20610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612d63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bbc573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612cc3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90612ca3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3261152b565b73ffffffffffffffffffffffffffffffffffffffff16610d50610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612d63565b60405180910390fd5b610db06000611944565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610deb90613077565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790613077565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050905090565b610e7661152b565b73ffffffffffffffffffffffffffffffffffffffff16610e94610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190612d63565b60405180910390fd5b80600b9080519060200190610f009291906122c2565b5050565b610f0c61152b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190612c23565b60405180910390fd5b8060056000610f8761152b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661103461152b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110799190612b26565b60405180910390a35050565b61109661109061152b565b836115ec565b6110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612dc3565b60405180910390fd5b6110e184848484611a0a565b50505050565b60606110f2826114bf565b611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612d43565b60405180910390fd5b600b805461113e90613077565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90613077565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461126490613077565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613077565b80156112dd5780601f106112b2576101008083540402835291602001916112dd565b820191906000526020600020905b8154815290600101906020018083116112c057829003601f168201915b505050505081565b6112ed61152b565b73ffffffffffffffffffffffffffffffffffffffff1661130b610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890612d63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890612ba3565b60405180910390fd5b6113da81611944565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806114b857506114b782611a66565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115a683610bc0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115f7826114bf565b611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90612c63565b60405180910390fd5b600061164183610bc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116b057508373ffffffffffffffffffffffffffffffffffffffff166116988461068b565b73ffffffffffffffffffffffffffffffffffffffff16145b806116c157506116c081856111c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116ea82610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790612c03565b60405180910390fd5b6117bb838383611ad0565b6117c6600082611533565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118169190612f8d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186d9190612edd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611940828260405180602001604052806000815250611be4565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a158484846116ca565b611a2184848484611c3f565b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790612b83565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611adb838383611dd6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1e57611b1981611ddb565b611b5d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b5c57611b5b8382611e24565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba057611b9b81611f91565b611bdf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611bde57611bdd8282612062565b5b5b505050565b611bee83836120e1565b611bfb6000848484611c3f565b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190612b83565b60405180910390fd5b505050565b6000611c608473ffffffffffffffffffffffffffffffffffffffff166122af565b15611dc9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8961152b565b8786866040518563ffffffff1660e01b8152600401611cab9493929190612ada565b602060405180830381600087803b158015611cc557600080fd5b505af1925050508015611cf657506040513d601f19601f82011682018060405250810190611cf3919061269e565b60015b611d79573d8060008114611d26576040519150601f19603f3d011682016040523d82523d6000602084013e611d2b565b606091505b50600081511415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890612b83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611dce565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e3184610c72565b611e3b9190612f8d565b9050600060076000848152602001908152602001600020549050818114611f20576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fa59190612f8d565b9050600060096000848152602001908152602001600020549050600060088381548110611fd557611fd46131b0565b5b906000526020600020015490508060088381548110611ff757611ff66131b0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061204657612045613181565b5b6001900381819060005260206000200160009055905550505050565b600061206d83610c72565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890612ce3565b60405180910390fd5b61215a816114bf565b1561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190612bc3565b60405180910390fd5b6121a660008383611ad0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f69190612edd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122ce90613077565b90600052602060002090601f0160209004810192826122f05760008555612337565b82601f1061230957805160ff1916838001178555612337565b82800160010185558215612337579182015b8281111561233657825182559160200191906001019061231b565b5b5090506123449190612348565b5090565b5b80821115612361576000816000905550600101612349565b5090565b600061237861237384612e43565b612e1e565b90508281526020810184848401111561239457612393613213565b5b61239f848285613035565b509392505050565b60006123ba6123b584612e74565b612e1e565b9050828152602081018484840111156123d6576123d5613213565b5b6123e1848285613035565b509392505050565b6000813590506123f8816137a4565b92915050565b60008135905061240d816137bb565b92915050565b600081359050612422816137d2565b92915050565b600081519050612437816137d2565b92915050565b600082601f8301126124525761245161320e565b5b8135612462848260208601612365565b91505092915050565b600082601f8301126124805761247f61320e565b5b81356124908482602086016123a7565b91505092915050565b6000813590506124a8816137e9565b92915050565b6000602082840312156124c4576124c361321d565b5b60006124d2848285016123e9565b91505092915050565b600080604083850312156124f2576124f161321d565b5b6000612500858286016123e9565b9250506020612511858286016123e9565b9150509250929050565b6000806000606084860312156125345761253361321d565b5b6000612542868287016123e9565b9350506020612553868287016123e9565b925050604061256486828701612499565b9150509250925092565b600080600080608085870312156125885761258761321d565b5b6000612596878288016123e9565b94505060206125a7878288016123e9565b93505060406125b887828801612499565b925050606085013567ffffffffffffffff8111156125d9576125d8613218565b5b6125e58782880161243d565b91505092959194509250565b600080604083850312156126085761260761321d565b5b6000612616858286016123e9565b9250506020612627858286016123fe565b9150509250929050565b600080604083850312156126485761264761321d565b5b6000612656858286016123e9565b925050602061266785828601612499565b9150509250929050565b6000602082840312156126875761268661321d565b5b600061269584828501612413565b91505092915050565b6000602082840312156126b4576126b361321d565b5b60006126c284828501612428565b91505092915050565b6000602082840312156126e1576126e061321d565b5b600082013567ffffffffffffffff8111156126ff576126fe613218565b5b61270b8482850161246b565b91505092915050565b60006020828403121561272a5761272961321d565b5b600061273884828501612499565b91505092915050565b61274a81612fc1565b82525050565b61275981612fd3565b82525050565b600061276a82612ea5565b6127748185612ebb565b9350612784818560208601613044565b61278d81613222565b840191505092915050565b60006127a382612eb0565b6127ad8185612ecc565b93506127bd818560208601613044565b6127c681613222565b840191505092915050565b60006127de602b83612ecc565b91506127e982613233565b604082019050919050565b6000612801603283612ecc565b915061280c82613282565b604082019050919050565b6000612824602683612ecc565b915061282f826132d1565b604082019050919050565b6000612847601c83612ecc565b915061285282613320565b602082019050919050565b600061286a601c83612ecc565b915061287582613349565b602082019050919050565b600061288d602483612ecc565b915061289882613372565b604082019050919050565b60006128b0601983612ecc565b91506128bb826133c1565b602082019050919050565b60006128d3601b83612ecc565b91506128de826133ea565b602082019050919050565b60006128f6602c83612ecc565b915061290182613413565b604082019050919050565b6000612919603883612ecc565b915061292482613462565b604082019050919050565b600061293c602a83612ecc565b9150612947826134b1565b604082019050919050565b600061295f602983612ecc565b915061296a82613500565b604082019050919050565b6000612982602083612ecc565b915061298d8261354f565b602082019050919050565b60006129a5601c83612ecc565b91506129b082613578565b602082019050919050565b60006129c8602c83612ecc565b91506129d3826135a1565b604082019050919050565b60006129eb602983612ecc565b91506129f6826135f0565b604082019050919050565b6000612a0e602083612ecc565b9150612a198261363f565b602082019050919050565b6000612a31602983612ecc565b9150612a3c82613668565b604082019050919050565b6000612a54602183612ecc565b9150612a5f826136b7565b604082019050919050565b6000612a77603183612ecc565b9150612a8282613706565b604082019050919050565b6000612a9a602c83612ecc565b9150612aa582613755565b604082019050919050565b612ab98161302b565b82525050565b6000602082019050612ad46000830184612741565b92915050565b6000608082019050612aef6000830187612741565b612afc6020830186612741565b612b096040830185612ab0565b8181036060830152612b1b818461275f565b905095945050505050565b6000602082019050612b3b6000830184612750565b92915050565b60006020820190508181036000830152612b5b8184612798565b905092915050565b60006020820190508181036000830152612b7c816127d1565b9050919050565b60006020820190508181036000830152612b9c816127f4565b9050919050565b60006020820190508181036000830152612bbc81612817565b9050919050565b60006020820190508181036000830152612bdc8161283a565b9050919050565b60006020820190508181036000830152612bfc8161285d565b9050919050565b60006020820190508181036000830152612c1c81612880565b9050919050565b60006020820190508181036000830152612c3c816128a3565b9050919050565b60006020820190508181036000830152612c5c816128c6565b9050919050565b60006020820190508181036000830152612c7c816128e9565b9050919050565b60006020820190508181036000830152612c9c8161290c565b9050919050565b60006020820190508181036000830152612cbc8161292f565b9050919050565b60006020820190508181036000830152612cdc81612952565b9050919050565b60006020820190508181036000830152612cfc81612975565b9050919050565b60006020820190508181036000830152612d1c81612998565b9050919050565b60006020820190508181036000830152612d3c816129bb565b9050919050565b60006020820190508181036000830152612d5c816129de565b9050919050565b60006020820190508181036000830152612d7c81612a01565b9050919050565b60006020820190508181036000830152612d9c81612a24565b9050919050565b60006020820190508181036000830152612dbc81612a47565b9050919050565b60006020820190508181036000830152612ddc81612a6a565b9050919050565b60006020820190508181036000830152612dfc81612a8d565b9050919050565b6000602082019050612e186000830184612ab0565b92915050565b6000612e28612e39565b9050612e3482826130a9565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5e57612e5d6131df565b5b612e6782613222565b9050602081019050919050565b600067ffffffffffffffff821115612e8f57612e8e6131df565b5b612e9882613222565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612ee88261302b565b9150612ef38361302b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f2857612f27613123565b5b828201905092915050565b6000612f3e8261302b565b9150612f498361302b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f8257612f81613123565b5b828202905092915050565b6000612f988261302b565b9150612fa38361302b565b925082821015612fb657612fb5613123565b5b828203905092915050565b6000612fcc8261300b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613062578082015181840152602081019050613047565b83811115613071576000848401525b50505050565b6000600282049050600182168061308f57607f821691505b602082108114156130a3576130a2613152565b5b50919050565b6130b282613222565b810181811067ffffffffffffffff821117156130d1576130d06131df565b5b80604052505050565b60006130e58261302b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561311857613117613123565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4b65776c436c75623a206d617820737570706c79207265616368656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4b65776c436c75623a2063616e206d696e7420757020746f2031300000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4b65776c436c75623a20696e73756666696369656e7420657468657200000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4b65776c436c75623a2055524920717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6137ad81612fc1565b81146137b857600080fd5b50565b6137c481612fd3565b81146137cf57600080fd5b50565b6137db81612fdf565b81146137e657600080fd5b50565b6137f28161302b565b81146137fd57600080fd5b5056fea26469706673582212204b6d96bdf1e5487decb6470059d0ec2dfab55ec15fa0614198cc1bb40a19ba8c64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d654a79733865434250775361714567765063647273655845435164356546636f6e546f7965687865724c733500000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063e985e9c5146104ee578063eac989f81461052b578063f2fde38b1461055657610140565b80636352211e1461034f57806370a082311461038c578063715018a6146103c95780638da5cb5b146103e057806395d89b411461040b5780639b642de11461043657610140565b806323b872dd1161010857806323b872dd1461023e5780632f745c591461026757806331c864e8146102a457806342842e0e146102c05780634f6ccce7146102e957806351cff8d91461032657610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612671565b61057f565b6040516101799190612b26565b60405180910390f35b34801561018e57600080fd5b506101976105f9565b6040516101a49190612b41565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190612714565b61068b565b6040516101e19190612abf565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612631565b610710565b005b34801561021f57600080fd5b50610228610828565b6040516102359190612e03565b60405180910390f35b34801561024a57600080fd5b506102656004803603810190610260919061251b565b610835565b005b34801561027357600080fd5b5061028e60048036038101906102899190612631565b610895565b60405161029b9190612e03565b60405180910390f35b6102be60048036038101906102b99190612714565b61093a565b005b3480156102cc57600080fd5b506102e760048036038101906102e2919061251b565b610a69565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612714565b610a89565b60405161031d9190612e03565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906124ae565b610afa565b005b34801561035b57600080fd5b5061037660048036038101906103719190612714565b610bc0565b6040516103839190612abf565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906124ae565b610c72565b6040516103c09190612e03565b60405180910390f35b3480156103d557600080fd5b506103de610d2a565b005b3480156103ec57600080fd5b506103f5610db2565b6040516104029190612abf565b60405180910390f35b34801561041757600080fd5b50610420610ddc565b60405161042d9190612b41565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906126cb565b610e6e565b005b34801561046b57600080fd5b50610486600480360381019061048191906125f1565b610f04565b005b34801561049457600080fd5b506104af60048036038101906104aa919061256e565b611085565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190612714565b6110e7565b6040516104e59190612b41565b60405180910390f35b3480156104fa57600080fd5b50610515600480360381019061051091906124db565b6111c3565b6040516105229190612b26565b60405180910390f35b34801561053757600080fd5b50610540611257565b60405161054d9190612b41565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906124ae565b6112e5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f257506105f1826113dd565b5b9050919050565b60606000805461060890613077565b80601f016020809104026020016040519081016040528092919081815260200182805461063490613077565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000610696826114bf565b6106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc90612d23565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071b82610bc0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078390612da3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ab61152b565b73ffffffffffffffffffffffffffffffffffffffff1614806107da57506107d9816107d461152b565b6111c3565b5b610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090612c83565b60405180910390fd5b6108238383611533565b505050565b6000600880549050905090565b61084661084061152b565b826115ec565b610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90612dc3565b60405180910390fd5b6108908383836116ca565b505050565b60006108a083610c72565b82106108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890612b63565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b811061097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490612c43565b60405180910390fd5b806702c68af0bb1400006109919190612f33565b3410156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612d03565b60405180910390fd5b60006109dd610828565b90506101f582826109ee9190612edd565b10610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590612be3565b60405180910390fd5b6000600190505b828111610a6457610a51338284610a4c9190612edd565b611926565b8080610a5c906130da565b915050610a35565b505050565b610a8483838360405180602001604052806000815250611085565b505050565b6000610a93610828565b8210610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612de3565b60405180910390fd5b60088281548110610ae857610ae76131b0565b5b90600052602060002001549050919050565b610b0261152b565b73ffffffffffffffffffffffffffffffffffffffff16610b20610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612d63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bbc573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612cc3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90612ca3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3261152b565b73ffffffffffffffffffffffffffffffffffffffff16610d50610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612d63565b60405180910390fd5b610db06000611944565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610deb90613077565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790613077565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050905090565b610e7661152b565b73ffffffffffffffffffffffffffffffffffffffff16610e94610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190612d63565b60405180910390fd5b80600b9080519060200190610f009291906122c2565b5050565b610f0c61152b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190612c23565b60405180910390fd5b8060056000610f8761152b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661103461152b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110799190612b26565b60405180910390a35050565b61109661109061152b565b836115ec565b6110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612dc3565b60405180910390fd5b6110e184848484611a0a565b50505050565b60606110f2826114bf565b611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612d43565b60405180910390fd5b600b805461113e90613077565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90613077565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461126490613077565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613077565b80156112dd5780601f106112b2576101008083540402835291602001916112dd565b820191906000526020600020905b8154815290600101906020018083116112c057829003601f168201915b505050505081565b6112ed61152b565b73ffffffffffffffffffffffffffffffffffffffff1661130b610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890612d63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890612ba3565b60405180910390fd5b6113da81611944565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806114b857506114b782611a66565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115a683610bc0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115f7826114bf565b611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90612c63565b60405180910390fd5b600061164183610bc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116b057508373ffffffffffffffffffffffffffffffffffffffff166116988461068b565b73ffffffffffffffffffffffffffffffffffffffff16145b806116c157506116c081856111c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116ea82610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790612d83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790612c03565b60405180910390fd5b6117bb838383611ad0565b6117c6600082611533565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118169190612f8d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186d9190612edd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611940828260405180602001604052806000815250611be4565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a158484846116ca565b611a2184848484611c3f565b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790612b83565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611adb838383611dd6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1e57611b1981611ddb565b611b5d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b5c57611b5b8382611e24565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba057611b9b81611f91565b611bdf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611bde57611bdd8282612062565b5b5b505050565b611bee83836120e1565b611bfb6000848484611c3f565b611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190612b83565b60405180910390fd5b505050565b6000611c608473ffffffffffffffffffffffffffffffffffffffff166122af565b15611dc9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8961152b565b8786866040518563ffffffff1660e01b8152600401611cab9493929190612ada565b602060405180830381600087803b158015611cc557600080fd5b505af1925050508015611cf657506040513d601f19601f82011682018060405250810190611cf3919061269e565b60015b611d79573d8060008114611d26576040519150601f19603f3d011682016040523d82523d6000602084013e611d2b565b606091505b50600081511415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890612b83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611dce565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e3184610c72565b611e3b9190612f8d565b9050600060076000848152602001908152602001600020549050818114611f20576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fa59190612f8d565b9050600060096000848152602001908152602001600020549050600060088381548110611fd557611fd46131b0565b5b906000526020600020015490508060088381548110611ff757611ff66131b0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061204657612045613181565b5b6001900381819060005260206000200160009055905550505050565b600061206d83610c72565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890612ce3565b60405180910390fd5b61215a816114bf565b1561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190612bc3565b60405180910390fd5b6121a660008383611ad0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f69190612edd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122ce90613077565b90600052602060002090601f0160209004810192826122f05760008555612337565b82601f1061230957805160ff1916838001178555612337565b82800160010185558215612337579182015b8281111561233657825182559160200191906001019061231b565b5b5090506123449190612348565b5090565b5b80821115612361576000816000905550600101612349565b5090565b600061237861237384612e43565b612e1e565b90508281526020810184848401111561239457612393613213565b5b61239f848285613035565b509392505050565b60006123ba6123b584612e74565b612e1e565b9050828152602081018484840111156123d6576123d5613213565b5b6123e1848285613035565b509392505050565b6000813590506123f8816137a4565b92915050565b60008135905061240d816137bb565b92915050565b600081359050612422816137d2565b92915050565b600081519050612437816137d2565b92915050565b600082601f8301126124525761245161320e565b5b8135612462848260208601612365565b91505092915050565b600082601f8301126124805761247f61320e565b5b81356124908482602086016123a7565b91505092915050565b6000813590506124a8816137e9565b92915050565b6000602082840312156124c4576124c361321d565b5b60006124d2848285016123e9565b91505092915050565b600080604083850312156124f2576124f161321d565b5b6000612500858286016123e9565b9250506020612511858286016123e9565b9150509250929050565b6000806000606084860312156125345761253361321d565b5b6000612542868287016123e9565b9350506020612553868287016123e9565b925050604061256486828701612499565b9150509250925092565b600080600080608085870312156125885761258761321d565b5b6000612596878288016123e9565b94505060206125a7878288016123e9565b93505060406125b887828801612499565b925050606085013567ffffffffffffffff8111156125d9576125d8613218565b5b6125e58782880161243d565b91505092959194509250565b600080604083850312156126085761260761321d565b5b6000612616858286016123e9565b9250506020612627858286016123fe565b9150509250929050565b600080604083850312156126485761264761321d565b5b6000612656858286016123e9565b925050602061266785828601612499565b9150509250929050565b6000602082840312156126875761268661321d565b5b600061269584828501612413565b91505092915050565b6000602082840312156126b4576126b361321d565b5b60006126c284828501612428565b91505092915050565b6000602082840312156126e1576126e061321d565b5b600082013567ffffffffffffffff8111156126ff576126fe613218565b5b61270b8482850161246b565b91505092915050565b60006020828403121561272a5761272961321d565b5b600061273884828501612499565b91505092915050565b61274a81612fc1565b82525050565b61275981612fd3565b82525050565b600061276a82612ea5565b6127748185612ebb565b9350612784818560208601613044565b61278d81613222565b840191505092915050565b60006127a382612eb0565b6127ad8185612ecc565b93506127bd818560208601613044565b6127c681613222565b840191505092915050565b60006127de602b83612ecc565b91506127e982613233565b604082019050919050565b6000612801603283612ecc565b915061280c82613282565b604082019050919050565b6000612824602683612ecc565b915061282f826132d1565b604082019050919050565b6000612847601c83612ecc565b915061285282613320565b602082019050919050565b600061286a601c83612ecc565b915061287582613349565b602082019050919050565b600061288d602483612ecc565b915061289882613372565b604082019050919050565b60006128b0601983612ecc565b91506128bb826133c1565b602082019050919050565b60006128d3601b83612ecc565b91506128de826133ea565b602082019050919050565b60006128f6602c83612ecc565b915061290182613413565b604082019050919050565b6000612919603883612ecc565b915061292482613462565b604082019050919050565b600061293c602a83612ecc565b9150612947826134b1565b604082019050919050565b600061295f602983612ecc565b915061296a82613500565b604082019050919050565b6000612982602083612ecc565b915061298d8261354f565b602082019050919050565b60006129a5601c83612ecc565b91506129b082613578565b602082019050919050565b60006129c8602c83612ecc565b91506129d3826135a1565b604082019050919050565b60006129eb602983612ecc565b91506129f6826135f0565b604082019050919050565b6000612a0e602083612ecc565b9150612a198261363f565b602082019050919050565b6000612a31602983612ecc565b9150612a3c82613668565b604082019050919050565b6000612a54602183612ecc565b9150612a5f826136b7565b604082019050919050565b6000612a77603183612ecc565b9150612a8282613706565b604082019050919050565b6000612a9a602c83612ecc565b9150612aa582613755565b604082019050919050565b612ab98161302b565b82525050565b6000602082019050612ad46000830184612741565b92915050565b6000608082019050612aef6000830187612741565b612afc6020830186612741565b612b096040830185612ab0565b8181036060830152612b1b818461275f565b905095945050505050565b6000602082019050612b3b6000830184612750565b92915050565b60006020820190508181036000830152612b5b8184612798565b905092915050565b60006020820190508181036000830152612b7c816127d1565b9050919050565b60006020820190508181036000830152612b9c816127f4565b9050919050565b60006020820190508181036000830152612bbc81612817565b9050919050565b60006020820190508181036000830152612bdc8161283a565b9050919050565b60006020820190508181036000830152612bfc8161285d565b9050919050565b60006020820190508181036000830152612c1c81612880565b9050919050565b60006020820190508181036000830152612c3c816128a3565b9050919050565b60006020820190508181036000830152612c5c816128c6565b9050919050565b60006020820190508181036000830152612c7c816128e9565b9050919050565b60006020820190508181036000830152612c9c8161290c565b9050919050565b60006020820190508181036000830152612cbc8161292f565b9050919050565b60006020820190508181036000830152612cdc81612952565b9050919050565b60006020820190508181036000830152612cfc81612975565b9050919050565b60006020820190508181036000830152612d1c81612998565b9050919050565b60006020820190508181036000830152612d3c816129bb565b9050919050565b60006020820190508181036000830152612d5c816129de565b9050919050565b60006020820190508181036000830152612d7c81612a01565b9050919050565b60006020820190508181036000830152612d9c81612a24565b9050919050565b60006020820190508181036000830152612dbc81612a47565b9050919050565b60006020820190508181036000830152612ddc81612a6a565b9050919050565b60006020820190508181036000830152612dfc81612a8d565b9050919050565b6000602082019050612e186000830184612ab0565b92915050565b6000612e28612e39565b9050612e3482826130a9565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5e57612e5d6131df565b5b612e6782613222565b9050602081019050919050565b600067ffffffffffffffff821115612e8f57612e8e6131df565b5b612e9882613222565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612ee88261302b565b9150612ef38361302b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f2857612f27613123565b5b828201905092915050565b6000612f3e8261302b565b9150612f498361302b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f8257612f81613123565b5b828202905092915050565b6000612f988261302b565b9150612fa38361302b565b925082821015612fb657612fb5613123565b5b828203905092915050565b6000612fcc8261300b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613062578082015181840152602081019050613047565b83811115613071576000848401525b50505050565b6000600282049050600182168061308f57607f821691505b602082108114156130a3576130a2613152565b5b50919050565b6130b282613222565b810181811067ffffffffffffffff821117156130d1576130d06131df565b5b80604052505050565b60006130e58261302b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561311857613117613123565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4b65776c436c75623a206d617820737570706c79207265616368656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4b65776c436c75623a2063616e206d696e7420757020746f2031300000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4b65776c436c75623a20696e73756666696369656e7420657468657200000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4b65776c436c75623a2055524920717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6137ad81612fc1565b81146137b857600080fd5b50565b6137c481612fd3565b81146137cf57600080fd5b50565b6137db81612fdf565b81146137e657600080fd5b50565b6137f28161302b565b81146137fd57600080fd5b5056fea26469706673582212204b6d96bdf1e5487decb6470059d0ec2dfab55ec15fa0614198cc1bb40a19ba8c64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d654a79733865434250775361714567765063647273655845435164356546636f6e546f7965687865724c733500000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://gateway.pinata.cloud/ipfs/QmeJys8eCBPwSaqEgvPcdrseXECQd5eFconToyehxerLs5

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d654a7973386543425077536171456776506364727365584543516435
Arg [4] : 6546636f6e546f7965687865724c733500000000000000000000000000000000


Deployed Bytecode Sourcemap

42970:1103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34533:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21486:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23045:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22568:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35173:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23935:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34841:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43198:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24345:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35363:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43959:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21180:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20910:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42305:94;;;;;;;;;;;;;:::i;:::-;;41654:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21655:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43630:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23338:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24601:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43720:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23704:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43073:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42554:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34533:224;34635:4;34674:35;34659:50;;;:11;:50;;;;:90;;;;34713:36;34737:11;34713:23;:36::i;:::-;34659:90;34652:97;;34533:224;;;:::o;21486:100::-;21540:13;21573:5;21566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21486:100;:::o;23045:221::-;23121:7;23149:16;23157:7;23149;:16::i;:::-;23141:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23234:15;:24;23250:7;23234:24;;;;;;;;;;;;;;;;;;;;;23227:31;;23045:221;;;:::o;22568:411::-;22649:13;22665:23;22680:7;22665:14;:23::i;:::-;22649:39;;22713:5;22707:11;;:2;:11;;;;22699:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22807:5;22791:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22816:37;22833:5;22840:12;:10;:12::i;:::-;22816:16;:37::i;:::-;22791:62;22769:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22950:21;22959:2;22963:7;22950:8;:21::i;:::-;22638:341;22568:411;;:::o;35173:113::-;35234:7;35261:10;:17;;;;35254:24;;35173:113;:::o;23935:339::-;24130:41;24149:12;:10;:12::i;:::-;24163:7;24130:18;:41::i;:::-;24122:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24238:28;24248:4;24254:2;24258:7;24238:9;:28::i;:::-;23935:339;;;:::o;34841:256::-;34938:7;34974:23;34991:5;34974:16;:23::i;:::-;34966:5;:31;34958:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35063:12;:19;35076:5;35063:19;;;;;;;;;;;;;;;:26;35083:5;35063:26;;;;;;;;;;;;35056:33;;34841:256;;;;:::o;43198:424::-;43277:2;43268:6;:11;43260:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;43351:6;43057:9;43343:14;;;;:::i;:::-;43330:9;:27;;43322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43401:14;43418:13;:11;:13::i;:::-;43401:30;;43468:3;43459:6;43450;:15;;;;:::i;:::-;:21;43442:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43522:9;43534:1;43522:13;;43517:98;43542:6;43537:1;:11;43517:98;;43570:33;43580:10;43601:1;43592:6;:10;;;;:::i;:::-;43570:9;:33::i;:::-;43550:3;;;;;:::i;:::-;;;;43517:98;;;;43249:373;43198:424;:::o;24345:185::-;24483:39;24500:4;24506:2;24510:7;24483:39;;;;;;;;;;;;:16;:39::i;:::-;24345:185;;;:::o;35363:233::-;35438:7;35474:30;:28;:30::i;:::-;35466:5;:38;35458:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35571:10;35582:5;35571:17;;;;;;;;:::i;:::-;;;;;;;;;;35564:24;;35363:233;;;:::o;43959:111::-;41885:12;:10;:12::i;:::-;41874:23;;:7;:5;:7::i;:::-;:23;;;41866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44027:2:::1;44019:20;;:43;44040:21;44019:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43959:111:::0;:::o;21180:239::-;21252:7;21272:13;21288:7;:16;21296:7;21288:16;;;;;;;;;;;;;;;;;;;;;21272:32;;21340:1;21323:19;;:5;:19;;;;21315:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21406:5;21399:12;;;21180:239;;;:::o;20910:208::-;20982:7;21027:1;21010:19;;:5;:19;;;;21002:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21094:9;:16;21104:5;21094:16;;;;;;;;;;;;;;;;21087:23;;20910:208;;;:::o;42305:94::-;41885:12;:10;:12::i;:::-;41874:23;;:7;:5;:7::i;:::-;:23;;;41866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42370:21:::1;42388:1;42370:9;:21::i;:::-;42305:94::o:0;41654:87::-;41700:7;41727:6;;;;;;;;;;;41720:13;;41654:87;:::o;21655:104::-;21711:13;21744:7;21737:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21655:104;:::o;43630:82::-;41885:12;:10;:12::i;:::-;41874:23;;:7;:5;:7::i;:::-;:23;;;41866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43700:4:::1;43694:3;:10;;;;;;;;;;;;:::i;:::-;;43630:82:::0;:::o;23338:295::-;23453:12;:10;:12::i;:::-;23441:24;;:8;:24;;;;23433:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23553:8;23508:18;:32;23527:12;:10;:12::i;:::-;23508:32;;;;;;;;;;;;;;;:42;23541:8;23508:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23606:8;23577:48;;23592:12;:10;:12::i;:::-;23577:48;;;23616:8;23577:48;;;;;;:::i;:::-;;;;;;;;23338:295;;:::o;24601:328::-;24776:41;24795:12;:10;:12::i;:::-;24809:7;24776:18;:41::i;:::-;24768:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24882:39;24896:4;24902:2;24906:7;24915:5;24882:13;:39::i;:::-;24601:328;;;;:::o;43720:231::-;43821:13;43860:16;43868:7;43860;:16::i;:::-;43852:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43940:3;43933:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43720:231;;;:::o;23704:164::-;23801:4;23825:18;:25;23844:5;23825:25;;;;;;;;;;;;;;;:35;23851:8;23825:35;;;;;;;;;;;;;;;;;;;;;;;;;23818:42;;23704:164;;;;:::o;43073:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42554:192::-;41885:12;:10;:12::i;:::-;41874:23;;:7;:5;:7::i;:::-;:23;;;41866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42663:1:::1;42643:22;;:8;:22;;;;42635:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42719:19;42729:8;42719:9;:19::i;:::-;42554:192:::0;:::o;20541:305::-;20643:4;20695:25;20680:40;;;:11;:40;;;;:105;;;;20752:33;20737:48;;;:11;:48;;;;20680:105;:158;;;;20802:36;20826:11;20802:23;:36::i;:::-;20680:158;20660:178;;20541:305;;;:::o;26439:127::-;26504:4;26556:1;26528:30;;:7;:16;26536:7;26528:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26521:37;;26439:127;;;:::o;16048:98::-;16101:7;16128:10;16121:17;;16048:98;:::o;30421:174::-;30523:2;30496:15;:24;30512:7;30496:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30579:7;30575:2;30541:46;;30550:23;30565:7;30550:14;:23::i;:::-;30541:46;;;;;;;;;;;;30421:174;;:::o;26733:348::-;26826:4;26851:16;26859:7;26851;:16::i;:::-;26843:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26927:13;26943:23;26958:7;26943:14;:23::i;:::-;26927:39;;26996:5;26985:16;;:7;:16;;;:51;;;;27029:7;27005:31;;:20;27017:7;27005:11;:20::i;:::-;:31;;;26985:51;:87;;;;27040:32;27057:5;27064:7;27040:16;:32::i;:::-;26985:87;26977:96;;;26733:348;;;;:::o;29725:578::-;29884:4;29857:31;;:23;29872:7;29857:14;:23::i;:::-;:31;;;29849:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29967:1;29953:16;;:2;:16;;;;29945:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30023:39;30044:4;30050:2;30054:7;30023:20;:39::i;:::-;30127:29;30144:1;30148:7;30127:8;:29::i;:::-;30188:1;30169:9;:15;30179:4;30169:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30217:1;30200:9;:13;30210:2;30200:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30248:2;30229:7;:16;30237:7;30229:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30287:7;30283:2;30268:27;;30277:4;30268:27;;;;;;;;;;;;29725:578;;;:::o;27423:110::-;27499:26;27509:2;27513:7;27499:26;;;;;;;;;;;;:9;:26::i;:::-;27423:110;;:::o;42754:173::-;42810:16;42829:6;;;;;;;;;;;42810:25;;42855:8;42846:6;;:17;;;;;;;;;;;;;;;;;;42910:8;42879:40;;42900:8;42879:40;;;;;;;;;;;;42799:128;42754:173;:::o;25811:315::-;25968:28;25978:4;25984:2;25988:7;25968:9;:28::i;:::-;26015:48;26038:4;26044:2;26048:7;26057:5;26015:22;:48::i;:::-;26007:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25811:315;;;;:::o;19082:157::-;19167:4;19206:25;19191:40;;;:11;:40;;;;19184:47;;19082:157;;;:::o;36209:589::-;36353:45;36380:4;36386:2;36390:7;36353:26;:45::i;:::-;36431:1;36415:18;;:4;:18;;;36411:187;;;36450:40;36482:7;36450:31;:40::i;:::-;36411:187;;;36520:2;36512:10;;:4;:10;;;36508:90;;36539:47;36572:4;36578:7;36539:32;:47::i;:::-;36508:90;36411:187;36626:1;36612:16;;:2;:16;;;36608:183;;;36645:45;36682:7;36645:36;:45::i;:::-;36608:183;;;36718:4;36712:10;;:2;:10;;;36708:83;;36739:40;36767:2;36771:7;36739:27;:40::i;:::-;36708:83;36608:183;36209:589;;;:::o;27760:321::-;27890:18;27896:2;27900:7;27890:5;:18::i;:::-;27941:54;27972:1;27976:2;27980:7;27989:5;27941:22;:54::i;:::-;27919:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27760:321;;;:::o;31160:799::-;31315:4;31336:15;:2;:13;;;:15::i;:::-;31332:620;;;31388:2;31372:36;;;31409:12;:10;:12::i;:::-;31423:4;31429:7;31438:5;31372:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31368:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31631:1;31614:6;:13;:18;31610:272;;;31657:60;;;;;;;;;;:::i;:::-;;;;;;;;31610:272;31832:6;31826:13;31817:6;31813:2;31809:15;31802:38;31368:529;31505:41;;;31495:51;;;:6;:51;;;;31488:58;;;;;31332:620;31936:4;31929:11;;31160:799;;;;;;;:::o;32531:126::-;;;;:::o;37521:164::-;37625:10;:17;;;;37598:15;:24;37614:7;37598:24;;;;;;;;;;;:44;;;;37653:10;37669:7;37653:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37521:164;:::o;38312:988::-;38578:22;38628:1;38603:22;38620:4;38603:16;:22::i;:::-;:26;;;;:::i;:::-;38578:51;;38640:18;38661:17;:26;38679:7;38661:26;;;;;;;;;;;;38640:47;;38808:14;38794:10;:28;38790:328;;38839:19;38861:12;:18;38874:4;38861:18;;;;;;;;;;;;;;;:34;38880:14;38861:34;;;;;;;;;;;;38839:56;;38945:11;38912:12;:18;38925:4;38912:18;;;;;;;;;;;;;;;:30;38931:10;38912:30;;;;;;;;;;;:44;;;;39062:10;39029:17;:30;39047:11;39029:30;;;;;;;;;;;:43;;;;38824:294;38790:328;39214:17;:26;39232:7;39214:26;;;;;;;;;;;39207:33;;;39258:12;:18;39271:4;39258:18;;;;;;;;;;;;;;;:34;39277:14;39258:34;;;;;;;;;;;39251:41;;;38393:907;;38312:988;;:::o;39595:1079::-;39848:22;39893:1;39873:10;:17;;;;:21;;;;:::i;:::-;39848:46;;39905:18;39926:15;:24;39942:7;39926:24;;;;;;;;;;;;39905:45;;40277:19;40299:10;40310:14;40299:26;;;;;;;;:::i;:::-;;;;;;;;;;40277:48;;40363:11;40338:10;40349;40338:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40474:10;40443:15;:28;40459:11;40443:28;;;;;;;;;;;:41;;;;40615:15;:24;40631:7;40615:24;;;;;;;;;;;40608:31;;;40650:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39666:1008;;;39595:1079;:::o;37099:221::-;37184:14;37201:20;37218:2;37201:16;:20::i;:::-;37184:37;;37259:7;37232:12;:16;37245:2;37232:16;;;;;;;;;;;;;;;:24;37249:6;37232:24;;;;;;;;;;;:34;;;;37306:6;37277:17;:26;37295:7;37277:26;;;;;;;;;;;:35;;;;37173:147;37099:221;;:::o;28417:382::-;28511:1;28497:16;;:2;:16;;;;28489:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28570:16;28578:7;28570;:16::i;:::-;28569:17;28561:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28632:45;28661:1;28665:2;28669:7;28632:20;:45::i;:::-;28707:1;28690:9;:13;28700:2;28690:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28738:2;28719:7;:16;28727:7;28719:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28783:7;28779:2;28758:33;;28775:1;28758:33;;;;;;;;;;;;28417:382;;:::o;8115:387::-;8175:4;8383:12;8450:7;8438:20;8430:28;;8493:1;8486:4;:8;8479:15;;;8115:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:::-;8647:3;8668:67;8732:2;8727:3;8668:67;:::i;:::-;8661:74;;8744:93;8833:3;8744:93;:::i;:::-;8862:2;8857:3;8853:12;8846:19;;8505:366;;;:::o;8877:::-;9019:3;9040:67;9104:2;9099:3;9040:67;:::i;:::-;9033:74;;9116:93;9205:3;9116:93;:::i;:::-;9234:2;9229:3;9225:12;9218:19;;8877:366;;;:::o;9249:::-;9391:3;9412:67;9476:2;9471:3;9412:67;:::i;:::-;9405:74;;9488:93;9577:3;9488:93;:::i;:::-;9606:2;9601:3;9597:12;9590:19;;9249:366;;;:::o;9621:::-;9763:3;9784:67;9848:2;9843:3;9784:67;:::i;:::-;9777:74;;9860:93;9949:3;9860:93;:::i;:::-;9978:2;9973:3;9969:12;9962:19;;9621:366;;;:::o;9993:::-;10135:3;10156:67;10220:2;10215:3;10156:67;:::i;:::-;10149:74;;10232:93;10321:3;10232:93;:::i;:::-;10350:2;10345:3;10341:12;10334:19;;9993:366;;;:::o;10365:::-;10507:3;10528:67;10592:2;10587:3;10528:67;:::i;:::-;10521:74;;10604:93;10693:3;10604:93;:::i;:::-;10722:2;10717:3;10713:12;10706:19;;10365:366;;;:::o;10737:::-;10879:3;10900:67;10964:2;10959:3;10900:67;:::i;:::-;10893:74;;10976:93;11065:3;10976:93;:::i;:::-;11094:2;11089:3;11085:12;11078:19;;10737:366;;;:::o;11109:::-;11251:3;11272:67;11336:2;11331:3;11272:67;:::i;:::-;11265:74;;11348:93;11437:3;11348:93;:::i;:::-;11466:2;11461:3;11457:12;11450:19;;11109:366;;;:::o;11481:::-;11623:3;11644:67;11708:2;11703:3;11644:67;:::i;:::-;11637:74;;11720:93;11809:3;11720:93;:::i;:::-;11838:2;11833:3;11829:12;11822:19;;11481:366;;;:::o;11853:::-;11995:3;12016:67;12080:2;12075:3;12016:67;:::i;:::-;12009:74;;12092:93;12181:3;12092:93;:::i;:::-;12210:2;12205:3;12201:12;12194:19;;11853:366;;;:::o;12225:::-;12367:3;12388:67;12452:2;12447:3;12388:67;:::i;:::-;12381:74;;12464:93;12553:3;12464:93;:::i;:::-;12582:2;12577:3;12573:12;12566:19;;12225:366;;;:::o;12597:::-;12739:3;12760:67;12824:2;12819:3;12760:67;:::i;:::-;12753:74;;12836:93;12925:3;12836:93;:::i;:::-;12954:2;12949:3;12945:12;12938:19;;12597:366;;;:::o;12969:::-;13111:3;13132:67;13196:2;13191:3;13132:67;:::i;:::-;13125:74;;13208:93;13297:3;13208:93;:::i;:::-;13326:2;13321:3;13317:12;13310:19;;12969:366;;;:::o;13341:::-;13483:3;13504:67;13568:2;13563:3;13504:67;:::i;:::-;13497:74;;13580:93;13669:3;13580:93;:::i;:::-;13698:2;13693:3;13689:12;13682:19;;13341:366;;;:::o;13713:::-;13855:3;13876:67;13940:2;13935:3;13876:67;:::i;:::-;13869:74;;13952:93;14041:3;13952:93;:::i;:::-;14070:2;14065:3;14061:12;14054:19;;13713:366;;;:::o;14085:::-;14227:3;14248:67;14312:2;14307:3;14248:67;:::i;:::-;14241:74;;14324:93;14413:3;14324:93;:::i;:::-;14442:2;14437:3;14433:12;14426:19;;14085:366;;;:::o;14457:::-;14599:3;14620:67;14684:2;14679:3;14620:67;:::i;:::-;14613:74;;14696:93;14785:3;14696:93;:::i;:::-;14814:2;14809:3;14805:12;14798:19;;14457:366;;;:::o;14829:::-;14971:3;14992:67;15056:2;15051:3;14992:67;:::i;:::-;14985:74;;15068:93;15157:3;15068:93;:::i;:::-;15186:2;15181:3;15177:12;15170:19;;14829:366;;;:::o;15201:::-;15343:3;15364:67;15428:2;15423:3;15364:67;:::i;:::-;15357:74;;15440:93;15529:3;15440:93;:::i;:::-;15558:2;15553:3;15549:12;15542:19;;15201:366;;;:::o;15573:::-;15715:3;15736:67;15800:2;15795:3;15736:67;:::i;:::-;15729:74;;15812:93;15901:3;15812:93;:::i;:::-;15930:2;15925:3;15921:12;15914:19;;15573:366;;;:::o;15945:118::-;16032:24;16050:5;16032:24;:::i;:::-;16027:3;16020:37;15945:118;;:::o;16069:222::-;16162:4;16200:2;16189:9;16185:18;16177:26;;16213:71;16281:1;16270:9;16266:17;16257:6;16213:71;:::i;:::-;16069:222;;;;:::o;16297:640::-;16492:4;16530:3;16519:9;16515:19;16507:27;;16544:71;16612:1;16601:9;16597:17;16588:6;16544:71;:::i;:::-;16625:72;16693:2;16682:9;16678:18;16669:6;16625:72;:::i;:::-;16707;16775:2;16764:9;16760:18;16751:6;16707:72;:::i;:::-;16826:9;16820:4;16816:20;16811:2;16800:9;16796:18;16789:48;16854:76;16925:4;16916:6;16854:76;:::i;:::-;16846:84;;16297:640;;;;;;;:::o;16943:210::-;17030:4;17068:2;17057:9;17053:18;17045:26;;17081:65;17143:1;17132:9;17128:17;17119:6;17081:65;:::i;:::-;16943:210;;;;:::o;17159:313::-;17272:4;17310:2;17299:9;17295:18;17287:26;;17359:9;17353:4;17349:20;17345:1;17334:9;17330:17;17323:47;17387:78;17460:4;17451:6;17387:78;:::i;:::-;17379:86;;17159:313;;;;:::o;17478:419::-;17644:4;17682:2;17671:9;17667:18;17659:26;;17731:9;17725:4;17721:20;17717:1;17706:9;17702:17;17695:47;17759:131;17885:4;17759:131;:::i;:::-;17751:139;;17478:419;;;:::o;17903:::-;18069:4;18107:2;18096:9;18092:18;18084:26;;18156:9;18150:4;18146:20;18142:1;18131:9;18127:17;18120:47;18184:131;18310:4;18184:131;:::i;:::-;18176:139;;17903:419;;;:::o;18328:::-;18494:4;18532:2;18521:9;18517:18;18509:26;;18581:9;18575:4;18571:20;18567:1;18556:9;18552:17;18545:47;18609:131;18735:4;18609:131;:::i;:::-;18601:139;;18328:419;;;:::o;18753:::-;18919:4;18957:2;18946:9;18942:18;18934:26;;19006:9;19000:4;18996:20;18992:1;18981:9;18977:17;18970:47;19034:131;19160:4;19034:131;:::i;:::-;19026:139;;18753:419;;;:::o;19178:::-;19344:4;19382:2;19371:9;19367:18;19359:26;;19431:9;19425:4;19421:20;19417:1;19406:9;19402:17;19395:47;19459:131;19585:4;19459:131;:::i;:::-;19451:139;;19178:419;;;:::o;19603:::-;19769:4;19807:2;19796:9;19792:18;19784:26;;19856:9;19850:4;19846:20;19842:1;19831:9;19827:17;19820:47;19884:131;20010:4;19884:131;:::i;:::-;19876:139;;19603:419;;;:::o;20028:::-;20194:4;20232:2;20221:9;20217:18;20209:26;;20281:9;20275:4;20271:20;20267:1;20256:9;20252:17;20245:47;20309:131;20435:4;20309:131;:::i;:::-;20301:139;;20028:419;;;:::o;20453:::-;20619:4;20657:2;20646:9;20642:18;20634:26;;20706:9;20700:4;20696:20;20692:1;20681:9;20677:17;20670:47;20734:131;20860:4;20734:131;:::i;:::-;20726:139;;20453:419;;;:::o;20878:::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:131;21285:4;21159:131;:::i;:::-;21151:139;;20878:419;;;:::o;21303:::-;21469:4;21507:2;21496:9;21492:18;21484:26;;21556:9;21550:4;21546:20;21542:1;21531:9;21527:17;21520:47;21584:131;21710:4;21584:131;:::i;:::-;21576:139;;21303:419;;;:::o;21728:::-;21894:4;21932:2;21921:9;21917:18;21909:26;;21981:9;21975:4;21971:20;21967:1;21956:9;21952:17;21945:47;22009:131;22135:4;22009:131;:::i;:::-;22001:139;;21728:419;;;:::o;22153:::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:::-;22744:4;22782:2;22771:9;22767:18;22759:26;;22831:9;22825:4;22821:20;22817:1;22806:9;22802:17;22795:47;22859:131;22985:4;22859:131;:::i;:::-;22851:139;;22578:419;;;:::o;23003:::-;23169:4;23207:2;23196:9;23192:18;23184:26;;23256:9;23250:4;23246:20;23242:1;23231:9;23227:17;23220:47;23284:131;23410:4;23284:131;:::i;:::-;23276:139;;23003:419;;;:::o;23428:::-;23594:4;23632:2;23621:9;23617:18;23609:26;;23681:9;23675:4;23671:20;23667:1;23656:9;23652:17;23645:47;23709:131;23835:4;23709:131;:::i;:::-;23701:139;;23428:419;;;:::o;23853:::-;24019:4;24057:2;24046:9;24042:18;24034:26;;24106:9;24100:4;24096:20;24092:1;24081:9;24077:17;24070:47;24134:131;24260:4;24134:131;:::i;:::-;24126:139;;23853:419;;;:::o;24278:::-;24444:4;24482:2;24471:9;24467:18;24459:26;;24531:9;24525:4;24521:20;24517:1;24506:9;24502:17;24495:47;24559:131;24685:4;24559:131;:::i;:::-;24551:139;;24278:419;;;:::o;24703:::-;24869:4;24907:2;24896:9;24892:18;24884:26;;24956:9;24950:4;24946:20;24942:1;24931:9;24927:17;24920:47;24984:131;25110:4;24984:131;:::i;:::-;24976:139;;24703:419;;;:::o;25128:::-;25294:4;25332:2;25321:9;25317:18;25309:26;;25381:9;25375:4;25371:20;25367:1;25356:9;25352:17;25345:47;25409:131;25535:4;25409:131;:::i;:::-;25401:139;;25128:419;;;:::o;25553:::-;25719:4;25757:2;25746:9;25742:18;25734:26;;25806:9;25800:4;25796:20;25792:1;25781:9;25777:17;25770:47;25834:131;25960:4;25834:131;:::i;:::-;25826:139;;25553:419;;;:::o;25978:::-;26144:4;26182:2;26171:9;26167:18;26159:26;;26231:9;26225:4;26221:20;26217:1;26206:9;26202:17;26195:47;26259:131;26385:4;26259:131;:::i;:::-;26251:139;;25978:419;;;:::o;26403:222::-;26496:4;26534:2;26523:9;26519:18;26511:26;;26547:71;26615:1;26604:9;26600:17;26591:6;26547:71;:::i;:::-;26403:222;;;;:::o;26631:129::-;26665:6;26692:20;;:::i;:::-;26682:30;;26721:33;26749:4;26741:6;26721:33;:::i;:::-;26631:129;;;:::o;26766:75::-;26799:6;26832:2;26826:9;26816:19;;26766:75;:::o;26847:307::-;26908:4;26998:18;26990:6;26987:30;26984:56;;;27020:18;;:::i;:::-;26984:56;27058:29;27080:6;27058:29;:::i;:::-;27050:37;;27142:4;27136;27132:15;27124:23;;26847:307;;;:::o;27160:308::-;27222:4;27312:18;27304:6;27301:30;27298:56;;;27334:18;;:::i;:::-;27298:56;27372:29;27394:6;27372:29;:::i;:::-;27364:37;;27456:4;27450;27446:15;27438:23;;27160:308;;;:::o;27474:98::-;27525:6;27559:5;27553:12;27543:22;;27474:98;;;:::o;27578:99::-;27630:6;27664:5;27658:12;27648:22;;27578:99;;;:::o;27683:168::-;27766:11;27800:6;27795:3;27788:19;27840:4;27835:3;27831:14;27816:29;;27683:168;;;;:::o;27857:169::-;27941:11;27975:6;27970:3;27963:19;28015:4;28010:3;28006:14;27991:29;;27857:169;;;;:::o;28032:305::-;28072:3;28091:20;28109:1;28091:20;:::i;:::-;28086:25;;28125:20;28143:1;28125:20;:::i;:::-;28120:25;;28279:1;28211:66;28207:74;28204:1;28201:81;28198:107;;;28285:18;;:::i;:::-;28198:107;28329:1;28326;28322:9;28315:16;;28032:305;;;;:::o;28343:348::-;28383:7;28406:20;28424:1;28406:20;:::i;:::-;28401:25;;28440:20;28458:1;28440:20;:::i;:::-;28435:25;;28628:1;28560:66;28556:74;28553:1;28550:81;28545:1;28538:9;28531:17;28527:105;28524:131;;;28635:18;;:::i;:::-;28524:131;28683:1;28680;28676:9;28665:20;;28343:348;;;;:::o;28697:191::-;28737:4;28757:20;28775:1;28757:20;:::i;:::-;28752:25;;28791:20;28809:1;28791:20;:::i;:::-;28786:25;;28830:1;28827;28824:8;28821:34;;;28835:18;;:::i;:::-;28821:34;28880:1;28877;28873:9;28865:17;;28697:191;;;;:::o;28894:96::-;28931:7;28960:24;28978:5;28960:24;:::i;:::-;28949:35;;28894:96;;;:::o;28996:90::-;29030:7;29073:5;29066:13;29059:21;29048:32;;28996:90;;;:::o;29092:149::-;29128:7;29168:66;29161:5;29157:78;29146:89;;29092:149;;;:::o;29247:126::-;29284:7;29324:42;29317:5;29313:54;29302:65;;29247:126;;;:::o;29379:77::-;29416:7;29445:5;29434:16;;29379:77;;;:::o;29462:154::-;29546:6;29541:3;29536;29523:30;29608:1;29599:6;29594:3;29590:16;29583:27;29462:154;;;:::o;29622:307::-;29690:1;29700:113;29714:6;29711:1;29708:13;29700:113;;;29799:1;29794:3;29790:11;29784:18;29780:1;29775:3;29771:11;29764:39;29736:2;29733:1;29729:10;29724:15;;29700:113;;;29831:6;29828:1;29825:13;29822:101;;;29911:1;29902:6;29897:3;29893:16;29886:27;29822:101;29671:258;29622:307;;;:::o;29935:320::-;29979:6;30016:1;30010:4;30006:12;29996:22;;30063:1;30057:4;30053:12;30084:18;30074:81;;30140:4;30132:6;30128:17;30118:27;;30074:81;30202:2;30194:6;30191:14;30171:18;30168:38;30165:84;;;30221:18;;:::i;:::-;30165:84;29986:269;29935:320;;;:::o;30261:281::-;30344:27;30366:4;30344:27;:::i;:::-;30336:6;30332:40;30474:6;30462:10;30459:22;30438:18;30426:10;30423:34;30420:62;30417:88;;;30485:18;;:::i;:::-;30417:88;30525:10;30521:2;30514:22;30304:238;30261:281;;:::o;30548:233::-;30587:3;30610:24;30628:5;30610:24;:::i;:::-;30601:33;;30656:66;30649:5;30646:77;30643:103;;;30726:18;;:::i;:::-;30643:103;30773:1;30766:5;30762:13;30755:20;;30548:233;;;:::o;30787:180::-;30835:77;30832:1;30825:88;30932:4;30929:1;30922:15;30956:4;30953:1;30946:15;30973:180;31021:77;31018:1;31011:88;31118:4;31115:1;31108:15;31142:4;31139:1;31132:15;31159:180;31207:77;31204:1;31197:88;31304:4;31301:1;31294:15;31328:4;31325:1;31318:15;31345:180;31393:77;31390:1;31383:88;31490:4;31487:1;31480:15;31514:4;31511:1;31504:15;31531:180;31579:77;31576:1;31569:88;31676:4;31673:1;31666:15;31700:4;31697:1;31690:15;31717:117;31826:1;31823;31816:12;31840:117;31949:1;31946;31939:12;31963:117;32072:1;32069;32062:12;32086:117;32195:1;32192;32185:12;32209:102;32250:6;32301:2;32297:7;32292:2;32285:5;32281:14;32277:28;32267:38;;32209:102;;;:::o;32317:230::-;32457:34;32453:1;32445:6;32441:14;32434:58;32526:13;32521:2;32513:6;32509:15;32502:38;32317:230;:::o;32553:237::-;32693:34;32689:1;32681:6;32677:14;32670:58;32762:20;32757:2;32749:6;32745:15;32738:45;32553:237;:::o;32796:225::-;32936:34;32932:1;32924:6;32920:14;32913:58;33005:8;33000:2;32992:6;32988:15;32981:33;32796:225;:::o;33027:178::-;33167:30;33163:1;33155:6;33151:14;33144:54;33027:178;:::o;33211:::-;33351:30;33347:1;33339:6;33335:14;33328:54;33211:178;:::o;33395:223::-;33535:34;33531:1;33523:6;33519:14;33512:58;33604:6;33599:2;33591:6;33587:15;33580:31;33395:223;:::o;33624:175::-;33764:27;33760:1;33752:6;33748:14;33741:51;33624:175;:::o;33805:177::-;33945:29;33941:1;33933:6;33929:14;33922:53;33805:177;:::o;33988:231::-;34128:34;34124:1;34116:6;34112:14;34105:58;34197:14;34192:2;34184:6;34180:15;34173:39;33988:231;:::o;34225:243::-;34365:34;34361:1;34353:6;34349:14;34342:58;34434:26;34429:2;34421:6;34417:15;34410:51;34225:243;:::o;34474:229::-;34614:34;34610:1;34602:6;34598:14;34591:58;34683:12;34678:2;34670:6;34666:15;34659:37;34474:229;:::o;34709:228::-;34849:34;34845:1;34837:6;34833:14;34826:58;34918:11;34913:2;34905:6;34901:15;34894:36;34709:228;:::o;34943:182::-;35083:34;35079:1;35071:6;35067:14;35060:58;34943:182;:::o;35131:178::-;35271:30;35267:1;35259:6;35255:14;35248:54;35131:178;:::o;35315:231::-;35455:34;35451:1;35443:6;35439:14;35432:58;35524:14;35519:2;35511:6;35507:15;35500:39;35315:231;:::o;35552:228::-;35692:34;35688:1;35680:6;35676:14;35669:58;35761:11;35756:2;35748:6;35744:15;35737:36;35552:228;:::o;35786:182::-;35926:34;35922:1;35914:6;35910:14;35903:58;35786:182;:::o;35974:228::-;36114:34;36110:1;36102:6;36098:14;36091:58;36183:11;36178:2;36170:6;36166:15;36159:36;35974:228;:::o;36208:220::-;36348:34;36344:1;36336:6;36332:14;36325:58;36417:3;36412:2;36404:6;36400:15;36393:28;36208:220;:::o;36434:236::-;36574:34;36570:1;36562:6;36558:14;36551:58;36643:19;36638:2;36630:6;36626:15;36619:44;36434:236;:::o;36676:231::-;36816:34;36812:1;36804:6;36800:14;36793:58;36885:14;36880:2;36872:6;36868:15;36861:39;36676:231;:::o;36913:122::-;36986:24;37004:5;36986:24;:::i;:::-;36979:5;36976:35;36966:63;;37025:1;37022;37015:12;36966:63;36913:122;:::o;37041:116::-;37111:21;37126:5;37111:21;:::i;:::-;37104:5;37101:32;37091:60;;37147:1;37144;37137:12;37091:60;37041:116;:::o;37163:120::-;37235:23;37252:5;37235:23;:::i;:::-;37228:5;37225:34;37215:62;;37273:1;37270;37263:12;37215:62;37163:120;:::o;37289:122::-;37362:24;37380:5;37362:24;:::i;:::-;37355:5;37352:35;37342:63;;37401:1;37398;37391:12;37342:63;37289:122;:::o

Swarm Source

ipfs://4b6d96bdf1e5487decb6470059d0ec2dfab55ec15fa0614198cc1bb40a19ba8c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.