ETH Price: $3,360.89 (-1.63%)
Gas: 8 Gwei

Token

Lonely Frog Lambo Club (LFLC)
 

Overview

Max Total Supply

10,000 LFLC

Holders

3,457

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
moonimax.eth
Balance
2 LFLC
0x5de698cE53005dBa5D7BCBeA7f3DEAfF0E2Baef4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Lonely Frog Lambo Club is a collection of 10,000 randomly generated and curated frog NFTS on the ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LFLC

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-15
*/

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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


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



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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



pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}


// File contracts/LFLC.sol


pragma solidity ^0.8.0;



contract LFLC is ERC721Enumerable, Ownable, PaymentSplitter {

    using Strings for uint256;

    uint256 private _price = 0.042 ether;

    string public _baseTokenURI = '';
    
    string public FROG_PROVENANCE = '';

    uint256 public MAX_TOKENS_PER_TRANSACTION = 20;

    uint256 public MAX_SUPPLY = 10000;

    uint256 public _startTime = 1631300400;

    mapping(uint => string) private _owners;

    // Withdrawal addresses
    address t1 = 0xD02bf9b3DA78BEc791014EB3cEecA65990cb046F;
    address t2 = 0x4c6b83Ca1c59781faB57790a46281bbd93E539FE;
    address t3 = 0x83343A12e98E0044bF5b0DcD11818961CB5E9FdA;

    address[] addressList = [t1, t2, t3];
    uint256[] shareList = [15, 15, 70];

    constructor()
    ERC721("Lonely Frog Lambo Club", "LFLC")
    PaymentSplitter(addressList, shareList)  {}

    function mint(uint256 _count) public payable {
        uint256 supply = totalSupply();
        require( block.timestamp >= _startTime,        "General sale has not started yet" );
        require( _count <= MAX_TOKENS_PER_TRANSACTION, "You can mint a maximum of 20 Frogs per transaction" );
        require( supply + _count <= MAX_SUPPLY,        "Exceeds current Frog supply limit" );
        require( msg.value >= _price * _count,         "Ether sent is not correct" );

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

    function airdrop(address _wallet, uint256 _count) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum Frog supply");
        
        for(uint256 i; i < _count; i++){
            _safeMint(_wallet, supply + i );
        }
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

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

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

    function getPrice() public view returns (uint256){
        return _price;
    }

    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        FROG_PROVENANCE = _provenanceHash;
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setStartTime(uint256 _newStartTime) public onlyOwner {
        _startTime = _newStartTime;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[],"name":"FROG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052669536c7089100006010556040518060200160405280600081525060119080519060200190620000369291906200087b565b5060405180602001604052806000815250601290805190602001906200005e9291906200087b565b50601460135561271060145563613bab3060155573d02bf9b3da78bec791014eb3ceeca65990cb046f601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c6b83ca1c59781fab57790a46281bbd93e539fe601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507383343a12e98e0044bf5b0dcd11818961cb5e9fda601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601a906003620002889291906200090c565b506040518060600160405280600f60ff168152602001600f60ff168152602001604660ff16815250601b906003620002c29291906200099b565b50348015620002d057600080fd5b50601a8054806020026020016040519081016040528092919081815260200182805480156200035557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116200030a575b5050505050601b805480602002602001604051908101604052809291908181526020018280548015620003a857602002820191906000526020600020905b81548152602001906001019080831162000393575b50505050506040518060400160405280601681526020017f4c6f6e656c792046726f67204c616d626f20436c7562000000000000000000008152506040518060400160405280600481526020017f4c464c43000000000000000000000000000000000000000000000000000000008152508160009080519060200190620004319291906200087b565b5080600190805190602001906200044a9291906200087b565b5050506200046d620004616200057360201b60201c565b6200057b60201b60201c565b8051825114620004b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ab9062000b45565b60405180910390fd5b6000825111620004fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f29062000b89565b60405180910390fd5b60005b82518110156200056a576200055483828151811062000522576200052162000d5b565b5b602002602001015183838151811062000540576200053f62000d5b565b5b60200260200101516200064160201b60201c565b8080620005619062000caf565b915050620004fe565b50505062000ec9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ab9062000b23565b60405180910390fd5b60008111620006fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f19062000bab565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200077f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007769062000b67565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b5462000836919062000bde565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200086f92919062000af6565b60405180910390a15050565b828054620008899062000c79565b90600052602060002090601f016020900481019282620008ad5760008555620008f9565b82601f10620008c857805160ff1916838001178555620008f9565b82800160010185558215620008f9579182015b82811115620008f8578251825591602001919060010190620008db565b5b509050620009089190620009f2565b5090565b82805482825590600052602060002090810192821562000988579160200282015b82811115620009875782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200092d565b5b509050620009979190620009f2565b5090565b828054828255906000526020600020908101928215620009df579160200282015b82811115620009de578251829060ff16905591602001919060010190620009bc565b5b509050620009ee9190620009f2565b5090565b5b8082111562000a0d576000816000905550600101620009f3565b5090565b62000a1c8162000c3b565b82525050565b600062000a31602c8362000bcd565b915062000a3e8262000d8a565b604082019050919050565b600062000a5860328362000bcd565b915062000a658262000dd9565b604082019050919050565b600062000a7f602b8362000bcd565b915062000a8c8262000e28565b604082019050919050565b600062000aa6601a8362000bcd565b915062000ab38262000e77565b602082019050919050565b600062000acd601d8362000bcd565b915062000ada8262000ea0565b602082019050919050565b62000af08162000c6f565b82525050565b600060408201905062000b0d600083018562000a11565b62000b1c602083018462000ae5565b9392505050565b6000602082019050818103600083015262000b3e8162000a22565b9050919050565b6000602082019050818103600083015262000b608162000a49565b9050919050565b6000602082019050818103600083015262000b828162000a70565b9050919050565b6000602082019050818103600083015262000ba48162000a97565b9050919050565b6000602082019050818103600083015262000bc68162000abe565b9050919050565b600082825260208201905092915050565b600062000beb8262000c6f565b915062000bf88362000c6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c305762000c2f62000cfd565b5b828201905092915050565b600062000c488262000c4f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c9257607f821691505b6020821081141562000ca95762000ca862000d2c565b5b50919050565b600062000cbc8262000c6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cf25762000cf162000cfd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b614c168062000ed96000396000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b1461088d578063e33b7de3146108b8578063e985e9c5146108e3578063f2fde38b14610920578063fa1acb5c1461094957610270565b8063a22cb46514610796578063b88d4fde146107bf578063c1eb8166146107e8578063c87b56dd14610813578063ce7c2ac21461085057610270565b806391b7f5ed116100f257806391b7f5ed146106be57806395d89b41146106e75780639852595c1461071257806398d5fdca1461074f578063a0712d681461077a57610270565b8063715018a6146106165780638b83209b1461062d5780638ba4cc3c1461066a5780638da5cb5b1461069357610270565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461050b5780634fce1de31461054857806355f804b3146105735780636352211e1461059c57806370a08231146105d957610270565b806332cb6b0c146104265780633a98ef39146104515780633e0a322d1461047c57806342842e0e146104a5578063438b6300146104ce57610270565b806310969523116101f8578063109695231461034357806318160ddd1461036c578063191655871461039757806323b872dd146103c05780632f745c59146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610974565b34604051610266929190613b05565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c60048036038101906102979190613434565b61097c565b6040516102a99190613b50565b60405180910390f35b3480156102be57600080fd5b506102c76109f6565b6040516102d49190613b6b565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906134d7565b610a88565b6040516103119190613a75565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c91906133f4565b610b0d565b005b34801561034f57600080fd5b5061036a6004803603810190610365919061348e565b610c25565b005b34801561037857600080fd5b50610381610cbb565b60405161038e9190613eed565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613271565b610cc8565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906132de565b610f30565b005b3480156103f557600080fd5b50610410600480360381019061040b91906133f4565b610f90565b60405161041d9190613eed565b60405180910390f35b34801561043257600080fd5b5061043b611035565b6040516104489190613eed565b60405180910390f35b34801561045d57600080fd5b5061046661103b565b6040516104739190613eed565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906134d7565b611045565b005b3480156104b157600080fd5b506104cc60048036038101906104c791906132de565b6110cb565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613244565b6110eb565b6040516105029190613b2e565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906134d7565b611199565b60405161053f9190613eed565b60405180910390f35b34801561055457600080fd5b5061055d61120a565b60405161056a9190613eed565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061348e565b611210565b005b3480156105a857600080fd5b506105c360048036038101906105be91906134d7565b6112a6565b6040516105d09190613a75565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613244565b611358565b60405161060d9190613eed565b60405180910390f35b34801561062257600080fd5b5061062b611410565b005b34801561063957600080fd5b50610654600480360381019061064f91906134d7565b611498565b6040516106619190613a75565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906133f4565b6114e0565b005b34801561069f57600080fd5b506106a86115f1565b6040516106b59190613a75565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906134d7565b61161b565b005b3480156106f357600080fd5b506106fc6116a1565b6040516107099190613b6b565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190613244565b611733565b6040516107469190613eed565b60405180910390f35b34801561075b57600080fd5b5061076461177c565b6040516107719190613eed565b60405180910390f35b610794600480360381019061078f91906134d7565b611786565b005b3480156107a257600080fd5b506107bd60048036038101906107b891906133b4565b6118f4565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613331565b611a75565b005b3480156107f457600080fd5b506107fd611ad7565b60405161080a9190613b6b565b60405180910390f35b34801561081f57600080fd5b5061083a600480360381019061083591906134d7565b611b65565b6040516108479190613b6b565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190613244565b611c0c565b6040516108849190613eed565b60405180910390f35b34801561089957600080fd5b506108a2611c55565b6040516108af9190613b6b565b60405180910390f35b3480156108c457600080fd5b506108cd611ce3565b6040516108da9190613eed565b60405180910390f35b3480156108ef57600080fd5b5061090a6004803603810190610905919061329e565b611ced565b6040516109179190613b50565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613244565b611d81565b005b34801561095557600080fd5b5061095e611e79565b60405161096b9190613eed565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57506109ee82611e7f565b5b9050919050565b606060008054610a0590614229565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190614229565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b6000610a9382611f61565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613dad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b18826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613e4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba8610974565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd681610bd1610974565b611ced565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613d2d565b60405180910390fd5b610c208383611fcd565b505050565b610c2d610974565b73ffffffffffffffffffffffffffffffffffffffff16610c4b6115f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613ded565b60405180910390fd5b8060129080519060200190610cb7929190613043565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613c0d565b60405180910390fd5b6000600c5447610d5a9190614016565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610dec919061409d565b610df6919061406c565b610e0091906140f7565b90506000811415610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90613ced565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e919190614016565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54610ee29190614016565b600c81905550610ef28382612086565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f23929190613a90565b60405180910390a1505050565b610f41610f3b610974565b8261217a565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790613ead565b60405180910390fd5b610f8b838383612258565b505050565b6000610f9b83611358565b8210610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613b8d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60145481565b6000600b54905090565b61104d610974565b73ffffffffffffffffffffffffffffffffffffffff1661106b6115f1565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613ded565b60405180910390fd5b8060158190555050565b6110e683838360405180602001604052806000815250611a75565b505050565b606060006110f883611358565b905060008167ffffffffffffffff811115611116576111156143f1565b5b6040519080825280602002602001820160405280156111445781602001602082028036833780820191505090505b50905060005b8281101561118e5761115c8582610f90565b82828151811061116f5761116e6143c2565b5b60200260200101818152505080806111869061428c565b91505061114a565b508092505050919050565b60006111a3610cbb565b82106111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90613ecd565b60405180910390fd5b600882815481106111f8576111f76143c2565b5b90600052602060002001549050919050565b60135481565b611218610974565b73ffffffffffffffffffffffffffffffffffffffff166112366115f1565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613ded565b60405180910390fd5b80601190805190602001906112a2929190613043565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613d6d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613d4d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611418610974565b73ffffffffffffffffffffffffffffffffffffffff166114366115f1565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613ded565b60405180910390fd5b61149660006124b4565b565b6000600f82815481106114ae576114ad6143c2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6114e8610974565b73ffffffffffffffffffffffffffffffffffffffff166115066115f1565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613ded565b60405180910390fd5b6000611566610cbb565b905060145482826115779190614016565b11156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613dcd565b60405180910390fd5b60005b828110156115eb576115d88482846115d39190614016565b61257a565b80806115e39061428c565b9150506115bb565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611623610974565b73ffffffffffffffffffffffffffffffffffffffff166116416115f1565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613ded565b60405180910390fd5b8060108190555050565b6060600180546116b090614229565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc90614229565b80156117295780601f106116fe57610100808354040283529160200191611729565b820191906000526020600020905b81548152906001019060200180831161170c57829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b6000611790610cbb565b90506015544210156117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613c6d565b60405180910390fd5b60135482111561181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390613d0d565b60405180910390fd5b601454828261182b9190614016565b111561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613e8d565b60405180910390fd5b8160105461187a919061409d565b3410156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613e6d565b60405180910390fd5b60005b828110156118ef576118dc3382846118d79190614016565b61257a565b80806118e79061428c565b9150506118bf565b505050565b6118fc610974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613c4d565b60405180910390fd5b8060056000611977610974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a24610974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a699190613b50565b60405180910390a35050565b611a86611a80610974565b8361217a565b611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613ead565b60405180910390fd5b611ad184848484612598565b50505050565b60128054611ae490614229565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1090614229565b8015611b5d5780601f10611b3257610100808354040283529160200191611b5d565b820191906000526020600020905b815481529060010190602001808311611b4057829003601f168201915b505050505081565b6060611b7082611f61565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613e2d565b60405180910390fd5b6000611bb96125f4565b90506000815111611bd95760405180602001604052806000815250611c04565b80611be384612686565b604051602001611bf4929190613a3c565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611c6290614229565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8e90614229565b8015611cdb5780601f10611cb057610100808354040283529160200191611cdb565b820191906000526020600020905b815481529060010190602001808311611cbe57829003601f168201915b505050505081565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d89610974565b73ffffffffffffffffffffffffffffffffffffffff16611da76115f1565b73ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613bcd565b60405180910390fd5b611e76816124b4565b50565b60155481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f5a5750611f59826127e7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612040836112a6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613cad565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120ef90613a60565b60006040518083038185875af1925050503d806000811461212c576040519150601f19603f3d011682016040523d82523d6000602084013e612131565b606091505b5050905080612175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216c90613c8d565b60405180910390fd5b505050565b600061218582611f61565b6121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb90613ccd565b60405180910390fd5b60006121cf836112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223e57508373ffffffffffffffffffffffffffffffffffffffff1661222684610a88565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224f575061224e8185611ced565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612278826112a6565b73ffffffffffffffffffffffffffffffffffffffff16146122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590613c2d565b60405180910390fd5b612349838383612851565b612354600082611fcd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a491906140f7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fb9190614016565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612594828260405180602001604052806000815250612965565b5050565b6125a3848484612258565b6125af848484846129c0565b6125ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e590613bad565b60405180910390fd5b50505050565b60606011805461260390614229565b80601f016020809104026020016040519081016040528092919081815260200182805461262f90614229565b801561267c5780601f106126515761010080835404028352916020019161267c565b820191906000526020600020905b81548152906001019060200180831161265f57829003601f168201915b5050505050905090565b606060008214156126ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127e2565b600082905060005b600082146127005780806126e99061428c565b915050600a826126f9919061406c565b91506126d6565b60008167ffffffffffffffff81111561271c5761271b6143f1565b5b6040519080825280601f01601f19166020018201604052801561274e5781602001600182028036833780820191505090505b5090505b600085146127db5760018261276791906140f7565b9150600a8561277691906142d5565b60306127829190614016565b60f81b818381518110612798576127976143c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127d4919061406c565b9450612752565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61285c838383612b57565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561289f5761289a81612b5c565b6128de565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128dd576128dc8382612ba5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129215761291c81612d12565b612960565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461295f5761295e8282612de3565b5b5b505050565b61296f8383612e62565b61297c60008484846129c0565b6129bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b290613bad565b60405180910390fd5b505050565b60006129e18473ffffffffffffffffffffffffffffffffffffffff16613030565b15612b4a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a0a610974565b8786866040518563ffffffff1660e01b8152600401612a2c9493929190613ab9565b602060405180830381600087803b158015612a4657600080fd5b505af1925050508015612a7757506040513d601f19601f82011682018060405250810190612a749190613461565b60015b612afa573d8060008114612aa7576040519150601f19603f3d011682016040523d82523d6000602084013e612aac565b606091505b50600081511415612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae990613bad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b4f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bb284611358565b612bbc91906140f7565b9050600060076000848152602001908152602001600020549050818114612ca1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d2691906140f7565b9050600060096000848152602001908152602001600020549050600060088381548110612d5657612d556143c2565b5b906000526020600020015490508060088381548110612d7857612d776143c2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dc757612dc6614393565b5b6001900381819060005260206000200160009055905550505050565b6000612dee83611358565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec990613d8d565b60405180910390fd5b612edb81611f61565b15612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290613bed565b60405180910390fd5b612f2760008383612851565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f779190614016565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461304f90614229565b90600052602060002090601f01602090048101928261307157600085556130b8565b82601f1061308a57805160ff19168380011785556130b8565b828001600101855582156130b8579182015b828111156130b757825182559160200191906001019061309c565b5b5090506130c591906130c9565b5090565b5b808211156130e25760008160009055506001016130ca565b5090565b60006130f96130f484613f2d565b613f08565b90508281526020810184848401111561311557613114614425565b5b6131208482856141e7565b509392505050565b600061313b61313684613f5e565b613f08565b90508281526020810184848401111561315757613156614425565b5b6131628482856141e7565b509392505050565b60008135905061317981614b6d565b92915050565b60008135905061318e81614b84565b92915050565b6000813590506131a381614b9b565b92915050565b6000813590506131b881614bb2565b92915050565b6000815190506131cd81614bb2565b92915050565b600082601f8301126131e8576131e7614420565b5b81356131f88482602086016130e6565b91505092915050565b600082601f83011261321657613215614420565b5b8135613226848260208601613128565b91505092915050565b60008135905061323e81614bc9565b92915050565b60006020828403121561325a5761325961442f565b5b60006132688482850161316a565b91505092915050565b6000602082840312156132875761328661442f565b5b60006132958482850161317f565b91505092915050565b600080604083850312156132b5576132b461442f565b5b60006132c38582860161316a565b92505060206132d48582860161316a565b9150509250929050565b6000806000606084860312156132f7576132f661442f565b5b60006133058682870161316a565b93505060206133168682870161316a565b92505060406133278682870161322f565b9150509250925092565b6000806000806080858703121561334b5761334a61442f565b5b60006133598782880161316a565b945050602061336a8782880161316a565b935050604061337b8782880161322f565b925050606085013567ffffffffffffffff81111561339c5761339b61442a565b5b6133a8878288016131d3565b91505092959194509250565b600080604083850312156133cb576133ca61442f565b5b60006133d98582860161316a565b92505060206133ea85828601613194565b9150509250929050565b6000806040838503121561340b5761340a61442f565b5b60006134198582860161316a565b925050602061342a8582860161322f565b9150509250929050565b60006020828403121561344a5761344961442f565b5b6000613458848285016131a9565b91505092915050565b6000602082840312156134775761347661442f565b5b6000613485848285016131be565b91505092915050565b6000602082840312156134a4576134a361442f565b5b600082013567ffffffffffffffff8111156134c2576134c161442a565b5b6134ce84828501613201565b91505092915050565b6000602082840312156134ed576134ec61442f565b5b60006134fb8482850161322f565b91505092915050565b60006135108383613a1e565b60208301905092915050565b613525816141b1565b82525050565b6135348161412b565b82525050565b600061354582613f9f565b61354f8185613fcd565b935061355a83613f8f565b8060005b8381101561358b5781516135728882613504565b975061357d83613fc0565b92505060018101905061355e565b5085935050505092915050565b6135a18161414f565b82525050565b60006135b282613faa565b6135bc8185613fde565b93506135cc8185602086016141f6565b6135d581614434565b840191505092915050565b60006135eb82613fb5565b6135f58185613ffa565b93506136058185602086016141f6565b61360e81614434565b840191505092915050565b600061362482613fb5565b61362e818561400b565b935061363e8185602086016141f6565b80840191505092915050565b6000613657602b83613ffa565b915061366282614445565b604082019050919050565b600061367a603283613ffa565b915061368582614494565b604082019050919050565b600061369d602683613ffa565b91506136a8826144e3565b604082019050919050565b60006136c0601c83613ffa565b91506136cb82614532565b602082019050919050565b60006136e3602683613ffa565b91506136ee8261455b565b604082019050919050565b6000613706602483613ffa565b9150613711826145aa565b604082019050919050565b6000613729601983613ffa565b9150613734826145f9565b602082019050919050565b600061374c602083613ffa565b915061375782614622565b602082019050919050565b600061376f603a83613ffa565b915061377a8261464b565b604082019050919050565b6000613792601d83613ffa565b915061379d8261469a565b602082019050919050565b60006137b5602c83613ffa565b91506137c0826146c3565b604082019050919050565b60006137d8602b83613ffa565b91506137e382614712565b604082019050919050565b60006137fb603283613ffa565b915061380682614761565b604082019050919050565b600061381e603883613ffa565b9150613829826147b0565b604082019050919050565b6000613841602a83613ffa565b915061384c826147ff565b604082019050919050565b6000613864602983613ffa565b915061386f8261484e565b604082019050919050565b6000613887602083613ffa565b91506138928261489d565b602082019050919050565b60006138aa602c83613ffa565b91506138b5826148c6565b604082019050919050565b60006138cd601b83613ffa565b91506138d882614915565b602082019050919050565b60006138f0602083613ffa565b91506138fb8261493e565b602082019050919050565b6000613913602983613ffa565b915061391e82614967565b604082019050919050565b6000613936602f83613ffa565b9150613941826149b6565b604082019050919050565b6000613959602183613ffa565b915061396482614a05565b604082019050919050565b600061397c601983613ffa565b915061398782614a54565b602082019050919050565b600061399f602183613ffa565b91506139aa82614a7d565b604082019050919050565b60006139c2600083613fef565b91506139cd82614acc565b600082019050919050565b60006139e5603183613ffa565b91506139f082614acf565b604082019050919050565b6000613a08602c83613ffa565b9150613a1382614b1e565b604082019050919050565b613a27816141a7565b82525050565b613a36816141a7565b82525050565b6000613a488285613619565b9150613a548284613619565b91508190509392505050565b6000613a6b826139b5565b9150819050919050565b6000602082019050613a8a600083018461352b565b92915050565b6000604082019050613aa5600083018561351c565b613ab26020830184613a2d565b9392505050565b6000608082019050613ace600083018761352b565b613adb602083018661352b565b613ae86040830185613a2d565b8181036060830152613afa81846135a7565b905095945050505050565b6000604082019050613b1a600083018561352b565b613b276020830184613a2d565b9392505050565b60006020820190508181036000830152613b48818461353a565b905092915050565b6000602082019050613b656000830184613598565b92915050565b60006020820190508181036000830152613b8581846135e0565b905092915050565b60006020820190508181036000830152613ba68161364a565b9050919050565b60006020820190508181036000830152613bc68161366d565b9050919050565b60006020820190508181036000830152613be681613690565b9050919050565b60006020820190508181036000830152613c06816136b3565b9050919050565b60006020820190508181036000830152613c26816136d6565b9050919050565b60006020820190508181036000830152613c46816136f9565b9050919050565b60006020820190508181036000830152613c668161371c565b9050919050565b60006020820190508181036000830152613c868161373f565b9050919050565b60006020820190508181036000830152613ca681613762565b9050919050565b60006020820190508181036000830152613cc681613785565b9050919050565b60006020820190508181036000830152613ce6816137a8565b9050919050565b60006020820190508181036000830152613d06816137cb565b9050919050565b60006020820190508181036000830152613d26816137ee565b9050919050565b60006020820190508181036000830152613d4681613811565b9050919050565b60006020820190508181036000830152613d6681613834565b9050919050565b60006020820190508181036000830152613d8681613857565b9050919050565b60006020820190508181036000830152613da68161387a565b9050919050565b60006020820190508181036000830152613dc68161389d565b9050919050565b60006020820190508181036000830152613de6816138c0565b9050919050565b60006020820190508181036000830152613e06816138e3565b9050919050565b60006020820190508181036000830152613e2681613906565b9050919050565b60006020820190508181036000830152613e4681613929565b9050919050565b60006020820190508181036000830152613e668161394c565b9050919050565b60006020820190508181036000830152613e868161396f565b9050919050565b60006020820190508181036000830152613ea681613992565b9050919050565b60006020820190508181036000830152613ec6816139d8565b9050919050565b60006020820190508181036000830152613ee6816139fb565b9050919050565b6000602082019050613f026000830184613a2d565b92915050565b6000613f12613f23565b9050613f1e828261425b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f4857613f476143f1565b5b613f5182614434565b9050602081019050919050565b600067ffffffffffffffff821115613f7957613f786143f1565b5b613f8282614434565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614021826141a7565b915061402c836141a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561406157614060614306565b5b828201905092915050565b6000614077826141a7565b9150614082836141a7565b92508261409257614091614335565b5b828204905092915050565b60006140a8826141a7565b91506140b3836141a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ec576140eb614306565b5b828202905092915050565b6000614102826141a7565b915061410d836141a7565b9250828210156141205761411f614306565b5b828203905092915050565b600061413682614187565b9050919050565b600061414882614187565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006141bc826141c3565b9050919050565b60006141ce826141d5565b9050919050565b60006141e082614187565b9050919050565b82818337600083830152505050565b60005b838110156142145780820151818401526020810190506141f9565b83811115614223576000848401525b50505050565b6000600282049050600182168061424157607f821691505b6020821081141561425557614254614364565b5b50919050565b61426482614434565b810181811067ffffffffffffffff82111715614283576142826143f1565b5b80604052505050565b6000614297826141a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ca576142c9614306565b5b600182019050919050565b60006142e0826141a7565b91506142eb836141a7565b9250826142fb576142fa614335565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f47656e6572616c2073616c6520686173206e6f74207374617274656420796574600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662032302046726f60008201527f677320706572207472616e73616374696f6e0000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2046726f6720737570706c790000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f457863656564732063757272656e742046726f6720737570706c79206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614b768161412b565b8114614b8157600080fd5b50565b614b8d8161413d565b8114614b9857600080fd5b50565b614ba48161414f565b8114614baf57600080fd5b50565b614bbb8161415b565b8114614bc657600080fd5b50565b614bd2816141a7565b8114614bdd57600080fd5b5056fea2646970667358221220b54c5953a8a49f0f31ea81409072edf40686ec85e495f74f70d019adbaad4eb864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b1461088d578063e33b7de3146108b8578063e985e9c5146108e3578063f2fde38b14610920578063fa1acb5c1461094957610270565b8063a22cb46514610796578063b88d4fde146107bf578063c1eb8166146107e8578063c87b56dd14610813578063ce7c2ac21461085057610270565b806391b7f5ed116100f257806391b7f5ed146106be57806395d89b41146106e75780639852595c1461071257806398d5fdca1461074f578063a0712d681461077a57610270565b8063715018a6146106165780638b83209b1461062d5780638ba4cc3c1461066a5780638da5cb5b1461069357610270565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461050b5780634fce1de31461054857806355f804b3146105735780636352211e1461059c57806370a08231146105d957610270565b806332cb6b0c146104265780633a98ef39146104515780633e0a322d1461047c57806342842e0e146104a5578063438b6300146104ce57610270565b806310969523116101f8578063109695231461034357806318160ddd1461036c578063191655871461039757806323b872dd146103c05780632f745c59146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610974565b34604051610266929190613b05565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c60048036038101906102979190613434565b61097c565b6040516102a99190613b50565b60405180910390f35b3480156102be57600080fd5b506102c76109f6565b6040516102d49190613b6b565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906134d7565b610a88565b6040516103119190613a75565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c91906133f4565b610b0d565b005b34801561034f57600080fd5b5061036a6004803603810190610365919061348e565b610c25565b005b34801561037857600080fd5b50610381610cbb565b60405161038e9190613eed565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613271565b610cc8565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906132de565b610f30565b005b3480156103f557600080fd5b50610410600480360381019061040b91906133f4565b610f90565b60405161041d9190613eed565b60405180910390f35b34801561043257600080fd5b5061043b611035565b6040516104489190613eed565b60405180910390f35b34801561045d57600080fd5b5061046661103b565b6040516104739190613eed565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906134d7565b611045565b005b3480156104b157600080fd5b506104cc60048036038101906104c791906132de565b6110cb565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613244565b6110eb565b6040516105029190613b2e565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906134d7565b611199565b60405161053f9190613eed565b60405180910390f35b34801561055457600080fd5b5061055d61120a565b60405161056a9190613eed565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061348e565b611210565b005b3480156105a857600080fd5b506105c360048036038101906105be91906134d7565b6112a6565b6040516105d09190613a75565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613244565b611358565b60405161060d9190613eed565b60405180910390f35b34801561062257600080fd5b5061062b611410565b005b34801561063957600080fd5b50610654600480360381019061064f91906134d7565b611498565b6040516106619190613a75565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c91906133f4565b6114e0565b005b34801561069f57600080fd5b506106a86115f1565b6040516106b59190613a75565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906134d7565b61161b565b005b3480156106f357600080fd5b506106fc6116a1565b6040516107099190613b6b565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190613244565b611733565b6040516107469190613eed565b60405180910390f35b34801561075b57600080fd5b5061076461177c565b6040516107719190613eed565b60405180910390f35b610794600480360381019061078f91906134d7565b611786565b005b3480156107a257600080fd5b506107bd60048036038101906107b891906133b4565b6118f4565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613331565b611a75565b005b3480156107f457600080fd5b506107fd611ad7565b60405161080a9190613b6b565b60405180910390f35b34801561081f57600080fd5b5061083a600480360381019061083591906134d7565b611b65565b6040516108479190613b6b565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190613244565b611c0c565b6040516108849190613eed565b60405180910390f35b34801561089957600080fd5b506108a2611c55565b6040516108af9190613b6b565b60405180910390f35b3480156108c457600080fd5b506108cd611ce3565b6040516108da9190613eed565b60405180910390f35b3480156108ef57600080fd5b5061090a6004803603810190610905919061329e565b611ced565b6040516109179190613b50565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613244565b611d81565b005b34801561095557600080fd5b5061095e611e79565b60405161096b9190613eed565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57506109ee82611e7f565b5b9050919050565b606060008054610a0590614229565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190614229565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b6000610a9382611f61565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613dad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b18826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613e4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba8610974565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd681610bd1610974565b611ced565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90613d2d565b60405180910390fd5b610c208383611fcd565b505050565b610c2d610974565b73ffffffffffffffffffffffffffffffffffffffff16610c4b6115f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613ded565b60405180910390fd5b8060129080519060200190610cb7929190613043565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613c0d565b60405180910390fd5b6000600c5447610d5a9190614016565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610dec919061409d565b610df6919061406c565b610e0091906140f7565b90506000811415610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90613ced565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e919190614016565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54610ee29190614016565b600c81905550610ef28382612086565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f23929190613a90565b60405180910390a1505050565b610f41610f3b610974565b8261217a565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790613ead565b60405180910390fd5b610f8b838383612258565b505050565b6000610f9b83611358565b8210610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613b8d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60145481565b6000600b54905090565b61104d610974565b73ffffffffffffffffffffffffffffffffffffffff1661106b6115f1565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613ded565b60405180910390fd5b8060158190555050565b6110e683838360405180602001604052806000815250611a75565b505050565b606060006110f883611358565b905060008167ffffffffffffffff811115611116576111156143f1565b5b6040519080825280602002602001820160405280156111445781602001602082028036833780820191505090505b50905060005b8281101561118e5761115c8582610f90565b82828151811061116f5761116e6143c2565b5b60200260200101818152505080806111869061428c565b91505061114a565b508092505050919050565b60006111a3610cbb565b82106111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90613ecd565b60405180910390fd5b600882815481106111f8576111f76143c2565b5b90600052602060002001549050919050565b60135481565b611218610974565b73ffffffffffffffffffffffffffffffffffffffff166112366115f1565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613ded565b60405180910390fd5b80601190805190602001906112a2929190613043565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613d6d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613d4d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611418610974565b73ffffffffffffffffffffffffffffffffffffffff166114366115f1565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613ded565b60405180910390fd5b61149660006124b4565b565b6000600f82815481106114ae576114ad6143c2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6114e8610974565b73ffffffffffffffffffffffffffffffffffffffff166115066115f1565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613ded565b60405180910390fd5b6000611566610cbb565b905060145482826115779190614016565b11156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613dcd565b60405180910390fd5b60005b828110156115eb576115d88482846115d39190614016565b61257a565b80806115e39061428c565b9150506115bb565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611623610974565b73ffffffffffffffffffffffffffffffffffffffff166116416115f1565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613ded565b60405180910390fd5b8060108190555050565b6060600180546116b090614229565b80601f01602080910402602001604051908101604052809291908181526020018280546116dc90614229565b80156117295780601f106116fe57610100808354040283529160200191611729565b820191906000526020600020905b81548152906001019060200180831161170c57829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b6000611790610cbb565b90506015544210156117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613c6d565b60405180910390fd5b60135482111561181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390613d0d565b60405180910390fd5b601454828261182b9190614016565b111561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390613e8d565b60405180910390fd5b8160105461187a919061409d565b3410156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613e6d565b60405180910390fd5b60005b828110156118ef576118dc3382846118d79190614016565b61257a565b80806118e79061428c565b9150506118bf565b505050565b6118fc610974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196190613c4d565b60405180910390fd5b8060056000611977610974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a24610974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a699190613b50565b60405180910390a35050565b611a86611a80610974565b8361217a565b611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613ead565b60405180910390fd5b611ad184848484612598565b50505050565b60128054611ae490614229565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1090614229565b8015611b5d5780601f10611b3257610100808354040283529160200191611b5d565b820191906000526020600020905b815481529060010190602001808311611b4057829003601f168201915b505050505081565b6060611b7082611f61565b611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613e2d565b60405180910390fd5b6000611bb96125f4565b90506000815111611bd95760405180602001604052806000815250611c04565b80611be384612686565b604051602001611bf4929190613a3c565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611c6290614229565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8e90614229565b8015611cdb5780601f10611cb057610100808354040283529160200191611cdb565b820191906000526020600020905b815481529060010190602001808311611cbe57829003601f168201915b505050505081565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d89610974565b73ffffffffffffffffffffffffffffffffffffffff16611da76115f1565b73ffffffffffffffffffffffffffffffffffffffff1614611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613bcd565b60405180910390fd5b611e76816124b4565b50565b60155481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f4a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f5a5750611f59826127e7565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612040836112a6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613cad565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120ef90613a60565b60006040518083038185875af1925050503d806000811461212c576040519150601f19603f3d011682016040523d82523d6000602084013e612131565b606091505b5050905080612175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216c90613c8d565b60405180910390fd5b505050565b600061218582611f61565b6121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb90613ccd565b60405180910390fd5b60006121cf836112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223e57508373ffffffffffffffffffffffffffffffffffffffff1661222684610a88565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224f575061224e8185611ced565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612278826112a6565b73ffffffffffffffffffffffffffffffffffffffff16146122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c590613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590613c2d565b60405180910390fd5b612349838383612851565b612354600082611fcd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a491906140f7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123fb9190614016565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612594828260405180602001604052806000815250612965565b5050565b6125a3848484612258565b6125af848484846129c0565b6125ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e590613bad565b60405180910390fd5b50505050565b60606011805461260390614229565b80601f016020809104026020016040519081016040528092919081815260200182805461262f90614229565b801561267c5780601f106126515761010080835404028352916020019161267c565b820191906000526020600020905b81548152906001019060200180831161265f57829003601f168201915b5050505050905090565b606060008214156126ce576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127e2565b600082905060005b600082146127005780806126e99061428c565b915050600a826126f9919061406c565b91506126d6565b60008167ffffffffffffffff81111561271c5761271b6143f1565b5b6040519080825280601f01601f19166020018201604052801561274e5781602001600182028036833780820191505090505b5090505b600085146127db5760018261276791906140f7565b9150600a8561277691906142d5565b60306127829190614016565b60f81b818381518110612798576127976143c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127d4919061406c565b9450612752565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61285c838383612b57565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561289f5761289a81612b5c565b6128de565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128dd576128dc8382612ba5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129215761291c81612d12565b612960565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461295f5761295e8282612de3565b5b5b505050565b61296f8383612e62565b61297c60008484846129c0565b6129bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b290613bad565b60405180910390fd5b505050565b60006129e18473ffffffffffffffffffffffffffffffffffffffff16613030565b15612b4a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a0a610974565b8786866040518563ffffffff1660e01b8152600401612a2c9493929190613ab9565b602060405180830381600087803b158015612a4657600080fd5b505af1925050508015612a7757506040513d601f19601f82011682018060405250810190612a749190613461565b60015b612afa573d8060008114612aa7576040519150601f19603f3d011682016040523d82523d6000602084013e612aac565b606091505b50600081511415612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae990613bad565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b4f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bb284611358565b612bbc91906140f7565b9050600060076000848152602001908152602001600020549050818114612ca1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d2691906140f7565b9050600060096000848152602001908152602001600020549050600060088381548110612d5657612d556143c2565b5b906000526020600020015490508060088381548110612d7857612d776143c2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612dc757612dc6614393565b5b6001900381819060005260206000200160009055905550505050565b6000612dee83611358565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec990613d8d565b60405180910390fd5b612edb81611f61565b15612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290613bed565b60405180910390fd5b612f2760008383612851565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f779190614016565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461304f90614229565b90600052602060002090601f01602090048101928261307157600085556130b8565b82601f1061308a57805160ff19168380011785556130b8565b828001600101855582156130b8579182015b828111156130b757825182559160200191906001019061309c565b5b5090506130c591906130c9565b5090565b5b808211156130e25760008160009055506001016130ca565b5090565b60006130f96130f484613f2d565b613f08565b90508281526020810184848401111561311557613114614425565b5b6131208482856141e7565b509392505050565b600061313b61313684613f5e565b613f08565b90508281526020810184848401111561315757613156614425565b5b6131628482856141e7565b509392505050565b60008135905061317981614b6d565b92915050565b60008135905061318e81614b84565b92915050565b6000813590506131a381614b9b565b92915050565b6000813590506131b881614bb2565b92915050565b6000815190506131cd81614bb2565b92915050565b600082601f8301126131e8576131e7614420565b5b81356131f88482602086016130e6565b91505092915050565b600082601f83011261321657613215614420565b5b8135613226848260208601613128565b91505092915050565b60008135905061323e81614bc9565b92915050565b60006020828403121561325a5761325961442f565b5b60006132688482850161316a565b91505092915050565b6000602082840312156132875761328661442f565b5b60006132958482850161317f565b91505092915050565b600080604083850312156132b5576132b461442f565b5b60006132c38582860161316a565b92505060206132d48582860161316a565b9150509250929050565b6000806000606084860312156132f7576132f661442f565b5b60006133058682870161316a565b93505060206133168682870161316a565b92505060406133278682870161322f565b9150509250925092565b6000806000806080858703121561334b5761334a61442f565b5b60006133598782880161316a565b945050602061336a8782880161316a565b935050604061337b8782880161322f565b925050606085013567ffffffffffffffff81111561339c5761339b61442a565b5b6133a8878288016131d3565b91505092959194509250565b600080604083850312156133cb576133ca61442f565b5b60006133d98582860161316a565b92505060206133ea85828601613194565b9150509250929050565b6000806040838503121561340b5761340a61442f565b5b60006134198582860161316a565b925050602061342a8582860161322f565b9150509250929050565b60006020828403121561344a5761344961442f565b5b6000613458848285016131a9565b91505092915050565b6000602082840312156134775761347661442f565b5b6000613485848285016131be565b91505092915050565b6000602082840312156134a4576134a361442f565b5b600082013567ffffffffffffffff8111156134c2576134c161442a565b5b6134ce84828501613201565b91505092915050565b6000602082840312156134ed576134ec61442f565b5b60006134fb8482850161322f565b91505092915050565b60006135108383613a1e565b60208301905092915050565b613525816141b1565b82525050565b6135348161412b565b82525050565b600061354582613f9f565b61354f8185613fcd565b935061355a83613f8f565b8060005b8381101561358b5781516135728882613504565b975061357d83613fc0565b92505060018101905061355e565b5085935050505092915050565b6135a18161414f565b82525050565b60006135b282613faa565b6135bc8185613fde565b93506135cc8185602086016141f6565b6135d581614434565b840191505092915050565b60006135eb82613fb5565b6135f58185613ffa565b93506136058185602086016141f6565b61360e81614434565b840191505092915050565b600061362482613fb5565b61362e818561400b565b935061363e8185602086016141f6565b80840191505092915050565b6000613657602b83613ffa565b915061366282614445565b604082019050919050565b600061367a603283613ffa565b915061368582614494565b604082019050919050565b600061369d602683613ffa565b91506136a8826144e3565b604082019050919050565b60006136c0601c83613ffa565b91506136cb82614532565b602082019050919050565b60006136e3602683613ffa565b91506136ee8261455b565b604082019050919050565b6000613706602483613ffa565b9150613711826145aa565b604082019050919050565b6000613729601983613ffa565b9150613734826145f9565b602082019050919050565b600061374c602083613ffa565b915061375782614622565b602082019050919050565b600061376f603a83613ffa565b915061377a8261464b565b604082019050919050565b6000613792601d83613ffa565b915061379d8261469a565b602082019050919050565b60006137b5602c83613ffa565b91506137c0826146c3565b604082019050919050565b60006137d8602b83613ffa565b91506137e382614712565b604082019050919050565b60006137fb603283613ffa565b915061380682614761565b604082019050919050565b600061381e603883613ffa565b9150613829826147b0565b604082019050919050565b6000613841602a83613ffa565b915061384c826147ff565b604082019050919050565b6000613864602983613ffa565b915061386f8261484e565b604082019050919050565b6000613887602083613ffa565b91506138928261489d565b602082019050919050565b60006138aa602c83613ffa565b91506138b5826148c6565b604082019050919050565b60006138cd601b83613ffa565b91506138d882614915565b602082019050919050565b60006138f0602083613ffa565b91506138fb8261493e565b602082019050919050565b6000613913602983613ffa565b915061391e82614967565b604082019050919050565b6000613936602f83613ffa565b9150613941826149b6565b604082019050919050565b6000613959602183613ffa565b915061396482614a05565b604082019050919050565b600061397c601983613ffa565b915061398782614a54565b602082019050919050565b600061399f602183613ffa565b91506139aa82614a7d565b604082019050919050565b60006139c2600083613fef565b91506139cd82614acc565b600082019050919050565b60006139e5603183613ffa565b91506139f082614acf565b604082019050919050565b6000613a08602c83613ffa565b9150613a1382614b1e565b604082019050919050565b613a27816141a7565b82525050565b613a36816141a7565b82525050565b6000613a488285613619565b9150613a548284613619565b91508190509392505050565b6000613a6b826139b5565b9150819050919050565b6000602082019050613a8a600083018461352b565b92915050565b6000604082019050613aa5600083018561351c565b613ab26020830184613a2d565b9392505050565b6000608082019050613ace600083018761352b565b613adb602083018661352b565b613ae86040830185613a2d565b8181036060830152613afa81846135a7565b905095945050505050565b6000604082019050613b1a600083018561352b565b613b276020830184613a2d565b9392505050565b60006020820190508181036000830152613b48818461353a565b905092915050565b6000602082019050613b656000830184613598565b92915050565b60006020820190508181036000830152613b8581846135e0565b905092915050565b60006020820190508181036000830152613ba68161364a565b9050919050565b60006020820190508181036000830152613bc68161366d565b9050919050565b60006020820190508181036000830152613be681613690565b9050919050565b60006020820190508181036000830152613c06816136b3565b9050919050565b60006020820190508181036000830152613c26816136d6565b9050919050565b60006020820190508181036000830152613c46816136f9565b9050919050565b60006020820190508181036000830152613c668161371c565b9050919050565b60006020820190508181036000830152613c868161373f565b9050919050565b60006020820190508181036000830152613ca681613762565b9050919050565b60006020820190508181036000830152613cc681613785565b9050919050565b60006020820190508181036000830152613ce6816137a8565b9050919050565b60006020820190508181036000830152613d06816137cb565b9050919050565b60006020820190508181036000830152613d26816137ee565b9050919050565b60006020820190508181036000830152613d4681613811565b9050919050565b60006020820190508181036000830152613d6681613834565b9050919050565b60006020820190508181036000830152613d8681613857565b9050919050565b60006020820190508181036000830152613da68161387a565b9050919050565b60006020820190508181036000830152613dc68161389d565b9050919050565b60006020820190508181036000830152613de6816138c0565b9050919050565b60006020820190508181036000830152613e06816138e3565b9050919050565b60006020820190508181036000830152613e2681613906565b9050919050565b60006020820190508181036000830152613e4681613929565b9050919050565b60006020820190508181036000830152613e668161394c565b9050919050565b60006020820190508181036000830152613e868161396f565b9050919050565b60006020820190508181036000830152613ea681613992565b9050919050565b60006020820190508181036000830152613ec6816139d8565b9050919050565b60006020820190508181036000830152613ee6816139fb565b9050919050565b6000602082019050613f026000830184613a2d565b92915050565b6000613f12613f23565b9050613f1e828261425b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f4857613f476143f1565b5b613f5182614434565b9050602081019050919050565b600067ffffffffffffffff821115613f7957613f786143f1565b5b613f8282614434565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614021826141a7565b915061402c836141a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561406157614060614306565b5b828201905092915050565b6000614077826141a7565b9150614082836141a7565b92508261409257614091614335565b5b828204905092915050565b60006140a8826141a7565b91506140b3836141a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ec576140eb614306565b5b828202905092915050565b6000614102826141a7565b915061410d836141a7565b9250828210156141205761411f614306565b5b828203905092915050565b600061413682614187565b9050919050565b600061414882614187565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006141bc826141c3565b9050919050565b60006141ce826141d5565b9050919050565b60006141e082614187565b9050919050565b82818337600083830152505050565b60005b838110156142145780820151818401526020810190506141f9565b83811115614223576000848401525b50505050565b6000600282049050600182168061424157607f821691505b6020821081141561425557614254614364565b5b50919050565b61426482614434565b810181811067ffffffffffffffff82111715614283576142826143f1565b5b80604052505050565b6000614297826141a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ca576142c9614306565b5b600182019050919050565b60006142e0826141a7565b91506142eb836141a7565b9250826142fb576142fa614335565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f47656e6572616c2073616c6520686173206e6f74207374617274656420796574600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662032302046726f60008201527f677320706572207472616e73616374696f6e0000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2046726f6720737570706c790000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f457863656564732063757272656e742046726f6720737570706c79206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614b768161412b565b8114614b8157600080fd5b50565b614b8d8161413d565b8114614b9857600080fd5b50565b614ba48161414f565b8114614baf57600080fd5b50565b614bbb8161415b565b8114614bc657600080fd5b50565b614bd2816141a7565b8114614bdd57600080fd5b5056fea2646970667358221220b54c5953a8a49f0f31ea81409072edf40686ec85e495f74f70d019adbaad4eb864736f6c63430008070033

Deployed Bytecode Sourcemap

55472:2825:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52916:40;52932:12;:10;:12::i;:::-;52946:9;52916:40;;;;;;;:::i;:::-;;;;;;;;55472:2825;;;;;34858:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23306:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22829:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57702:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35498:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54122:613;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24196:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35166:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55763:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53047:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58187:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24606:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57837:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35688:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55708:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57495:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21441:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21171:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42661:94;;;;;;;;;;;;;:::i;:::-;;53822:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56914:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42010:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57274:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21916:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53622:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57613:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56319:587;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23599:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24862:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55665:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22091:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53418:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55620:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53232:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23965:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42910:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55805:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16204:98;16257:7;16284:10;16277:17;;16204:98;:::o;34858:224::-;34960:4;34999:35;34984:50;;;:11;:50;;;;:90;;;;35038:36;35062:11;35038:23;:36::i;:::-;34984:90;34977:97;;34858:224;;;:::o;21747:100::-;21801:13;21834:5;21827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21747:100;:::o;23306:221::-;23382:7;23410:16;23418:7;23410;:16::i;:::-;23402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23495:15;:24;23511:7;23495:24;;;;;;;;;;;;;;;;;;;;;23488:31;;23306:221;;;:::o;22829:411::-;22910:13;22926:23;22941:7;22926:14;:23::i;:::-;22910:39;;22974:5;22968:11;;:2;:11;;;;22960:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23068:5;23052:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23077:37;23094:5;23101:12;:10;:12::i;:::-;23077:16;:37::i;:::-;23052:62;23030:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23211:21;23220:2;23224:7;23211:8;:21::i;:::-;22899:341;22829:411;;:::o;57702:127::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57806:15:::1;57788;:33;;;;;;;;;;;;:::i;:::-;;57702:127:::0;:::o;35498:113::-;35559:7;35586:10;:17;;;;35579:24;;35498:113;:::o;54122:613::-;54217:1;54198:7;:16;54206:7;54198:16;;;;;;;;;;;;;;;;:20;54190:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54274:21;54322:14;;54298:21;:38;;;;:::i;:::-;54274:62;;54347:15;54417:9;:18;54427:7;54417:18;;;;;;;;;;;;;;;;54402:12;;54382:7;:16;54390:7;54382:16;;;;;;;;;;;;;;;;54366:13;:32;;;;:::i;:::-;54365:49;;;;:::i;:::-;:70;;;;:::i;:::-;54347:88;;54467:1;54456:7;:12;;54448:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54571:7;54550:9;:18;54560:7;54550:18;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;54529:9;:18;54539:7;54529:18;;;;;;;;;;;;;;;:49;;;;54623:7;54606:14;;:24;;;;:::i;:::-;54589:14;:41;;;;54643:35;54661:7;54670;54643:17;:35::i;:::-;54694:33;54710:7;54719;54694:33;;;;;;;:::i;:::-;;;;;;;;54179:556;;54122:613;:::o;24196:339::-;24391:41;24410:12;:10;:12::i;:::-;24424:7;24391:18;:41::i;:::-;24383:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24499:28;24509:4;24515:2;24519:7;24499:9;:28::i;:::-;24196:339;;;:::o;35166:256::-;35263:7;35299:23;35316:5;35299:16;:23::i;:::-;35291:5;:31;35283:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35388:12;:19;35401:5;35388:19;;;;;;;;;;;;;;;:26;35408:5;35388:26;;;;;;;;;;;;35381:33;;35166:256;;;;:::o;55763:33::-;;;;:::o;53047:91::-;53091:7;53118:12;;53111:19;;53047:91;:::o;58187:107::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58273:13:::1;58260:10;:26;;;;58187:107:::0;:::o;24606:185::-;24744:39;24761:4;24767:2;24771:7;24744:39;;;;;;;;;;;;:16;:39::i;:::-;24606:185;;;:::o;57837:342::-;57896:16;57925:18;57946:17;57956:6;57946:9;:17::i;:::-;57925:38;;57976:25;58018:10;58004:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57976:53;;58044:9;58040:106;58059:10;58055:1;:14;58040:106;;;58104:30;58124:6;58132:1;58104:19;:30::i;:::-;58090:8;58099:1;58090:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;58071:3;;;;;:::i;:::-;;;;58040:106;;;;58163:8;58156:15;;;;57837:342;;;:::o;35688:233::-;35763:7;35799:30;:28;:30::i;:::-;35791:5;:38;35783:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35896:10;35907:5;35896:17;;;;;;;;:::i;:::-;;;;;;;;;;35889:24;;35688:233;;;:::o;55708:46::-;;;;:::o;57495:110::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57586:11:::1;57570:13;:27;;;;;;;;;;;;:::i;:::-;;57495:110:::0;:::o;21441:239::-;21513:7;21533:13;21549:7;:16;21557:7;21549:16;;;;;;;;;;;;;;;;;;;;;21533:32;;21601:1;21584:19;;:5;:19;;;;21576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21667:5;21660:12;;;21441:239;;;:::o;21171:208::-;21243:7;21288:1;21271:19;;:5;:19;;;;21263:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21355:9;:16;21365:5;21355:16;;;;;;;;;;;;;;;;21348:23;;21171:208;;;:::o;42661:94::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42726:21:::1;42744:1;42726:9;:21::i;:::-;42661:94::o:0;53822:100::-;53873:7;53900;53908:5;53900:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53893:21;;53822:100;;;:::o;56914:305::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56992:14:::1;57009:13;:11;:13::i;:::-;56992:30;;57060:10;;57050:6;57041;:15;;;;:::i;:::-;:29;;57033:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57127:9;57123:89;57142:6;57138:1;:10;57123:89;;;57169:31;57179:7;57197:1;57188:6;:10;;;;:::i;:::-;57169:9;:31::i;:::-;57150:3;;;;;:::i;:::-;;;;57123:89;;;;56981:238;56914:305:::0;;:::o;42010:87::-;42056:7;42083:6;;;;;;;;;;;42076:13;;42010:87;:::o;57274:91::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57348:9:::1;57339:6;:18;;;;57274:91:::0;:::o;21916:104::-;21972:13;22005:7;21998:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21916:104;:::o;53622:109::-;53678:7;53705:9;:18;53715:7;53705:18;;;;;;;;;;;;;;;;53698:25;;53622:109;;;:::o;57613:81::-;57654:7;57680:6;;57673:13;;57613:81;:::o;56319:587::-;56375:14;56392:13;:11;:13::i;:::-;56375:30;;56444:10;;56425:15;:29;;56416:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56529:26;;56519:6;:36;;56510:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;56650:10;;56640:6;56631;:15;;;;:::i;:::-;:29;;56622:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;56748:6;56739;;:15;;;;:::i;:::-;56726:9;:28;;56717:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56810:9;56806:93;56825:6;56821:1;:10;56806:93;;;56852:35;56863:10;56884:1;56875:6;:10;;;;:::i;:::-;56852:9;:35::i;:::-;56833:3;;;;;:::i;:::-;;;;56806:93;;;;56364:542;56319:587;:::o;23599:295::-;23714:12;:10;:12::i;:::-;23702:24;;:8;:24;;;;23694:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23814:8;23769:18;:32;23788:12;:10;:12::i;:::-;23769:32;;;;;;;;;;;;;;;:42;23802:8;23769:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23867:8;23838:48;;23853:12;:10;:12::i;:::-;23838:48;;;23877:8;23838:48;;;;;;:::i;:::-;;;;;;;;23599:295;;:::o;24862:328::-;25037:41;25056:12;:10;:12::i;:::-;25070:7;25037:18;:41::i;:::-;25029:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25143:39;25157:4;25163:2;25167:7;25176:5;25143:13;:39::i;:::-;24862:328;;;;:::o;55665:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22091:334::-;22164:13;22198:16;22206:7;22198;:16::i;:::-;22190:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22279:21;22303:10;:8;:10::i;:::-;22279:34;;22355:1;22337:7;22331:21;:25;:86;;;;;;;;;;;;;;;;;22383:7;22392:18;:7;:16;:18::i;:::-;22366:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22331:86;22324:93;;;22091:334;;;:::o;53418:105::-;53472:7;53499;:16;53507:7;53499:16;;;;;;;;;;;;;;;;53492:23;;53418:105;;;:::o;55620:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53232:95::-;53278:7;53305:14;;53298:21;;53232:95;:::o;23965:164::-;24062:4;24086:18;:25;24105:5;24086:25;;;;;;;;;;;;;;;:35;24112:8;24086:35;;;;;;;;;;;;;;;;;;;;;;;;;24079:42;;23965:164;;;;:::o;42910:192::-;42241:12;:10;:12::i;:::-;42230:23;;:7;:5;:7::i;:::-;:23;;;42222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43019:1:::1;42999:22;;:8;:22;;;;42991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43075:19;43085:8;43075:9;:19::i;:::-;42910:192:::0;:::o;55805:38::-;;;;:::o;20802:305::-;20904:4;20956:25;20941:40;;;:11;:40;;;;:105;;;;21013:33;20998:48;;;:11;:48;;;;20941:105;:158;;;;21063:36;21087:11;21063:23;:36::i;:::-;20941:158;20921:178;;20802:305;;;:::o;26700:127::-;26765:4;26817:1;26789:30;;:7;:16;26797:7;26789:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26782:37;;26700:127;;;:::o;30682:174::-;30784:2;30757:15;:24;30773:7;30757:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30840:7;30836:2;30802:46;;30811:23;30826:7;30811:14;:23::i;:::-;30802:46;;;;;;;;;;;;30682:174;;:::o;9562:317::-;9677:6;9652:21;:31;;9644:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9731:12;9749:9;:14;;9771:6;9749:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9730:52;;;9801:7;9793:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;9633:246;9562:317;;:::o;26994:348::-;27087:4;27112:16;27120:7;27112;:16::i;:::-;27104:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27188:13;27204:23;27219:7;27204:14;:23::i;:::-;27188:39;;27257:5;27246:16;;:7;:16;;;:51;;;;27290:7;27266:31;;:20;27278:7;27266:11;:20::i;:::-;:31;;;27246:51;:87;;;;27301:32;27318:5;27325:7;27301:16;:32::i;:::-;27246:87;27238:96;;;26994:348;;;;:::o;29986:578::-;30145:4;30118:31;;:23;30133:7;30118:14;:23::i;:::-;:31;;;30110:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30228:1;30214:16;;:2;:16;;;;30206:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30284:39;30305:4;30311:2;30315:7;30284:20;:39::i;:::-;30388:29;30405:1;30409:7;30388:8;:29::i;:::-;30449:1;30430:9;:15;30440:4;30430:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30478:1;30461:9;:13;30471:2;30461:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30509:2;30490:7;:16;30498:7;30490:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30548:7;30544:2;30529:27;;30538:4;30529:27;;;;;;;;;;;;29986:578;;;:::o;43110:173::-;43166:16;43185:6;;;;;;;;;;;43166:25;;43211:8;43202:6;;:17;;;;;;;;;;;;;;;;;;43266:8;43235:40;;43256:8;43235:40;;;;;;;;;;;;43155:128;43110:173;:::o;27684:110::-;27760:26;27770:2;27774:7;27760:26;;;;;;;;;;;;:9;:26::i;:::-;27684:110;;:::o;26072:315::-;26229:28;26239:4;26245:2;26249:7;26229:9;:28::i;:::-;26276:48;26299:4;26305:2;26309:7;26318:5;26276:22;:48::i;:::-;26268:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26072:315;;;;:::o;57373:114::-;57433:13;57466;57459:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57373:114;:::o;16737:723::-;16793:13;17023:1;17014:5;:10;17010:53;;;17041:10;;;;;;;;;;;;;;;;;;;;;17010:53;17073:12;17088:5;17073:20;;17104:14;17129:78;17144:1;17136:4;:9;17129:78;;17162:8;;;;;:::i;:::-;;;;17193:2;17185:10;;;;;:::i;:::-;;;17129:78;;;17217:19;17249:6;17239:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17217:39;;17267:154;17283:1;17274:5;:10;17267:154;;17311:1;17301:11;;;;;:::i;:::-;;;17378:2;17370:5;:10;;;;:::i;:::-;17357:2;:24;;;;:::i;:::-;17344:39;;17327:6;17334;17327:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17407:2;17398:11;;;;;:::i;:::-;;;17267:154;;;17445:6;17431:21;;;;;16737:723;;;;:::o;19300:157::-;19385:4;19424:25;19409:40;;;:11;:40;;;;19402:47;;19300:157;;;:::o;36534:589::-;36678:45;36705:4;36711:2;36715:7;36678:26;:45::i;:::-;36756:1;36740:18;;:4;:18;;;36736:187;;;36775:40;36807:7;36775:31;:40::i;:::-;36736:187;;;36845:2;36837:10;;:4;:10;;;36833:90;;36864:47;36897:4;36903:7;36864:32;:47::i;:::-;36833:90;36736:187;36951:1;36937:16;;:2;:16;;;36933:183;;;36970:45;37007:7;36970:36;:45::i;:::-;36933:183;;;37043:4;37037:10;;:2;:10;;;37033:83;;37064:40;37092:2;37096:7;37064:27;:40::i;:::-;37033:83;36933:183;36534:589;;;:::o;28021:321::-;28151:18;28157:2;28161:7;28151:5;:18::i;:::-;28202:54;28233:1;28237:2;28241:7;28250:5;28202:22;:54::i;:::-;28180:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28021:321;;;:::o;31421:799::-;31576:4;31597:15;:2;:13;;;:15::i;:::-;31593:620;;;31649:2;31633:36;;;31670:12;:10;:12::i;:::-;31684:4;31690:7;31699:5;31633:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31629:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31892:1;31875:6;:13;:18;31871:272;;;31918:60;;;;;;;;;;:::i;:::-;;;;;;;;31871:272;32093:6;32087:13;32078:6;32074:2;32070:15;32063:38;31629:529;31766:41;;;31756:51;;;:6;:51;;;;31749:58;;;;;31593:620;32197:4;32190:11;;31421:799;;;;;;;:::o;32792:126::-;;;;:::o;37846:164::-;37950:10;:17;;;;37923:15;:24;37939:7;37923:24;;;;;;;;;;;:44;;;;37978:10;37994:7;37978:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37846:164;:::o;38637:988::-;38903:22;38953:1;38928:22;38945:4;38928:16;:22::i;:::-;:26;;;;:::i;:::-;38903:51;;38965:18;38986:17;:26;39004:7;38986:26;;;;;;;;;;;;38965:47;;39133:14;39119:10;:28;39115:328;;39164:19;39186:12;:18;39199:4;39186:18;;;;;;;;;;;;;;;:34;39205:14;39186:34;;;;;;;;;;;;39164:56;;39270:11;39237:12;:18;39250:4;39237:18;;;;;;;;;;;;;;;:30;39256:10;39237:30;;;;;;;;;;;:44;;;;39387:10;39354:17;:30;39372:11;39354:30;;;;;;;;;;;:43;;;;39149:294;39115:328;39539:17;:26;39557:7;39539:26;;;;;;;;;;;39532:33;;;39583:12;:18;39596:4;39583:18;;;;;;;;;;;;;;;:34;39602:14;39583:34;;;;;;;;;;;39576:41;;;38718:907;;38637:988;;:::o;39920:1079::-;40173:22;40218:1;40198:10;:17;;;;:21;;;;:::i;:::-;40173:46;;40230:18;40251:15;:24;40267:7;40251:24;;;;;;;;;;;;40230:45;;40602:19;40624:10;40635:14;40624:26;;;;;;;;:::i;:::-;;;;;;;;;;40602:48;;40688:11;40663:10;40674;40663:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40799:10;40768:15;:28;40784:11;40768:28;;;;;;;;;;;:41;;;;40940:15;:24;40956:7;40940:24;;;;;;;;;;;40933:31;;;40975:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39991:1008;;;39920:1079;:::o;37424:221::-;37509:14;37526:20;37543:2;37526:16;:20::i;:::-;37509:37;;37584:7;37557:12;:16;37570:2;37557:16;;;;;;;;;;;;;;;:24;37574:6;37557:24;;;;;;;;;;;:34;;;;37631:6;37602:17;:26;37620:7;37602:26;;;;;;;;;;;:35;;;;37498:147;37424:221;;:::o;28678:382::-;28772:1;28758:16;;:2;:16;;;;28750:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28831:16;28839:7;28831;:16::i;:::-;28830:17;28822:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28893:45;28922:1;28926:2;28930:7;28893:20;:45::i;:::-;28968:1;28951:9;:13;28961:2;28951:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28999:2;28980:7;:16;28988:7;28980:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29044:7;29040:2;29019:33;;29036:1;29019:33;;;;;;;;;;;;28678:382;;:::o;8240:387::-;8300:4;8508:12;8575:7;8563:20;8555:28;;8618:1;8611:4;:8;8604:15;;;8240: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:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1331:5;1369:6;1356:20;1347:29;;1385:32;1411:5;1385:32;:::i;:::-;1286:137;;;;:::o;1429:141::-;1485:5;1516:6;1510:13;1501:22;;1532:32;1558:5;1532:32;:::i;:::-;1429:141;;;;:::o;1589:338::-;1644:5;1693:3;1686:4;1678:6;1674:17;1670:27;1660:122;;1701:79;;:::i;:::-;1660:122;1818:6;1805:20;1843:78;1917:3;1909:6;1902:4;1894:6;1890:17;1843:78;:::i;:::-;1834:87;;1650:277;1589:338;;;;:::o;1947:340::-;2003:5;2052:3;2045:4;2037:6;2033:17;2029:27;2019:122;;2060:79;;:::i;:::-;2019:122;2177:6;2164:20;2202:79;2277:3;2269:6;2262:4;2254:6;2250:17;2202:79;:::i;:::-;2193:88;;2009:278;1947:340;;;;:::o;2293:139::-;2339:5;2377:6;2364:20;2355:29;;2393:33;2420:5;2393:33;:::i;:::-;2293:139;;;;:::o;2438:329::-;2497:6;2546:2;2534:9;2525:7;2521:23;2517:32;2514:119;;;2552:79;;:::i;:::-;2514:119;2672:1;2697:53;2742:7;2733:6;2722:9;2718:22;2697:53;:::i;:::-;2687:63;;2643:117;2438:329;;;;:::o;2773:345::-;2840:6;2889:2;2877:9;2868:7;2864:23;2860:32;2857:119;;;2895:79;;:::i;:::-;2857:119;3015:1;3040:61;3093:7;3084:6;3073:9;3069:22;3040:61;:::i;:::-;3030:71;;2986:125;2773:345;;;;:::o;3124:474::-;3192:6;3200;3249:2;3237:9;3228:7;3224:23;3220:32;3217:119;;;3255:79;;:::i;:::-;3217:119;3375:1;3400:53;3445:7;3436:6;3425:9;3421:22;3400:53;:::i;:::-;3390:63;;3346:117;3502:2;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3473:118;3124:474;;;;;:::o;3604:619::-;3681:6;3689;3697;3746:2;3734:9;3725:7;3721:23;3717:32;3714:119;;;3752:79;;:::i;:::-;3714:119;3872:1;3897:53;3942:7;3933:6;3922:9;3918:22;3897:53;:::i;:::-;3887:63;;3843:117;3999:2;4025:53;4070:7;4061:6;4050:9;4046:22;4025:53;:::i;:::-;4015:63;;3970:118;4127:2;4153:53;4198:7;4189:6;4178:9;4174:22;4153:53;:::i;:::-;4143:63;;4098:118;3604:619;;;;;:::o;4229:943::-;4324:6;4332;4340;4348;4397:3;4385:9;4376:7;4372:23;4368:33;4365:120;;;4404:79;;:::i;:::-;4365:120;4524:1;4549:53;4594:7;4585:6;4574:9;4570:22;4549:53;:::i;:::-;4539:63;;4495:117;4651:2;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4622:118;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4935:2;4924:9;4920:18;4907:32;4966:18;4958:6;4955:30;4952:117;;;4988:79;;:::i;:::-;4952:117;5093:62;5147:7;5138:6;5127:9;5123:22;5093:62;:::i;:::-;5083:72;;4878:287;4229:943;;;;;;;:::o;5178:468::-;5243:6;5251;5300:2;5288:9;5279:7;5275:23;5271:32;5268:119;;;5306:79;;:::i;:::-;5268:119;5426:1;5451:53;5496:7;5487:6;5476:9;5472:22;5451:53;:::i;:::-;5441:63;;5397:117;5553:2;5579:50;5621:7;5612:6;5601:9;5597:22;5579:50;:::i;:::-;5569:60;;5524:115;5178:468;;;;;:::o;5652:474::-;5720:6;5728;5777:2;5765:9;5756:7;5752:23;5748:32;5745:119;;;5783:79;;:::i;:::-;5745:119;5903:1;5928:53;5973:7;5964:6;5953:9;5949:22;5928:53;:::i;:::-;5918:63;;5874:117;6030:2;6056:53;6101:7;6092:6;6081:9;6077:22;6056:53;:::i;:::-;6046:63;;6001:118;5652:474;;;;;:::o;6132:327::-;6190:6;6239:2;6227:9;6218:7;6214:23;6210:32;6207:119;;;6245:79;;:::i;:::-;6207:119;6365:1;6390:52;6434:7;6425:6;6414:9;6410:22;6390:52;:::i;:::-;6380:62;;6336:116;6132:327;;;;:::o;6465:349::-;6534:6;6583:2;6571:9;6562:7;6558:23;6554:32;6551:119;;;6589:79;;:::i;:::-;6551:119;6709:1;6734:63;6789:7;6780:6;6769:9;6765:22;6734:63;:::i;:::-;6724:73;;6680:127;6465:349;;;;:::o;6820:509::-;6889:6;6938:2;6926:9;6917:7;6913:23;6909:32;6906:119;;;6944:79;;:::i;:::-;6906:119;7092:1;7081:9;7077:17;7064:31;7122:18;7114:6;7111:30;7108:117;;;7144:79;;:::i;:::-;7108:117;7249:63;7304:7;7295:6;7284:9;7280:22;7249:63;:::i;:::-;7239:73;;7035:287;6820:509;;;;:::o;7335:329::-;7394:6;7443:2;7431:9;7422:7;7418:23;7414:32;7411:119;;;7449:79;;:::i;:::-;7411:119;7569:1;7594:53;7639:7;7630:6;7619:9;7615:22;7594:53;:::i;:::-;7584:63;;7540:117;7335:329;;;;:::o;7670:179::-;7739:10;7760:46;7802:3;7794:6;7760:46;:::i;:::-;7838:4;7833:3;7829:14;7815:28;;7670:179;;;;:::o;7855:147::-;7950:45;7989:5;7950:45;:::i;:::-;7945:3;7938:58;7855:147;;:::o;8008:118::-;8095:24;8113:5;8095:24;:::i;:::-;8090:3;8083:37;8008:118;;:::o;8162:732::-;8281:3;8310:54;8358:5;8310:54;:::i;:::-;8380:86;8459:6;8454:3;8380:86;:::i;:::-;8373:93;;8490:56;8540:5;8490:56;:::i;:::-;8569:7;8600:1;8585:284;8610:6;8607:1;8604:13;8585:284;;;8686:6;8680:13;8713:63;8772:3;8757:13;8713:63;:::i;:::-;8706:70;;8799:60;8852:6;8799:60;:::i;:::-;8789:70;;8645:224;8632:1;8629;8625:9;8620:14;;8585:284;;;8589:14;8885:3;8878:10;;8286:608;;;8162:732;;;;:::o;8900:109::-;8981:21;8996:5;8981:21;:::i;:::-;8976:3;8969:34;8900:109;;:::o;9015:360::-;9101:3;9129:38;9161:5;9129:38;:::i;:::-;9183:70;9246:6;9241:3;9183:70;:::i;:::-;9176:77;;9262:52;9307:6;9302:3;9295:4;9288:5;9284:16;9262:52;:::i;:::-;9339:29;9361:6;9339:29;:::i;:::-;9334:3;9330:39;9323:46;;9105:270;9015:360;;;;:::o;9381:364::-;9469:3;9497:39;9530:5;9497:39;:::i;:::-;9552:71;9616:6;9611:3;9552:71;:::i;:::-;9545:78;;9632:52;9677:6;9672:3;9665:4;9658:5;9654:16;9632:52;:::i;:::-;9709:29;9731:6;9709:29;:::i;:::-;9704:3;9700:39;9693:46;;9473:272;9381:364;;;;:::o;9751:377::-;9857:3;9885:39;9918:5;9885:39;:::i;:::-;9940:89;10022:6;10017:3;9940:89;:::i;:::-;9933:96;;10038:52;10083:6;10078:3;10071:4;10064:5;10060:16;10038:52;:::i;:::-;10115:6;10110:3;10106:16;10099:23;;9861:267;9751:377;;;;:::o;10134:366::-;10276:3;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10134:366;;;:::o;10506:::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:::-;11020:3;11041:67;11105:2;11100:3;11041:67;:::i;:::-;11034:74;;11117:93;11206:3;11117:93;:::i;:::-;11235:2;11230:3;11226:12;11219:19;;10878:366;;;:::o;11250:::-;11392:3;11413:67;11477:2;11472:3;11413:67;:::i;:::-;11406:74;;11489:93;11578:3;11489:93;:::i;:::-;11607:2;11602:3;11598:12;11591:19;;11250:366;;;:::o;11622:::-;11764:3;11785:67;11849:2;11844:3;11785:67;:::i;:::-;11778:74;;11861:93;11950:3;11861:93;:::i;:::-;11979:2;11974:3;11970:12;11963:19;;11622:366;;;:::o;11994:::-;12136:3;12157:67;12221:2;12216:3;12157:67;:::i;:::-;12150:74;;12233:93;12322:3;12233:93;:::i;:::-;12351:2;12346:3;12342:12;12335:19;;11994:366;;;:::o;12366:::-;12508:3;12529:67;12593:2;12588:3;12529:67;:::i;:::-;12522:74;;12605:93;12694:3;12605:93;:::i;:::-;12723:2;12718:3;12714:12;12707:19;;12366:366;;;:::o;12738:::-;12880:3;12901:67;12965:2;12960:3;12901:67;:::i;:::-;12894:74;;12977:93;13066:3;12977:93;:::i;:::-;13095:2;13090:3;13086:12;13079:19;;12738:366;;;:::o;13110:::-;13252:3;13273:67;13337:2;13332:3;13273:67;:::i;:::-;13266:74;;13349:93;13438:3;13349:93;:::i;:::-;13467:2;13462:3;13458:12;13451:19;;13110:366;;;:::o;13482:::-;13624:3;13645:67;13709:2;13704:3;13645:67;:::i;:::-;13638:74;;13721:93;13810:3;13721:93;:::i;:::-;13839:2;13834:3;13830:12;13823:19;;13482:366;;;:::o;13854:::-;13996:3;14017:67;14081:2;14076:3;14017:67;:::i;:::-;14010:74;;14093:93;14182:3;14093:93;:::i;:::-;14211:2;14206:3;14202:12;14195:19;;13854:366;;;:::o;14226:::-;14368:3;14389:67;14453:2;14448:3;14389:67;:::i;:::-;14382:74;;14465:93;14554:3;14465:93;:::i;:::-;14583:2;14578:3;14574:12;14567:19;;14226:366;;;:::o;14598:::-;14740:3;14761:67;14825:2;14820:3;14761:67;:::i;:::-;14754:74;;14837:93;14926:3;14837:93;:::i;:::-;14955:2;14950:3;14946:12;14939:19;;14598:366;;;:::o;14970:::-;15112:3;15133:67;15197:2;15192:3;15133:67;:::i;:::-;15126:74;;15209:93;15298:3;15209:93;:::i;:::-;15327:2;15322:3;15318:12;15311:19;;14970:366;;;:::o;15342:::-;15484:3;15505:67;15569:2;15564:3;15505:67;:::i;:::-;15498:74;;15581:93;15670:3;15581:93;:::i;:::-;15699:2;15694:3;15690:12;15683:19;;15342:366;;;:::o;15714:::-;15856:3;15877:67;15941:2;15936:3;15877:67;:::i;:::-;15870:74;;15953:93;16042:3;15953:93;:::i;:::-;16071:2;16066:3;16062:12;16055:19;;15714:366;;;:::o;16086:::-;16228:3;16249:67;16313:2;16308:3;16249:67;:::i;:::-;16242:74;;16325:93;16414:3;16325:93;:::i;:::-;16443:2;16438:3;16434:12;16427:19;;16086:366;;;:::o;16458:::-;16600:3;16621:67;16685:2;16680:3;16621:67;:::i;:::-;16614:74;;16697:93;16786:3;16697:93;:::i;:::-;16815:2;16810:3;16806:12;16799:19;;16458:366;;;:::o;16830:::-;16972:3;16993:67;17057:2;17052:3;16993:67;:::i;:::-;16986:74;;17069:93;17158:3;17069:93;:::i;:::-;17187:2;17182:3;17178:12;17171:19;;16830:366;;;:::o;17202:::-;17344:3;17365:67;17429:2;17424:3;17365:67;:::i;:::-;17358:74;;17441:93;17530:3;17441:93;:::i;:::-;17559:2;17554:3;17550:12;17543:19;;17202:366;;;:::o;17574:::-;17716:3;17737:67;17801:2;17796:3;17737:67;:::i;:::-;17730:74;;17813:93;17902:3;17813:93;:::i;:::-;17931:2;17926:3;17922:12;17915:19;;17574:366;;;:::o;17946:::-;18088:3;18109:67;18173:2;18168:3;18109:67;:::i;:::-;18102:74;;18185:93;18274:3;18185:93;:::i;:::-;18303:2;18298:3;18294:12;18287:19;;17946:366;;;:::o;18318:::-;18460:3;18481:67;18545:2;18540:3;18481:67;:::i;:::-;18474:74;;18557:93;18646:3;18557:93;:::i;:::-;18675:2;18670:3;18666:12;18659:19;;18318:366;;;:::o;18690:::-;18832:3;18853:67;18917:2;18912:3;18853:67;:::i;:::-;18846:74;;18929:93;19018:3;18929:93;:::i;:::-;19047:2;19042:3;19038:12;19031:19;;18690:366;;;:::o;19062:::-;19204:3;19225:67;19289:2;19284:3;19225:67;:::i;:::-;19218:74;;19301:93;19390:3;19301:93;:::i;:::-;19419:2;19414:3;19410:12;19403:19;;19062:366;;;:::o;19434:398::-;19593:3;19614:83;19695:1;19690:3;19614:83;:::i;:::-;19607:90;;19706:93;19795:3;19706:93;:::i;:::-;19824:1;19819:3;19815:11;19808:18;;19434:398;;;:::o;19838:366::-;19980:3;20001:67;20065:2;20060:3;20001:67;:::i;:::-;19994:74;;20077:93;20166:3;20077:93;:::i;:::-;20195:2;20190:3;20186:12;20179:19;;19838:366;;;:::o;20210:::-;20352:3;20373:67;20437:2;20432:3;20373:67;:::i;:::-;20366:74;;20449:93;20538:3;20449:93;:::i;:::-;20567:2;20562:3;20558:12;20551:19;;20210:366;;;:::o;20582:108::-;20659:24;20677:5;20659:24;:::i;:::-;20654:3;20647:37;20582:108;;:::o;20696:118::-;20783:24;20801:5;20783:24;:::i;:::-;20778:3;20771:37;20696:118;;:::o;20820:435::-;21000:3;21022:95;21113:3;21104:6;21022:95;:::i;:::-;21015:102;;21134:95;21225:3;21216:6;21134:95;:::i;:::-;21127:102;;21246:3;21239:10;;20820:435;;;;;:::o;21261:379::-;21445:3;21467:147;21610:3;21467:147;:::i;:::-;21460:154;;21631:3;21624:10;;21261:379;;;:::o;21646:222::-;21739:4;21777:2;21766:9;21762:18;21754:26;;21790:71;21858:1;21847:9;21843:17;21834:6;21790:71;:::i;:::-;21646:222;;;;:::o;21874:348::-;22003:4;22041:2;22030:9;22026:18;22018:26;;22054:79;22130:1;22119:9;22115:17;22106:6;22054:79;:::i;:::-;22143:72;22211:2;22200:9;22196:18;22187:6;22143:72;:::i;:::-;21874:348;;;;;:::o;22228:640::-;22423:4;22461:3;22450:9;22446:19;22438:27;;22475:71;22543:1;22532:9;22528:17;22519:6;22475:71;:::i;:::-;22556:72;22624:2;22613:9;22609:18;22600:6;22556:72;:::i;:::-;22638;22706:2;22695:9;22691:18;22682:6;22638:72;:::i;:::-;22757:9;22751:4;22747:20;22742:2;22731:9;22727:18;22720:48;22785:76;22856:4;22847:6;22785:76;:::i;:::-;22777:84;;22228:640;;;;;;;:::o;22874:332::-;22995:4;23033:2;23022:9;23018:18;23010:26;;23046:71;23114:1;23103:9;23099:17;23090:6;23046:71;:::i;:::-;23127:72;23195:2;23184:9;23180:18;23171:6;23127:72;:::i;:::-;22874:332;;;;;:::o;23212:373::-;23355:4;23393:2;23382:9;23378:18;23370:26;;23442:9;23436:4;23432:20;23428:1;23417:9;23413:17;23406:47;23470:108;23573:4;23564:6;23470:108;:::i;:::-;23462:116;;23212:373;;;;:::o;23591:210::-;23678:4;23716:2;23705:9;23701:18;23693:26;;23729:65;23791:1;23780:9;23776:17;23767:6;23729:65;:::i;:::-;23591:210;;;;:::o;23807:313::-;23920:4;23958:2;23947:9;23943:18;23935:26;;24007:9;24001:4;23997:20;23993:1;23982:9;23978:17;23971:47;24035:78;24108:4;24099:6;24035:78;:::i;:::-;24027:86;;23807:313;;;;:::o;24126:419::-;24292:4;24330:2;24319:9;24315:18;24307:26;;24379:9;24373:4;24369:20;24365:1;24354:9;24350:17;24343:47;24407:131;24533:4;24407:131;:::i;:::-;24399:139;;24126:419;;;:::o;24551:::-;24717:4;24755:2;24744:9;24740:18;24732:26;;24804:9;24798:4;24794:20;24790:1;24779:9;24775:17;24768:47;24832:131;24958:4;24832:131;:::i;:::-;24824:139;;24551:419;;;:::o;24976:::-;25142:4;25180:2;25169:9;25165:18;25157:26;;25229:9;25223:4;25219:20;25215:1;25204:9;25200:17;25193:47;25257:131;25383:4;25257:131;:::i;:::-;25249:139;;24976:419;;;:::o;25401:::-;25567:4;25605:2;25594:9;25590:18;25582:26;;25654:9;25648:4;25644:20;25640:1;25629:9;25625:17;25618:47;25682:131;25808:4;25682:131;:::i;:::-;25674:139;;25401:419;;;:::o;25826:::-;25992:4;26030:2;26019:9;26015:18;26007:26;;26079:9;26073:4;26069:20;26065:1;26054:9;26050:17;26043:47;26107:131;26233:4;26107:131;:::i;:::-;26099:139;;25826:419;;;:::o;26251:::-;26417:4;26455:2;26444:9;26440:18;26432:26;;26504:9;26498:4;26494:20;26490:1;26479:9;26475:17;26468:47;26532:131;26658:4;26532:131;:::i;:::-;26524:139;;26251:419;;;:::o;26676:::-;26842:4;26880:2;26869:9;26865:18;26857:26;;26929:9;26923:4;26919:20;26915:1;26904:9;26900:17;26893:47;26957:131;27083:4;26957:131;:::i;:::-;26949:139;;26676:419;;;:::o;27101:::-;27267:4;27305:2;27294:9;27290:18;27282:26;;27354:9;27348:4;27344:20;27340:1;27329:9;27325:17;27318:47;27382:131;27508:4;27382:131;:::i;:::-;27374:139;;27101:419;;;:::o;27526:::-;27692:4;27730:2;27719:9;27715:18;27707:26;;27779:9;27773:4;27769:20;27765:1;27754:9;27750:17;27743:47;27807:131;27933:4;27807:131;:::i;:::-;27799:139;;27526:419;;;:::o;27951:::-;28117:4;28155:2;28144:9;28140:18;28132:26;;28204:9;28198:4;28194:20;28190:1;28179:9;28175:17;28168:47;28232:131;28358:4;28232:131;:::i;:::-;28224:139;;27951:419;;;:::o;28376:::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28629:9;28623:4;28619:20;28615:1;28604:9;28600:17;28593:47;28657:131;28783:4;28657:131;:::i;:::-;28649:139;;28376:419;;;:::o;28801:::-;28967:4;29005:2;28994:9;28990:18;28982:26;;29054:9;29048:4;29044:20;29040:1;29029:9;29025:17;29018:47;29082:131;29208:4;29082:131;:::i;:::-;29074:139;;28801:419;;;:::o;29226:::-;29392:4;29430:2;29419:9;29415:18;29407:26;;29479:9;29473:4;29469:20;29465:1;29454:9;29450:17;29443:47;29507:131;29633:4;29507:131;:::i;:::-;29499:139;;29226:419;;;:::o;29651:::-;29817:4;29855:2;29844:9;29840:18;29832:26;;29904:9;29898:4;29894:20;29890:1;29879:9;29875:17;29868:47;29932:131;30058:4;29932:131;:::i;:::-;29924:139;;29651:419;;;:::o;30076:::-;30242:4;30280:2;30269:9;30265:18;30257:26;;30329:9;30323:4;30319:20;30315:1;30304:9;30300:17;30293:47;30357:131;30483:4;30357:131;:::i;:::-;30349:139;;30076:419;;;:::o;30501:::-;30667:4;30705:2;30694:9;30690:18;30682:26;;30754:9;30748:4;30744:20;30740:1;30729:9;30725:17;30718:47;30782:131;30908:4;30782:131;:::i;:::-;30774:139;;30501:419;;;:::o;30926:::-;31092:4;31130:2;31119:9;31115:18;31107:26;;31179:9;31173:4;31169:20;31165:1;31154:9;31150:17;31143:47;31207:131;31333:4;31207:131;:::i;:::-;31199:139;;30926:419;;;:::o;31351:::-;31517:4;31555:2;31544:9;31540:18;31532:26;;31604:9;31598:4;31594:20;31590:1;31579:9;31575:17;31568:47;31632:131;31758:4;31632:131;:::i;:::-;31624:139;;31351:419;;;:::o;31776:::-;31942:4;31980:2;31969:9;31965:18;31957:26;;32029:9;32023:4;32019:20;32015:1;32004:9;32000:17;31993:47;32057:131;32183:4;32057:131;:::i;:::-;32049:139;;31776:419;;;:::o;32201:::-;32367:4;32405:2;32394:9;32390:18;32382:26;;32454:9;32448:4;32444:20;32440:1;32429:9;32425:17;32418:47;32482:131;32608:4;32482:131;:::i;:::-;32474:139;;32201:419;;;:::o;32626:::-;32792:4;32830:2;32819:9;32815:18;32807:26;;32879:9;32873:4;32869:20;32865:1;32854:9;32850:17;32843:47;32907:131;33033:4;32907:131;:::i;:::-;32899:139;;32626:419;;;:::o;33051:::-;33217:4;33255:2;33244:9;33240:18;33232:26;;33304:9;33298:4;33294:20;33290:1;33279:9;33275:17;33268:47;33332:131;33458:4;33332:131;:::i;:::-;33324:139;;33051:419;;;:::o;33476:::-;33642:4;33680:2;33669:9;33665:18;33657:26;;33729:9;33723:4;33719:20;33715:1;33704:9;33700:17;33693:47;33757:131;33883:4;33757:131;:::i;:::-;33749:139;;33476:419;;;:::o;33901:::-;34067:4;34105:2;34094:9;34090:18;34082:26;;34154:9;34148:4;34144:20;34140:1;34129:9;34125:17;34118:47;34182:131;34308:4;34182:131;:::i;:::-;34174:139;;33901:419;;;:::o;34326:::-;34492:4;34530:2;34519:9;34515:18;34507:26;;34579:9;34573:4;34569:20;34565:1;34554:9;34550:17;34543:47;34607:131;34733:4;34607:131;:::i;:::-;34599:139;;34326:419;;;:::o;34751:::-;34917:4;34955:2;34944:9;34940:18;34932:26;;35004:9;34998:4;34994:20;34990:1;34979:9;34975:17;34968:47;35032:131;35158:4;35032:131;:::i;:::-;35024:139;;34751:419;;;:::o;35176:::-;35342:4;35380:2;35369:9;35365:18;35357:26;;35429:9;35423:4;35419:20;35415:1;35404:9;35400:17;35393:47;35457:131;35583:4;35457:131;:::i;:::-;35449:139;;35176:419;;;:::o;35601:222::-;35694:4;35732:2;35721:9;35717:18;35709:26;;35745:71;35813:1;35802:9;35798:17;35789:6;35745:71;:::i;:::-;35601:222;;;;:::o;35829:129::-;35863:6;35890:20;;:::i;:::-;35880:30;;35919:33;35947:4;35939:6;35919:33;:::i;:::-;35829:129;;;:::o;35964:75::-;35997:6;36030:2;36024:9;36014:19;;35964:75;:::o;36045:307::-;36106:4;36196:18;36188:6;36185:30;36182:56;;;36218:18;;:::i;:::-;36182:56;36256:29;36278:6;36256:29;:::i;:::-;36248:37;;36340:4;36334;36330:15;36322:23;;36045:307;;;:::o;36358:308::-;36420:4;36510:18;36502:6;36499:30;36496:56;;;36532:18;;:::i;:::-;36496:56;36570:29;36592:6;36570:29;:::i;:::-;36562:37;;36654:4;36648;36644:15;36636:23;;36358:308;;;:::o;36672:132::-;36739:4;36762:3;36754:11;;36792:4;36787:3;36783:14;36775:22;;36672:132;;;:::o;36810:114::-;36877:6;36911:5;36905:12;36895:22;;36810:114;;;:::o;36930:98::-;36981:6;37015:5;37009:12;36999:22;;36930:98;;;:::o;37034:99::-;37086:6;37120:5;37114:12;37104:22;;37034:99;;;:::o;37139:113::-;37209:4;37241;37236:3;37232:14;37224:22;;37139:113;;;:::o;37258:184::-;37357:11;37391:6;37386:3;37379:19;37431:4;37426:3;37422:14;37407:29;;37258:184;;;;:::o;37448:168::-;37531:11;37565:6;37560:3;37553:19;37605:4;37600:3;37596:14;37581:29;;37448:168;;;;:::o;37622:147::-;37723:11;37760:3;37745:18;;37622:147;;;;:::o;37775:169::-;37859:11;37893:6;37888:3;37881:19;37933:4;37928:3;37924:14;37909:29;;37775:169;;;;:::o;37950:148::-;38052:11;38089:3;38074:18;;37950:148;;;;:::o;38104:305::-;38144:3;38163:20;38181:1;38163:20;:::i;:::-;38158:25;;38197:20;38215:1;38197:20;:::i;:::-;38192:25;;38351:1;38283:66;38279:74;38276:1;38273:81;38270:107;;;38357:18;;:::i;:::-;38270:107;38401:1;38398;38394:9;38387:16;;38104:305;;;;:::o;38415:185::-;38455:1;38472:20;38490:1;38472:20;:::i;:::-;38467:25;;38506:20;38524:1;38506:20;:::i;:::-;38501:25;;38545:1;38535:35;;38550:18;;:::i;:::-;38535:35;38592:1;38589;38585:9;38580:14;;38415:185;;;;:::o;38606:348::-;38646:7;38669:20;38687:1;38669:20;:::i;:::-;38664:25;;38703:20;38721:1;38703:20;:::i;:::-;38698:25;;38891:1;38823:66;38819:74;38816:1;38813:81;38808:1;38801:9;38794:17;38790:105;38787:131;;;38898:18;;:::i;:::-;38787:131;38946:1;38943;38939:9;38928:20;;38606:348;;;;:::o;38960:191::-;39000:4;39020:20;39038:1;39020:20;:::i;:::-;39015:25;;39054:20;39072:1;39054:20;:::i;:::-;39049:25;;39093:1;39090;39087:8;39084:34;;;39098:18;;:::i;:::-;39084:34;39143:1;39140;39136:9;39128:17;;38960:191;;;;:::o;39157:96::-;39194:7;39223:24;39241:5;39223:24;:::i;:::-;39212:35;;39157:96;;;:::o;39259:104::-;39304:7;39333:24;39351:5;39333:24;:::i;:::-;39322:35;;39259:104;;;:::o;39369:90::-;39403:7;39446:5;39439:13;39432:21;39421:32;;39369:90;;;:::o;39465:149::-;39501:7;39541:66;39534:5;39530:78;39519:89;;39465:149;;;:::o;39620:126::-;39657:7;39697:42;39690:5;39686:54;39675:65;;39620:126;;;:::o;39752:77::-;39789:7;39818:5;39807:16;;39752:77;;;:::o;39835:134::-;39893:9;39926:37;39957:5;39926:37;:::i;:::-;39913:50;;39835:134;;;:::o;39975:126::-;40025:9;40058:37;40089:5;40058:37;:::i;:::-;40045:50;;39975:126;;;:::o;40107:113::-;40157:9;40190:24;40208:5;40190:24;:::i;:::-;40177:37;;40107:113;;;:::o;40226:154::-;40310:6;40305:3;40300;40287:30;40372:1;40363:6;40358:3;40354:16;40347:27;40226:154;;;:::o;40386:307::-;40454:1;40464:113;40478:6;40475:1;40472:13;40464:113;;;40563:1;40558:3;40554:11;40548:18;40544:1;40539:3;40535:11;40528:39;40500:2;40497:1;40493:10;40488:15;;40464:113;;;40595:6;40592:1;40589:13;40586:101;;;40675:1;40666:6;40661:3;40657:16;40650:27;40586:101;40435:258;40386:307;;;:::o;40699:320::-;40743:6;40780:1;40774:4;40770:12;40760:22;;40827:1;40821:4;40817:12;40848:18;40838:81;;40904:4;40896:6;40892:17;40882:27;;40838:81;40966:2;40958:6;40955:14;40935:18;40932:38;40929:84;;;40985:18;;:::i;:::-;40929:84;40750:269;40699:320;;;:::o;41025:281::-;41108:27;41130:4;41108:27;:::i;:::-;41100:6;41096:40;41238:6;41226:10;41223:22;41202:18;41190:10;41187:34;41184:62;41181:88;;;41249:18;;:::i;:::-;41181:88;41289:10;41285:2;41278:22;41068:238;41025:281;;:::o;41312:233::-;41351:3;41374:24;41392:5;41374:24;:::i;:::-;41365:33;;41420:66;41413:5;41410:77;41407:103;;;41490:18;;:::i;:::-;41407:103;41537:1;41530:5;41526:13;41519:20;;41312:233;;;:::o;41551:176::-;41583:1;41600:20;41618:1;41600:20;:::i;:::-;41595:25;;41634:20;41652:1;41634:20;:::i;:::-;41629:25;;41673:1;41663:35;;41678:18;;:::i;:::-;41663:35;41719:1;41716;41712:9;41707:14;;41551:176;;;;:::o;41733:180::-;41781:77;41778:1;41771:88;41878:4;41875:1;41868:15;41902:4;41899:1;41892:15;41919:180;41967:77;41964:1;41957:88;42064:4;42061:1;42054:15;42088:4;42085:1;42078:15;42105:180;42153:77;42150:1;42143:88;42250:4;42247:1;42240:15;42274:4;42271:1;42264:15;42291:180;42339:77;42336:1;42329:88;42436:4;42433:1;42426:15;42460:4;42457:1;42450:15;42477:180;42525:77;42522:1;42515:88;42622:4;42619:1;42612:15;42646:4;42643:1;42636:15;42663:180;42711:77;42708:1;42701:88;42808:4;42805:1;42798:15;42832:4;42829:1;42822:15;42849:117;42958:1;42955;42948:12;42972:117;43081:1;43078;43071:12;43095:117;43204:1;43201;43194:12;43218:117;43327:1;43324;43317:12;43341:102;43382:6;43433:2;43429:7;43424:2;43417:5;43413:14;43409:28;43399:38;;43341:102;;;:::o;43449:230::-;43589:34;43585:1;43577:6;43573:14;43566:58;43658:13;43653:2;43645:6;43641:15;43634:38;43449:230;:::o;43685:237::-;43825:34;43821:1;43813:6;43809:14;43802:58;43894:20;43889:2;43881:6;43877:15;43870:45;43685:237;:::o;43928:225::-;44068:34;44064:1;44056:6;44052:14;44045:58;44137:8;44132:2;44124:6;44120:15;44113:33;43928:225;:::o;44159:178::-;44299:30;44295:1;44287:6;44283:14;44276:54;44159:178;:::o;44343:225::-;44483:34;44479:1;44471:6;44467:14;44460:58;44552:8;44547:2;44539:6;44535:15;44528:33;44343:225;:::o;44574:223::-;44714:34;44710:1;44702:6;44698:14;44691:58;44783:6;44778:2;44770:6;44766:15;44759:31;44574:223;:::o;44803:175::-;44943:27;44939:1;44931:6;44927:14;44920:51;44803:175;:::o;44984:182::-;45124:34;45120:1;45112:6;45108:14;45101:58;44984:182;:::o;45172:245::-;45312:34;45308:1;45300:6;45296:14;45289:58;45381:28;45376:2;45368:6;45364:15;45357:53;45172:245;:::o;45423:179::-;45563:31;45559:1;45551:6;45547:14;45540:55;45423:179;:::o;45608:231::-;45748:34;45744:1;45736:6;45732:14;45725:58;45817:14;45812:2;45804:6;45800:15;45793:39;45608:231;:::o;45845:230::-;45985:34;45981:1;45973:6;45969:14;45962:58;46054:13;46049:2;46041:6;46037:15;46030:38;45845:230;:::o;46081:237::-;46221:34;46217:1;46209:6;46205:14;46198:58;46290:20;46285:2;46277:6;46273:15;46266:45;46081:237;:::o;46324:243::-;46464:34;46460:1;46452:6;46448:14;46441:58;46533:26;46528:2;46520:6;46516:15;46509:51;46324:243;:::o;46573:229::-;46713:34;46709:1;46701:6;46697:14;46690:58;46782:12;46777:2;46769:6;46765:15;46758:37;46573:229;:::o;46808:228::-;46948:34;46944:1;46936:6;46932:14;46925:58;47017:11;47012:2;47004:6;47000:15;46993:36;46808:228;:::o;47042:182::-;47182:34;47178:1;47170:6;47166:14;47159:58;47042:182;:::o;47230:231::-;47370:34;47366:1;47358:6;47354:14;47347:58;47439:14;47434:2;47426:6;47422:15;47415:39;47230:231;:::o;47467:177::-;47607:29;47603:1;47595:6;47591:14;47584:53;47467:177;:::o;47650:182::-;47790:34;47786:1;47778:6;47774:14;47767:58;47650:182;:::o;47838:228::-;47978:34;47974:1;47966:6;47962:14;47955:58;48047:11;48042:2;48034:6;48030:15;48023:36;47838:228;:::o;48072:234::-;48212:34;48208:1;48200:6;48196:14;48189:58;48281:17;48276:2;48268:6;48264:15;48257:42;48072:234;:::o;48312:220::-;48452:34;48448:1;48440:6;48436:14;48429:58;48521:3;48516:2;48508:6;48504:15;48497:28;48312:220;:::o;48538:175::-;48678:27;48674:1;48666:6;48662:14;48655:51;48538:175;:::o;48719:220::-;48859:34;48855:1;48847:6;48843:14;48836:58;48928:3;48923:2;48915:6;48911:15;48904:28;48719:220;:::o;48945:114::-;;:::o;49065:236::-;49205:34;49201:1;49193:6;49189:14;49182:58;49274:19;49269:2;49261:6;49257:15;49250:44;49065:236;:::o;49307:231::-;49447:34;49443:1;49435:6;49431:14;49424:58;49516:14;49511:2;49503:6;49499:15;49492:39;49307:231;:::o;49544:122::-;49617:24;49635:5;49617:24;:::i;:::-;49610:5;49607:35;49597:63;;49656:1;49653;49646:12;49597:63;49544:122;:::o;49672:138::-;49753:32;49779:5;49753:32;:::i;:::-;49746:5;49743:43;49733:71;;49800:1;49797;49790:12;49733:71;49672:138;:::o;49816:116::-;49886:21;49901:5;49886:21;:::i;:::-;49879:5;49876:32;49866:60;;49922:1;49919;49912:12;49866:60;49816:116;:::o;49938:120::-;50010:23;50027:5;50010:23;:::i;:::-;50003:5;50000:34;49990:62;;50048:1;50045;50038:12;49990:62;49938:120;:::o;50064:122::-;50137:24;50155:5;50137:24;:::i;:::-;50130:5;50127:35;50117:63;;50176:1;50173;50166:12;50117:63;50064:122;:::o

Swarm Source

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