ETH Price: $2,981.17 (+2.09%)
Gas: 1 Gwei

Token

Fly Frogs (FlyFrogs)
 

Overview

Max Total Supply

9,999 FlyFrogs

Holders

3,778

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
campeche.eth
Balance
7 FlyFrogs
0x9ECd3F09F4C6d9Cf04728fC9DE4feEd87DfA4683
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 randomly generated frogs on the Ethereum blockchain. The future is amphibious, ribbit! The frogs are composed of 185+ hand-drawn assets across 6 traits. No two are exactly alike. [Tadpoles](https://opensea.io/collection/fly-frogs-tadpoles) | [Flytrap](https://opensea.io/collection/fly-frogs-flytrap) | [Doodle Pond](https://opensea.io/collection/fly-frogs-doodle-pond)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FlyFrogs

Compiler Version
v0.8.4+commit.c7e474f2

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

// 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 contracts/FlyFrogs.sol

pragma solidity ^0.8.4;


contract FlyFrogs is ERC721Enumerable, Ownable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _maxMint = 30;
    uint256 private _price = 22 * 10**15; //0.022 ETH;
    bool public _paused = true;
    uint public constant MAX_ENTRIES = 10000;

    constructor(string memory baseURI) ERC721("Fly Frogs", "FlyFrogs")  {
        setBaseURI(baseURI);
    }

    function mint(address _to, uint256 quantity) public payable {
        uint256 supply = totalSupply();

        if(msg.sender != owner()) {
          require(!_paused, "Sale Paused");
          require( quantity < (_maxMint+1),"You can adopt a maximum of _maxMint Frogs" );
          require( msg.value >= _price * quantity,"Ether sent is not correct" );
        }
        
        require( supply + quantity < MAX_ENTRIES, "Exceeds maximum supply" );

        for(uint256 i; i < quantity; i++){
          _safeMint( _to, supply + i );
        }
    }

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

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

    function isPaused() public view returns(bool) {
        return _paused;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","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":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601e600c55664e28e2290f0000600d556001600e60006101000a81548160ff0219169083151502179055503480156200003c57600080fd5b5060405162004397380380620043978339818101604052810190620000629190620003ff565b6040518060400160405280600981526020017f466c792046726f677300000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f466c7946726f67730000000000000000000000000000000000000000000000008152508160009080519060200190620000e6929190620002dd565b508060019080519060200190620000ff929190620002dd565b50505062000122620001166200013a60201b60201c565b6200014260201b60201c565b62000133816200020860201b60201c565b5062000637565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002186200013a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023e620002b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e906200046b565b60405180910390fd5b80600b9080519060200190620002af929190620002dd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002eb9062000533565b90600052602060002090601f0160209004810192826200030f57600085556200035b565b82601f106200032a57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035a5782518255916020019190600101906200033d565b5b5090506200036a91906200036e565b5090565b5b80821115620003895760008160009055506001016200036f565b5090565b6000620003a46200039e84620004b6565b6200048d565b905082815260208101848484011115620003bd57600080fd5b620003ca848285620004fd565b509392505050565b600082601f830112620003e457600080fd5b8151620003f68482602086016200038d565b91505092915050565b6000602082840312156200041257600080fd5b600082015167ffffffffffffffff8111156200042d57600080fd5b6200043b84828501620003d2565b91505092915050565b600062000453602083620004ec565b915062000460826200060e565b602082019050919050565b60006020820190508181036000830152620004868162000444565b9050919050565b600062000499620004ac565b9050620004a7828262000569565b919050565b6000604051905090565b600067ffffffffffffffff821115620004d457620004d3620005ce565b5b620004df82620005fd565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200051d57808201518184015260208101905062000500565b838111156200052d576000848401525b50505050565b600060028204905060018216806200054c57607f821691505b602082108114156200056357620005626200059f565b5b50919050565b6200057482620005fd565b810181811067ffffffffffffffff82111715620005965762000595620005ce565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613d5080620006476000396000f3fe6080604052600436106101815760003560e01c806355f804b3116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610561578063c87b56dd1461058a578063e985e9c5146105c7578063f2fde38b1461060457610181565b806395d89b41146104e2578063a22cb4651461050d578063b187bd261461053657610181565b806355f804b3146103d25780636352211e146103fb57806370a0823114610438578063715018a6146104755780637d4cb9641461048c5780638da5cb5b146104b757610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461033957806340c10f191461035057806342842e0e1461036c5780634f6ccce71461039557610181565b806318160ddd146102a857806323b872dd146102d35780632f745c59146102fc57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806316c61ccc1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612a8e565b61062d565b6040516101ba9190612fa7565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612a65565b6106a7565b005b3480156101f857600080fd5b50610201610740565b60405161020e9190612fc2565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612b21565b6107d2565b60405161024b9190612f40565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612a29565b610857565b005b34801561028957600080fd5b5061029261096f565b60405161029f9190612fa7565b60405180910390f35b3480156102b457600080fd5b506102bd610982565b6040516102ca91906132a4565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612923565b61098f565b005b34801561030857600080fd5b50610323600480360381019061031e9190612a29565b6109ef565b60405161033091906132a4565b60405180910390f35b34801561034557600080fd5b5061034e610a94565b005b61036a60048036038101906103659190612a29565b610b5f565b005b34801561037857600080fd5b50610393600480360381019061038e9190612923565b610d1e565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612b21565b610d3e565b6040516103c991906132a4565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612ae0565b610dd5565b005b34801561040757600080fd5b50610422600480360381019061041d9190612b21565b610e6b565b60405161042f9190612f40565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906128be565b610f1d565b60405161046c91906132a4565b60405180910390f35b34801561048157600080fd5b5061048a610fd5565b005b34801561049857600080fd5b506104a161105d565b6040516104ae91906132a4565b60405180910390f35b3480156104c357600080fd5b506104cc611063565b6040516104d99190612f40565b60405180910390f35b3480156104ee57600080fd5b506104f761108d565b6040516105049190612fc2565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f91906129ed565b61111f565b005b34801561054257600080fd5b5061054b6112a0565b6040516105589190612fa7565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612972565b6112b7565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612b21565b611319565b6040516105be9190612fc2565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906128e7565b6113c0565b6040516105fb9190612fa7565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906128be565b611454565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a0575061069f8261154c565b5b9050919050565b6106af61162e565b73ffffffffffffffffffffffffffffffffffffffff166106cd611063565b73ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a906131a4565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606000805461074f90613554565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613554565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd82611636565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390613184565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610e6b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90613204565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f261162e565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b61162e565b6113c0565b5b610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906130c4565b60405180910390fd5b61096a83836116a2565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b6109a061099a61162e565b8261175b565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613264565b60405180910390fd5b6109ea838383611839565b505050565b60006109fa83610f1d565b8210610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290612fe4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9c61162e565b73ffffffffffffffffffffffffffffffffffffffff16610aba611063565b73ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b07906131a4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b5050565b6000610b69610982565b9050610b73611063565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c9657600e60009054906101000a900460ff1615610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90613164565b60405180910390fd5b6001600c54610c049190613389565b8210610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613144565b60405180910390fd5b81600d54610c539190613410565b341015610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613244565b60405180910390fd5b5b6127108282610ca59190613389565b10610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613224565b60405180910390fd5b60005b82811015610d1857610d05848284610d009190613389565b611a95565b8080610d10906135b7565b915050610ce8565b50505050565b610d39838383604051806020016040528060008152506112b7565b505050565b6000610d48610982565b8210610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613284565b60405180910390fd5b60088281548110610dc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ddd61162e565b73ffffffffffffffffffffffffffffffffffffffff16610dfb611063565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906131a4565b60405180910390fd5b80600b9080519060200190610e679291906126e2565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613104565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f85906130e4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fdd61162e565b73ffffffffffffffffffffffffffffffffffffffff16610ffb611063565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906131a4565b60405180910390fd5b61105b6000611ab3565b565b61271081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461109c90613554565b80601f01602080910402602001604051908101604052809291908181526020018280546110c890613554565b80156111155780601f106110ea57610100808354040283529160200191611115565b820191906000526020600020905b8154815290600101906020018083116110f857829003601f168201915b5050505050905090565b61112761162e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613084565b60405180910390fd5b80600560006111a261162e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124f61162e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112949190612fa7565b60405180910390a35050565b6000600e60009054906101000a900460ff16905090565b6112c86112c261162e565b8361175b565b611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613264565b60405180910390fd5b61131384848484611b79565b50505050565b606061132482611636565b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a906131e4565b60405180910390fd5b600061136d611bd5565b9050600081511161138d57604051806020016040528060008152506113b8565b8061139784611c67565b6040516020016113a8929190612f1c565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61145c61162e565b73ffffffffffffffffffffffffffffffffffffffff1661147a611063565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c7906131a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613024565b60405180910390fd5b61154981611ab3565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611627575061162682611e14565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661171583610e6b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061176682611636565b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906130a4565b60405180910390fd5b60006117b083610e6b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061181f57508373ffffffffffffffffffffffffffffffffffffffff16611807846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611830575061182f81856113c0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661185982610e6b565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a6906131c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613064565b60405180910390fd5b61192a838383611e7e565b6119356000826116a2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611985919061346a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119dc9190613389565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611aaf828260405180602001604052806000815250611f92565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b84848484611839565b611b9084848484611fed565b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613004565b60405180910390fd5b50505050565b6060600b8054611be490613554565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1090613554565b8015611c5d5780601f10611c3257610100808354040283529160200191611c5d565b820191906000526020600020905b815481529060010190602001808311611c4057829003601f168201915b5050505050905090565b60606000821415611caf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e0f565b600082905060005b60008214611ce1578080611cca906135b7565b915050600a82611cda91906133df565b9150611cb7565b60008167ffffffffffffffff811115611d23577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d555781602001600182028036833780820191505090505b5090505b60008514611e0857600182611d6e919061346a565b9150600a85611d7d9190613600565b6030611d899190613389565b60f81b818381518110611dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e0191906133df565b9450611d59565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e89838383612184565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ecc57611ec781612189565b611f0b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f0a57611f0983826121d2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4e57611f498161233f565b611f8d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f8c57611f8b8282612482565b5b5b505050565b611f9c8383612501565b611fa96000848484611fed565b611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613004565b60405180910390fd5b505050565b600061200e8473ffffffffffffffffffffffffffffffffffffffff166126cf565b15612177578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203761162e565b8786866040518563ffffffff1660e01b81526004016120599493929190612f5b565b602060405180830381600087803b15801561207357600080fd5b505af19250505080156120a457506040513d601f19601f820116820180604052508101906120a19190612ab7565b60015b612127573d80600081146120d4576040519150601f19603f3d011682016040523d82523d6000602084013e6120d9565b606091505b5060008151141561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613004565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061217c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016121df84610f1d565b6121e9919061346a565b90506000600760008481526020019081526020016000205490508181146122ce576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612353919061346a565b90506000600960008481526020019081526020016000205490506000600883815481106123a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106123f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612466577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061248d83610f1d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890613124565b60405180910390fd5b61257a81611636565b156125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190613044565b60405180910390fd5b6125c660008383611e7e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126169190613389565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126ee90613554565b90600052602060002090601f0160209004810192826127105760008555612757565b82601f1061272957805160ff1916838001178555612757565b82800160010185558215612757579182015b8281111561275657825182559160200191906001019061273b565b5b5090506127649190612768565b5090565b5b80821115612781576000816000905550600101612769565b5090565b6000612798612793846132e4565b6132bf565b9050828152602081018484840111156127b057600080fd5b6127bb848285613512565b509392505050565b60006127d66127d184613315565b6132bf565b9050828152602081018484840111156127ee57600080fd5b6127f9848285613512565b509392505050565b60008135905061281081613cbe565b92915050565b60008135905061282581613cd5565b92915050565b60008135905061283a81613cec565b92915050565b60008151905061284f81613cec565b92915050565b600082601f83011261286657600080fd5b8135612876848260208601612785565b91505092915050565b600082601f83011261289057600080fd5b81356128a08482602086016127c3565b91505092915050565b6000813590506128b881613d03565b92915050565b6000602082840312156128d057600080fd5b60006128de84828501612801565b91505092915050565b600080604083850312156128fa57600080fd5b600061290885828601612801565b925050602061291985828601612801565b9150509250929050565b60008060006060848603121561293857600080fd5b600061294686828701612801565b935050602061295786828701612801565b9250506040612968868287016128a9565b9150509250925092565b6000806000806080858703121561298857600080fd5b600061299687828801612801565b94505060206129a787828801612801565b93505060406129b8878288016128a9565b925050606085013567ffffffffffffffff8111156129d557600080fd5b6129e187828801612855565b91505092959194509250565b60008060408385031215612a0057600080fd5b6000612a0e85828601612801565b9250506020612a1f85828601612816565b9150509250929050565b60008060408385031215612a3c57600080fd5b6000612a4a85828601612801565b9250506020612a5b858286016128a9565b9150509250929050565b600060208284031215612a7757600080fd5b6000612a8584828501612816565b91505092915050565b600060208284031215612aa057600080fd5b6000612aae8482850161282b565b91505092915050565b600060208284031215612ac957600080fd5b6000612ad784828501612840565b91505092915050565b600060208284031215612af257600080fd5b600082013567ffffffffffffffff811115612b0c57600080fd5b612b188482850161287f565b91505092915050565b600060208284031215612b3357600080fd5b6000612b41848285016128a9565b91505092915050565b612b538161349e565b82525050565b612b62816134b0565b82525050565b6000612b7382613346565b612b7d818561335c565b9350612b8d818560208601613521565b612b96816136ed565b840191505092915050565b6000612bac82613351565b612bb6818561336d565b9350612bc6818560208601613521565b612bcf816136ed565b840191505092915050565b6000612be582613351565b612bef818561337e565b9350612bff818560208601613521565b80840191505092915050565b6000612c18602b8361336d565b9150612c23826136fe565b604082019050919050565b6000612c3b60328361336d565b9150612c468261374d565b604082019050919050565b6000612c5e60268361336d565b9150612c698261379c565b604082019050919050565b6000612c81601c8361336d565b9150612c8c826137eb565b602082019050919050565b6000612ca460248361336d565b9150612caf82613814565b604082019050919050565b6000612cc760198361336d565b9150612cd282613863565b602082019050919050565b6000612cea602c8361336d565b9150612cf58261388c565b604082019050919050565b6000612d0d60388361336d565b9150612d18826138db565b604082019050919050565b6000612d30602a8361336d565b9150612d3b8261392a565b604082019050919050565b6000612d5360298361336d565b9150612d5e82613979565b604082019050919050565b6000612d7660208361336d565b9150612d81826139c8565b602082019050919050565b6000612d9960298361336d565b9150612da4826139f1565b604082019050919050565b6000612dbc600b8361336d565b9150612dc782613a40565b602082019050919050565b6000612ddf602c8361336d565b9150612dea82613a69565b604082019050919050565b6000612e0260208361336d565b9150612e0d82613ab8565b602082019050919050565b6000612e2560298361336d565b9150612e3082613ae1565b604082019050919050565b6000612e48602f8361336d565b9150612e5382613b30565b604082019050919050565b6000612e6b60218361336d565b9150612e7682613b7f565b604082019050919050565b6000612e8e60168361336d565b9150612e9982613bce565b602082019050919050565b6000612eb160198361336d565b9150612ebc82613bf7565b602082019050919050565b6000612ed460318361336d565b9150612edf82613c20565b604082019050919050565b6000612ef7602c8361336d565b9150612f0282613c6f565b604082019050919050565b612f1681613508565b82525050565b6000612f288285612bda565b9150612f348284612bda565b91508190509392505050565b6000602082019050612f556000830184612b4a565b92915050565b6000608082019050612f706000830187612b4a565b612f7d6020830186612b4a565b612f8a6040830185612f0d565b8181036060830152612f9c8184612b68565b905095945050505050565b6000602082019050612fbc6000830184612b59565b92915050565b60006020820190508181036000830152612fdc8184612ba1565b905092915050565b60006020820190508181036000830152612ffd81612c0b565b9050919050565b6000602082019050818103600083015261301d81612c2e565b9050919050565b6000602082019050818103600083015261303d81612c51565b9050919050565b6000602082019050818103600083015261305d81612c74565b9050919050565b6000602082019050818103600083015261307d81612c97565b9050919050565b6000602082019050818103600083015261309d81612cba565b9050919050565b600060208201905081810360008301526130bd81612cdd565b9050919050565b600060208201905081810360008301526130dd81612d00565b9050919050565b600060208201905081810360008301526130fd81612d23565b9050919050565b6000602082019050818103600083015261311d81612d46565b9050919050565b6000602082019050818103600083015261313d81612d69565b9050919050565b6000602082019050818103600083015261315d81612d8c565b9050919050565b6000602082019050818103600083015261317d81612daf565b9050919050565b6000602082019050818103600083015261319d81612dd2565b9050919050565b600060208201905081810360008301526131bd81612df5565b9050919050565b600060208201905081810360008301526131dd81612e18565b9050919050565b600060208201905081810360008301526131fd81612e3b565b9050919050565b6000602082019050818103600083015261321d81612e5e565b9050919050565b6000602082019050818103600083015261323d81612e81565b9050919050565b6000602082019050818103600083015261325d81612ea4565b9050919050565b6000602082019050818103600083015261327d81612ec7565b9050919050565b6000602082019050818103600083015261329d81612eea565b9050919050565b60006020820190506132b96000830184612f0d565b92915050565b60006132c96132da565b90506132d58282613586565b919050565b6000604051905090565b600067ffffffffffffffff8211156132ff576132fe6136be565b5b613308826136ed565b9050602081019050919050565b600067ffffffffffffffff8211156133305761332f6136be565b5b613339826136ed565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061339482613508565b915061339f83613508565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d4576133d3613631565b5b828201905092915050565b60006133ea82613508565b91506133f583613508565b92508261340557613404613660565b5b828204905092915050565b600061341b82613508565b915061342683613508565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345f5761345e613631565b5b828202905092915050565b600061347582613508565b915061348083613508565b92508282101561349357613492613631565b5b828203905092915050565b60006134a9826134e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561353f578082015181840152602081019050613524565b8381111561354e576000848401525b50505050565b6000600282049050600182168061356c57607f821691505b602082108114156135805761357f61368f565b5b50919050565b61358f826136ed565b810181811067ffffffffffffffff821117156135ae576135ad6136be565b5b80604052505050565b60006135c282613508565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135f5576135f4613631565b5b600182019050919050565b600061360b82613508565b915061361683613508565b92508261362657613625613660565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008201527f696e742046726f67730000000000000000000000000000000000000000000000602082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613cc78161349e565b8114613cd257600080fd5b50565b613cde816134b0565b8114613ce957600080fd5b50565b613cf5816134bc565b8114613d0057600080fd5b50565b613d0c81613508565b8114613d1757600080fd5b5056fea26469706673582212201e83f2b5dd41d96652763474356b9463ca9792a4311f7446f013d9682db574b764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52644e4233513651356756576e6475426d784e5a623470397a4b466d4d33517833746f6842623842324b524b2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806355f804b3116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610561578063c87b56dd1461058a578063e985e9c5146105c7578063f2fde38b1461060457610181565b806395d89b41146104e2578063a22cb4651461050d578063b187bd261461053657610181565b806355f804b3146103d25780636352211e146103fb57806370a0823114610438578063715018a6146104755780637d4cb9641461048c5780638da5cb5b146104b757610181565b806318160ddd1161013e5780633ccfd60b116101185780633ccfd60b1461033957806340c10f191461035057806342842e0e1461036c5780634f6ccce71461039557610181565b806318160ddd146102a857806323b872dd146102d35780632f745c59146102fc57610181565b806301ffc9a71461018657806302329a29146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806316c61ccc1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612a8e565b61062d565b6040516101ba9190612fa7565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190612a65565b6106a7565b005b3480156101f857600080fd5b50610201610740565b60405161020e9190612fc2565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612b21565b6107d2565b60405161024b9190612f40565b60405180910390f35b34801561026057600080fd5b5061027b60048036038101906102769190612a29565b610857565b005b34801561028957600080fd5b5061029261096f565b60405161029f9190612fa7565b60405180910390f35b3480156102b457600080fd5b506102bd610982565b6040516102ca91906132a4565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612923565b61098f565b005b34801561030857600080fd5b50610323600480360381019061031e9190612a29565b6109ef565b60405161033091906132a4565b60405180910390f35b34801561034557600080fd5b5061034e610a94565b005b61036a60048036038101906103659190612a29565b610b5f565b005b34801561037857600080fd5b50610393600480360381019061038e9190612923565b610d1e565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612b21565b610d3e565b6040516103c991906132a4565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612ae0565b610dd5565b005b34801561040757600080fd5b50610422600480360381019061041d9190612b21565b610e6b565b60405161042f9190612f40565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906128be565b610f1d565b60405161046c91906132a4565b60405180910390f35b34801561048157600080fd5b5061048a610fd5565b005b34801561049857600080fd5b506104a161105d565b6040516104ae91906132a4565b60405180910390f35b3480156104c357600080fd5b506104cc611063565b6040516104d99190612f40565b60405180910390f35b3480156104ee57600080fd5b506104f761108d565b6040516105049190612fc2565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f91906129ed565b61111f565b005b34801561054257600080fd5b5061054b6112a0565b6040516105589190612fa7565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612972565b6112b7565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612b21565b611319565b6040516105be9190612fc2565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906128e7565b6113c0565b6040516105fb9190612fa7565b60405180910390f35b34801561061057600080fd5b5061062b600480360381019061062691906128be565b611454565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a0575061069f8261154c565b5b9050919050565b6106af61162e565b73ffffffffffffffffffffffffffffffffffffffff166106cd611063565b73ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a906131a4565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606000805461074f90613554565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613554565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd82611636565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390613184565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610e6b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90613204565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f261162e565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b61162e565b6113c0565b5b610960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610957906130c4565b60405180910390fd5b61096a83836116a2565b505050565b600e60009054906101000a900460ff1681565b6000600880549050905090565b6109a061099a61162e565b8261175b565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613264565b60405180910390fd5b6109ea838383611839565b505050565b60006109fa83610f1d565b8210610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290612fe4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9c61162e565b73ffffffffffffffffffffffffffffffffffffffff16610aba611063565b73ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b07906131a4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b5b573d6000803e3d6000fd5b5050565b6000610b69610982565b9050610b73611063565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c9657600e60009054906101000a900460ff1615610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90613164565b60405180910390fd5b6001600c54610c049190613389565b8210610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613144565b60405180910390fd5b81600d54610c539190613410565b341015610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613244565b60405180910390fd5b5b6127108282610ca59190613389565b10610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613224565b60405180910390fd5b60005b82811015610d1857610d05848284610d009190613389565b611a95565b8080610d10906135b7565b915050610ce8565b50505050565b610d39838383604051806020016040528060008152506112b7565b505050565b6000610d48610982565b8210610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613284565b60405180910390fd5b60088281548110610dc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ddd61162e565b73ffffffffffffffffffffffffffffffffffffffff16610dfb611063565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906131a4565b60405180910390fd5b80600b9080519060200190610e679291906126e2565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613104565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f85906130e4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fdd61162e565b73ffffffffffffffffffffffffffffffffffffffff16610ffb611063565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906131a4565b60405180910390fd5b61105b6000611ab3565b565b61271081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461109c90613554565b80601f01602080910402602001604051908101604052809291908181526020018280546110c890613554565b80156111155780601f106110ea57610100808354040283529160200191611115565b820191906000526020600020905b8154815290600101906020018083116110f857829003601f168201915b5050505050905090565b61112761162e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613084565b60405180910390fd5b80600560006111a261162e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124f61162e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112949190612fa7565b60405180910390a35050565b6000600e60009054906101000a900460ff16905090565b6112c86112c261162e565b8361175b565b611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613264565b60405180910390fd5b61131384848484611b79565b50505050565b606061132482611636565b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a906131e4565b60405180910390fd5b600061136d611bd5565b9050600081511161138d57604051806020016040528060008152506113b8565b8061139784611c67565b6040516020016113a8929190612f1c565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61145c61162e565b73ffffffffffffffffffffffffffffffffffffffff1661147a611063565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c7906131a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613024565b60405180910390fd5b61154981611ab3565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061161757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611627575061162682611e14565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661171583610e6b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061176682611636565b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906130a4565b60405180910390fd5b60006117b083610e6b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061181f57508373ffffffffffffffffffffffffffffffffffffffff16611807846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611830575061182f81856113c0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661185982610e6b565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a6906131c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613064565b60405180910390fd5b61192a838383611e7e565b6119356000826116a2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611985919061346a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119dc9190613389565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611aaf828260405180602001604052806000815250611f92565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b84848484611839565b611b9084848484611fed565b611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613004565b60405180910390fd5b50505050565b6060600b8054611be490613554565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1090613554565b8015611c5d5780601f10611c3257610100808354040283529160200191611c5d565b820191906000526020600020905b815481529060010190602001808311611c4057829003601f168201915b5050505050905090565b60606000821415611caf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e0f565b600082905060005b60008214611ce1578080611cca906135b7565b915050600a82611cda91906133df565b9150611cb7565b60008167ffffffffffffffff811115611d23577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d555781602001600182028036833780820191505090505b5090505b60008514611e0857600182611d6e919061346a565b9150600a85611d7d9190613600565b6030611d899190613389565b60f81b818381518110611dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e0191906133df565b9450611d59565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611e89838383612184565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ecc57611ec781612189565b611f0b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f0a57611f0983826121d2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4e57611f498161233f565b611f8d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f8c57611f8b8282612482565b5b5b505050565b611f9c8383612501565b611fa96000848484611fed565b611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613004565b60405180910390fd5b505050565b600061200e8473ffffffffffffffffffffffffffffffffffffffff166126cf565b15612177578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261203761162e565b8786866040518563ffffffff1660e01b81526004016120599493929190612f5b565b602060405180830381600087803b15801561207357600080fd5b505af19250505080156120a457506040513d601f19601f820116820180604052508101906120a19190612ab7565b60015b612127573d80600081146120d4576040519150601f19603f3d011682016040523d82523d6000602084013e6120d9565b606091505b5060008151141561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613004565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061217c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016121df84610f1d565b6121e9919061346a565b90506000600760008481526020019081526020016000205490508181146122ce576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612353919061346a565b90506000600960008481526020019081526020016000205490506000600883815481106123a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106123f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612466577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061248d83610f1d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890613124565b60405180910390fd5b61257a81611636565b156125ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b190613044565b60405180910390fd5b6125c660008383611e7e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126169190613389565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126ee90613554565b90600052602060002090601f0160209004810192826127105760008555612757565b82601f1061272957805160ff1916838001178555612757565b82800160010185558215612757579182015b8281111561275657825182559160200191906001019061273b565b5b5090506127649190612768565b5090565b5b80821115612781576000816000905550600101612769565b5090565b6000612798612793846132e4565b6132bf565b9050828152602081018484840111156127b057600080fd5b6127bb848285613512565b509392505050565b60006127d66127d184613315565b6132bf565b9050828152602081018484840111156127ee57600080fd5b6127f9848285613512565b509392505050565b60008135905061281081613cbe565b92915050565b60008135905061282581613cd5565b92915050565b60008135905061283a81613cec565b92915050565b60008151905061284f81613cec565b92915050565b600082601f83011261286657600080fd5b8135612876848260208601612785565b91505092915050565b600082601f83011261289057600080fd5b81356128a08482602086016127c3565b91505092915050565b6000813590506128b881613d03565b92915050565b6000602082840312156128d057600080fd5b60006128de84828501612801565b91505092915050565b600080604083850312156128fa57600080fd5b600061290885828601612801565b925050602061291985828601612801565b9150509250929050565b60008060006060848603121561293857600080fd5b600061294686828701612801565b935050602061295786828701612801565b9250506040612968868287016128a9565b9150509250925092565b6000806000806080858703121561298857600080fd5b600061299687828801612801565b94505060206129a787828801612801565b93505060406129b8878288016128a9565b925050606085013567ffffffffffffffff8111156129d557600080fd5b6129e187828801612855565b91505092959194509250565b60008060408385031215612a0057600080fd5b6000612a0e85828601612801565b9250506020612a1f85828601612816565b9150509250929050565b60008060408385031215612a3c57600080fd5b6000612a4a85828601612801565b9250506020612a5b858286016128a9565b9150509250929050565b600060208284031215612a7757600080fd5b6000612a8584828501612816565b91505092915050565b600060208284031215612aa057600080fd5b6000612aae8482850161282b565b91505092915050565b600060208284031215612ac957600080fd5b6000612ad784828501612840565b91505092915050565b600060208284031215612af257600080fd5b600082013567ffffffffffffffff811115612b0c57600080fd5b612b188482850161287f565b91505092915050565b600060208284031215612b3357600080fd5b6000612b41848285016128a9565b91505092915050565b612b538161349e565b82525050565b612b62816134b0565b82525050565b6000612b7382613346565b612b7d818561335c565b9350612b8d818560208601613521565b612b96816136ed565b840191505092915050565b6000612bac82613351565b612bb6818561336d565b9350612bc6818560208601613521565b612bcf816136ed565b840191505092915050565b6000612be582613351565b612bef818561337e565b9350612bff818560208601613521565b80840191505092915050565b6000612c18602b8361336d565b9150612c23826136fe565b604082019050919050565b6000612c3b60328361336d565b9150612c468261374d565b604082019050919050565b6000612c5e60268361336d565b9150612c698261379c565b604082019050919050565b6000612c81601c8361336d565b9150612c8c826137eb565b602082019050919050565b6000612ca460248361336d565b9150612caf82613814565b604082019050919050565b6000612cc760198361336d565b9150612cd282613863565b602082019050919050565b6000612cea602c8361336d565b9150612cf58261388c565b604082019050919050565b6000612d0d60388361336d565b9150612d18826138db565b604082019050919050565b6000612d30602a8361336d565b9150612d3b8261392a565b604082019050919050565b6000612d5360298361336d565b9150612d5e82613979565b604082019050919050565b6000612d7660208361336d565b9150612d81826139c8565b602082019050919050565b6000612d9960298361336d565b9150612da4826139f1565b604082019050919050565b6000612dbc600b8361336d565b9150612dc782613a40565b602082019050919050565b6000612ddf602c8361336d565b9150612dea82613a69565b604082019050919050565b6000612e0260208361336d565b9150612e0d82613ab8565b602082019050919050565b6000612e2560298361336d565b9150612e3082613ae1565b604082019050919050565b6000612e48602f8361336d565b9150612e5382613b30565b604082019050919050565b6000612e6b60218361336d565b9150612e7682613b7f565b604082019050919050565b6000612e8e60168361336d565b9150612e9982613bce565b602082019050919050565b6000612eb160198361336d565b9150612ebc82613bf7565b602082019050919050565b6000612ed460318361336d565b9150612edf82613c20565b604082019050919050565b6000612ef7602c8361336d565b9150612f0282613c6f565b604082019050919050565b612f1681613508565b82525050565b6000612f288285612bda565b9150612f348284612bda565b91508190509392505050565b6000602082019050612f556000830184612b4a565b92915050565b6000608082019050612f706000830187612b4a565b612f7d6020830186612b4a565b612f8a6040830185612f0d565b8181036060830152612f9c8184612b68565b905095945050505050565b6000602082019050612fbc6000830184612b59565b92915050565b60006020820190508181036000830152612fdc8184612ba1565b905092915050565b60006020820190508181036000830152612ffd81612c0b565b9050919050565b6000602082019050818103600083015261301d81612c2e565b9050919050565b6000602082019050818103600083015261303d81612c51565b9050919050565b6000602082019050818103600083015261305d81612c74565b9050919050565b6000602082019050818103600083015261307d81612c97565b9050919050565b6000602082019050818103600083015261309d81612cba565b9050919050565b600060208201905081810360008301526130bd81612cdd565b9050919050565b600060208201905081810360008301526130dd81612d00565b9050919050565b600060208201905081810360008301526130fd81612d23565b9050919050565b6000602082019050818103600083015261311d81612d46565b9050919050565b6000602082019050818103600083015261313d81612d69565b9050919050565b6000602082019050818103600083015261315d81612d8c565b9050919050565b6000602082019050818103600083015261317d81612daf565b9050919050565b6000602082019050818103600083015261319d81612dd2565b9050919050565b600060208201905081810360008301526131bd81612df5565b9050919050565b600060208201905081810360008301526131dd81612e18565b9050919050565b600060208201905081810360008301526131fd81612e3b565b9050919050565b6000602082019050818103600083015261321d81612e5e565b9050919050565b6000602082019050818103600083015261323d81612e81565b9050919050565b6000602082019050818103600083015261325d81612ea4565b9050919050565b6000602082019050818103600083015261327d81612ec7565b9050919050565b6000602082019050818103600083015261329d81612eea565b9050919050565b60006020820190506132b96000830184612f0d565b92915050565b60006132c96132da565b90506132d58282613586565b919050565b6000604051905090565b600067ffffffffffffffff8211156132ff576132fe6136be565b5b613308826136ed565b9050602081019050919050565b600067ffffffffffffffff8211156133305761332f6136be565b5b613339826136ed565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061339482613508565b915061339f83613508565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d4576133d3613631565b5b828201905092915050565b60006133ea82613508565b91506133f583613508565b92508261340557613404613660565b5b828204905092915050565b600061341b82613508565b915061342683613508565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345f5761345e613631565b5b828202905092915050565b600061347582613508565b915061348083613508565b92508282101561349357613492613631565b5b828203905092915050565b60006134a9826134e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561353f578082015181840152602081019050613524565b8381111561354e576000848401525b50505050565b6000600282049050600182168061356c57607f821691505b602082108114156135805761357f61368f565b5b50919050565b61358f826136ed565b810181811067ffffffffffffffff821117156135ae576135ad6136be565b5b80604052505050565b60006135c282613508565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135f5576135f4613631565b5b600182019050919050565b600061360b82613508565b915061361683613508565b92508261362657613625613660565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e2061646f70742061206d6178696d756d206f66205f6d61784d60008201527f696e742046726f67730000000000000000000000000000000000000000000000602082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613cc78161349e565b8114613cd257600080fd5b50565b613cde816134b0565b8114613ce957600080fd5b50565b613cf5816134bc565b8114613d0057600080fd5b50565b613d0c81613508565b8114613d1757600080fd5b5056fea26469706673582212201e83f2b5dd41d96652763474356b9463ca9792a4311f7446f013d9682db574b764736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52644e4233513651356756576e6475426d784e5a623470397a4b466d4d33517833746f6842623842324b524b2f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmRdNB3Q6Q5gVWnduBmxNZb4p9zKFmM3Qx3tohBb8B2KRK/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d52644e4233513651356756576e6475426d784e5a623470
Arg [3] : 397a4b466d4d33517833746f6842623842324b524b2f00000000000000000000


Deployed Bytecode Sourcemap

43247:1521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34754:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44543:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23210:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22733:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43456:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35394:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24100:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35062:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44625:140;;;;;;;;;;;;;:::i;:::-;;43652:564;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24510:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35584:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44346:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21345:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21075:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42553:94;;;;;;;;;;;;;:::i;:::-;;43489:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41902:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21820:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23503:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44456:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24766:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21995:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23869:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42802:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34754:224;34856:4;34895:35;34880:50;;;:11;:50;;;;:90;;;;34934:36;34958:11;34934:23;:36::i;:::-;34880:90;34873:97;;34754:224;;;:::o;44543:74::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44606:3:::1;44596:7;;:13;;;;;;;;;;;;;;;;;;44543:74:::0;:::o;21651:100::-;21705:13;21738:5;21731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21651:100;:::o;23210:221::-;23286:7;23314:16;23322:7;23314;:16::i;:::-;23306:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23399:15;:24;23415:7;23399:24;;;;;;;;;;;;;;;;;;;;;23392:31;;23210:221;;;:::o;22733:411::-;22814:13;22830:23;22845:7;22830:14;:23::i;:::-;22814:39;;22878:5;22872:11;;:2;:11;;;;22864:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22972:5;22956:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22981:37;22998:5;23005:12;:10;:12::i;:::-;22981:16;:37::i;:::-;22956:62;22934:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23115:21;23124:2;23128:7;23115:8;:21::i;:::-;22733:411;;;:::o;43456:26::-;;;;;;;;;;;;;:::o;35394:113::-;35455:7;35482:10;:17;;;;35475:24;;35394:113;:::o;24100:339::-;24295:41;24314:12;:10;:12::i;:::-;24328:7;24295:18;:41::i;:::-;24287:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24403:28;24413:4;24419:2;24423:7;24403:9;:28::i;:::-;24100:339;;;:::o;35062:256::-;35159:7;35195:23;35212:5;35195:16;:23::i;:::-;35187:5;:31;35179:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35284:12;:19;35297:5;35284:19;;;;;;;;;;;;;;;:26;35304:5;35284:26;;;;;;;;;;;;35277:33;;35062:256;;;;:::o;44625:140::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44673:12:::1;44688:21;44673:36;;44728:10;44720:28;;:37;44749:7;44720:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42193:1;44625:140::o:0;43652:564::-;43723:14;43740:13;:11;:13::i;:::-;43723:30;;43783:7;:5;:7::i;:::-;43769:21;;:10;:21;;;43766:256;;43814:7;;;;;;;;;;;43813:8;43805:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;43880:1;43871:8;;:10;;;;:::i;:::-;43859:8;:23;43850:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;43972:8;43963:6;;:17;;;;:::i;:::-;43950:9;:30;;43941:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43766:256;43524:5;44060:8;44051:6;:17;;;;:::i;:::-;:31;44042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44127:9;44123:86;44142:8;44138:1;:12;44123:86;;;44169:28;44180:3;44194:1;44185:6;:10;;;;:::i;:::-;44169:9;:28::i;:::-;44152:3;;;;;:::i;:::-;;;;44123:86;;;;43652:564;;;:::o;24510:185::-;24648:39;24665:4;24671:2;24675:7;24648:39;;;;;;;;;;;;:16;:39::i;:::-;24510:185;;;:::o;35584:233::-;35659:7;35695:30;:28;:30::i;:::-;35687:5;:38;35679:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35792:10;35803:5;35792:17;;;;;;;;;;;;;;;;;;;;;;;;35785:24;;35584:233;;;:::o;44346:102::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44433:7:::1;44417:13;:23;;;;;;;;;;;;:::i;:::-;;44346:102:::0;:::o;21345:239::-;21417:7;21437:13;21453:7;:16;21461:7;21453:16;;;;;;;;;;;;;;;;;;;;;21437:32;;21505:1;21488:19;;:5;:19;;;;21480:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21571:5;21564:12;;;21345:239;;;:::o;21075:208::-;21147:7;21192:1;21175:19;;:5;:19;;;;21167:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21259:9;:16;21269:5;21259:16;;;;;;;;;;;;;;;;21252:23;;21075:208;;;:::o;42553:94::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42618:21:::1;42636:1;42618:9;:21::i;:::-;42553:94::o:0;43489:40::-;43524:5;43489:40;:::o;41902:87::-;41948:7;41975:6;;;;;;;;;;;41968:13;;41902:87;:::o;21820:104::-;21876:13;21909:7;21902:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21820:104;:::o;23503:295::-;23618:12;:10;:12::i;:::-;23606:24;;:8;:24;;;;23598:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23718:8;23673:18;:32;23692:12;:10;:12::i;:::-;23673:32;;;;;;;;;;;;;;;:42;23706:8;23673:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23771:8;23742:48;;23757:12;:10;:12::i;:::-;23742:48;;;23781:8;23742:48;;;;;;:::i;:::-;;;;;;;;23503:295;;:::o;44456:79::-;44496:4;44520:7;;;;;;;;;;;44513:14;;44456:79;:::o;24766:328::-;24941:41;24960:12;:10;:12::i;:::-;24974:7;24941:18;:41::i;:::-;24933:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25047:39;25061:4;25067:2;25071:7;25080:5;25047:13;:39::i;:::-;24766:328;;;;:::o;21995:334::-;22068:13;22102:16;22110:7;22102;:16::i;:::-;22094:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22183:21;22207:10;:8;:10::i;:::-;22183:34;;22259:1;22241:7;22235:21;:25;:86;;;;;;;;;;;;;;;;;22287:7;22296:18;:7;:16;:18::i;:::-;22270:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22235:86;22228:93;;;21995:334;;;:::o;23869:164::-;23966:4;23990:18;:25;24009:5;23990:25;;;;;;;;;;;;;;;:35;24016:8;23990:35;;;;;;;;;;;;;;;;;;;;;;;;;23983:42;;23869:164;;;;:::o;42802:192::-;42133:12;:10;:12::i;:::-;42122:23;;:7;:5;:7::i;:::-;:23;;;42114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42911:1:::1;42891:22;;:8;:22;;;;42883:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42967:19;42977:8;42967:9;:19::i;:::-;42802:192:::0;:::o;20706:305::-;20808:4;20860:25;20845:40;;;:11;:40;;;;:105;;;;20917:33;20902:48;;;:11;:48;;;;20845:105;:158;;;;20967:36;20991:11;20967:23;:36::i;:::-;20845:158;20825:178;;20706:305;;;:::o;16120:98::-;16173:7;16200:10;16193:17;;16120:98;:::o;26604:127::-;26669:4;26721:1;26693:30;;:7;:16;26701:7;26693:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26686:37;;26604:127;;;:::o;30586:174::-;30688:2;30661:15;:24;30677:7;30661:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30744:7;30740:2;30706:46;;30715:23;30730:7;30715:14;:23::i;:::-;30706:46;;;;;;;;;;;;30586:174;;:::o;26898:348::-;26991:4;27016:16;27024:7;27016;:16::i;:::-;27008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27092:13;27108:23;27123:7;27108:14;:23::i;:::-;27092:39;;27161:5;27150:16;;:7;:16;;;:51;;;;27194:7;27170:31;;:20;27182:7;27170:11;:20::i;:::-;:31;;;27150:51;:87;;;;27205:32;27222:5;27229:7;27205:16;:32::i;:::-;27150:87;27142:96;;;26898:348;;;;:::o;29890:578::-;30049:4;30022:31;;:23;30037:7;30022:14;:23::i;:::-;:31;;;30014:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30132:1;30118:16;;:2;:16;;;;30110:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30188:39;30209:4;30215:2;30219:7;30188:20;:39::i;:::-;30292:29;30309:1;30313:7;30292:8;:29::i;:::-;30353:1;30334:9;:15;30344:4;30334:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30382:1;30365:9;:13;30375:2;30365:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30413:2;30394:7;:16;30402:7;30394:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30452:7;30448:2;30433:27;;30442:4;30433:27;;;;;;;;;;;;29890:578;;;:::o;27588:110::-;27664:26;27674:2;27678:7;27664:26;;;;;;;;;;;;:9;:26::i;:::-;27588:110;;:::o;43002:173::-;43058:16;43077:6;;;;;;;;;;;43058:25;;43103:8;43094:6;;:17;;;;;;;;;;;;;;;;;;43158:8;43127:40;;43148:8;43127:40;;;;;;;;;;;;43002:173;;:::o;25976:315::-;26133:28;26143:4;26149:2;26153:7;26133:9;:28::i;:::-;26180:48;26203:4;26209:2;26213:7;26222:5;26180:22;:48::i;:::-;26172:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25976:315;;;;:::o;44224:114::-;44284:13;44317;44310:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44224:114;:::o;16649:723::-;16705:13;16935:1;16926:5;:10;16922:53;;;16953:10;;;;;;;;;;;;;;;;;;;;;16922:53;16985:12;17000:5;16985:20;;17016:14;17041:78;17056:1;17048:4;:9;17041:78;;17074:8;;;;;:::i;:::-;;;;17105:2;17097:10;;;;;:::i;:::-;;;17041:78;;;17129:19;17161:6;17151:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17129:39;;17179:154;17195:1;17186:5;:10;17179:154;;17223:1;17213:11;;;;;:::i;:::-;;;17290:2;17282:5;:10;;;;:::i;:::-;17269:2;:24;;;;:::i;:::-;17256:39;;17239:6;17246;17239:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17319:2;17310:11;;;;;:::i;:::-;;;17179:154;;;17357:6;17343:21;;;;;16649:723;;;;:::o;19208:157::-;19293:4;19332:25;19317:40;;;:11;:40;;;;19310:47;;19208:157;;;:::o;36430:589::-;36574:45;36601:4;36607:2;36611:7;36574:26;:45::i;:::-;36652:1;36636:18;;:4;:18;;;36632:187;;;36671:40;36703:7;36671:31;:40::i;:::-;36632:187;;;36741:2;36733:10;;:4;:10;;;36729:90;;36760:47;36793:4;36799:7;36760:32;:47::i;:::-;36729:90;36632:187;36847:1;36833:16;;:2;:16;;;36829:183;;;36866:45;36903:7;36866:36;:45::i;:::-;36829:183;;;36939:4;36933:10;;:2;:10;;;36929:83;;36960:40;36988:2;36992:7;36960:27;:40::i;:::-;36929:83;36829:183;36430:589;;;:::o;27925:321::-;28055:18;28061:2;28065:7;28055:5;:18::i;:::-;28106:54;28137:1;28141:2;28145:7;28154:5;28106:22;:54::i;:::-;28084:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27925:321;;;:::o;31325:799::-;31480:4;31501:15;:2;:13;;;:15::i;:::-;31497:620;;;31553:2;31537:36;;;31574:12;:10;:12::i;:::-;31588:4;31594:7;31603:5;31537:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31533:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31796:1;31779:6;:13;:18;31775:272;;;31822:60;;;;;;;;;;:::i;:::-;;;;;;;;31775:272;31997:6;31991:13;31982:6;31978:2;31974:15;31967:38;31533:529;31670:41;;;31660:51;;;:6;:51;;;;31653:58;;;;;31497:620;32101:4;32094:11;;31325:799;;;;;;;:::o;32696:126::-;;;;:::o;37742:164::-;37846:10;:17;;;;37819:15;:24;37835:7;37819:24;;;;;;;;;;;:44;;;;37874:10;37890:7;37874:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37742:164;:::o;38533:988::-;38799:22;38849:1;38824:22;38841:4;38824:16;:22::i;:::-;:26;;;;:::i;:::-;38799:51;;38861:18;38882:17;:26;38900:7;38882:26;;;;;;;;;;;;38861:47;;39029:14;39015:10;:28;39011:328;;39060:19;39082:12;:18;39095:4;39082:18;;;;;;;;;;;;;;;:34;39101:14;39082:34;;;;;;;;;;;;39060:56;;39166:11;39133:12;:18;39146:4;39133:18;;;;;;;;;;;;;;;:30;39152:10;39133:30;;;;;;;;;;;:44;;;;39283:10;39250:17;:30;39268:11;39250:30;;;;;;;;;;;:43;;;;39011:328;;39435:17;:26;39453:7;39435:26;;;;;;;;;;;39428:33;;;39479:12;:18;39492:4;39479:18;;;;;;;;;;;;;;;:34;39498:14;39479:34;;;;;;;;;;;39472:41;;;38533:988;;;;:::o;39816:1079::-;40069:22;40114:1;40094:10;:17;;;;:21;;;;:::i;:::-;40069:46;;40126:18;40147:15;:24;40163:7;40147:24;;;;;;;;;;;;40126:45;;40498:19;40520:10;40531:14;40520:26;;;;;;;;;;;;;;;;;;;;;;;;40498:48;;40584:11;40559:10;40570;40559:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40695:10;40664:15;:28;40680:11;40664:28;;;;;;;;;;;:41;;;;40836:15;:24;40852:7;40836:24;;;;;;;;;;;40829:31;;;40871:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39816:1079;;;;:::o;37320:221::-;37405:14;37422:20;37439:2;37422:16;:20::i;:::-;37405:37;;37480:7;37453:12;:16;37466:2;37453:16;;;;;;;;;;;;;;;:24;37470:6;37453:24;;;;;;;;;;;:34;;;;37527:6;37498:17;:26;37516:7;37498:26;;;;;;;;;;;:35;;;;37320:221;;;:::o;28582:382::-;28676:1;28662:16;;:2;:16;;;;28654:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28735:16;28743:7;28735;:16::i;:::-;28734:17;28726:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28797:45;28826:1;28830:2;28834:7;28797:20;:45::i;:::-;28872:1;28855:9;:13;28865:2;28855:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28903:2;28884:7;:16;28892:7;28884:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28948:7;28944:2;28923:33;;28940:1;28923:33;;;;;;;;;;;;28582:382;;:::o;8160:387::-;8220:4;8428:12;8495:7;8483:20;8475:28;;8538:1;8531:4;:8;8524:15;;;8160:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;7848:3;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:366::-;8220:3;8241:67;8305:2;8300:3;8241:67;:::i;:::-;8234:74;;8317:93;8406:3;8317:93;:::i;:::-;8435:2;8430:3;8426:12;8419:19;;8224:220;;;:::o;8450:366::-;8592:3;8613:67;8677:2;8672:3;8613:67;:::i;:::-;8606:74;;8689:93;8778:3;8689:93;:::i;:::-;8807:2;8802:3;8798:12;8791:19;;8596:220;;;:::o;8822:366::-;8964:3;8985:67;9049:2;9044:3;8985:67;:::i;:::-;8978:74;;9061:93;9150:3;9061:93;:::i;:::-;9179:2;9174:3;9170:12;9163:19;;8968:220;;;:::o;9194:366::-;9336:3;9357:67;9421:2;9416:3;9357:67;:::i;:::-;9350:74;;9433:93;9522:3;9433:93;:::i;:::-;9551:2;9546:3;9542:12;9535:19;;9340:220;;;:::o;9566:366::-;9708:3;9729:67;9793:2;9788:3;9729:67;:::i;:::-;9722:74;;9805:93;9894:3;9805:93;:::i;:::-;9923:2;9918:3;9914:12;9907:19;;9712:220;;;:::o;9938:366::-;10080:3;10101:67;10165:2;10160:3;10101:67;:::i;:::-;10094:74;;10177:93;10266:3;10177:93;:::i;:::-;10295:2;10290:3;10286:12;10279:19;;10084:220;;;:::o;10310:366::-;10452:3;10473:67;10537:2;10532:3;10473:67;:::i;:::-;10466:74;;10549:93;10638:3;10549:93;:::i;:::-;10667:2;10662:3;10658:12;10651:19;;10456:220;;;:::o;10682:366::-;10824:3;10845:67;10909:2;10904:3;10845:67;:::i;:::-;10838:74;;10921:93;11010:3;10921:93;:::i;:::-;11039:2;11034:3;11030:12;11023:19;;10828:220;;;:::o;11054:366::-;11196:3;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11200:220;;;:::o;11426:366::-;11568:3;11589:67;11653:2;11648:3;11589:67;:::i;:::-;11582:74;;11665:93;11754:3;11665:93;:::i;:::-;11783:2;11778:3;11774:12;11767:19;;11572:220;;;:::o;11798:366::-;11940:3;11961:67;12025:2;12020:3;11961:67;:::i;:::-;11954:74;;12037:93;12126:3;12037:93;:::i;:::-;12155:2;12150:3;12146:12;12139:19;;11944:220;;;:::o;12170:366::-;12312:3;12333:67;12397:2;12392:3;12333:67;:::i;:::-;12326:74;;12409:93;12498:3;12409:93;:::i;:::-;12527:2;12522:3;12518:12;12511:19;;12316:220;;;:::o;12542:366::-;12684:3;12705:67;12769:2;12764:3;12705:67;:::i;:::-;12698:74;;12781:93;12870:3;12781:93;:::i;:::-;12899:2;12894:3;12890:12;12883:19;;12688:220;;;:::o;12914:366::-;13056:3;13077:67;13141:2;13136:3;13077:67;:::i;:::-;13070:74;;13153:93;13242:3;13153:93;:::i;:::-;13271:2;13266:3;13262:12;13255:19;;13060:220;;;:::o;13286:366::-;13428:3;13449:67;13513:2;13508:3;13449:67;:::i;:::-;13442:74;;13525:93;13614:3;13525:93;:::i;:::-;13643:2;13638:3;13634:12;13627:19;;13432:220;;;:::o;13658:366::-;13800:3;13821:67;13885:2;13880:3;13821:67;:::i;:::-;13814:74;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13804:220;;;:::o;14030:366::-;14172:3;14193:67;14257:2;14252:3;14193:67;:::i;:::-;14186:74;;14269:93;14358:3;14269:93;:::i;:::-;14387:2;14382:3;14378:12;14371:19;;14176:220;;;:::o;14402:366::-;14544:3;14565:67;14629:2;14624:3;14565:67;:::i;:::-;14558:74;;14641:93;14730:3;14641:93;:::i;:::-;14759:2;14754:3;14750:12;14743:19;;14548:220;;;:::o;14774:366::-;14916:3;14937:67;15001:2;14996:3;14937:67;:::i;:::-;14930:74;;15013:93;15102:3;15013:93;:::i;:::-;15131:2;15126:3;15122:12;15115:19;;14920:220;;;:::o;15146:366::-;15288:3;15309:67;15373:2;15368:3;15309:67;:::i;:::-;15302:74;;15385:93;15474:3;15385:93;:::i;:::-;15503:2;15498:3;15494:12;15487:19;;15292:220;;;:::o;15518:366::-;15660:3;15681:67;15745:2;15740:3;15681:67;:::i;:::-;15674:74;;15757:93;15846:3;15757:93;:::i;:::-;15875:2;15870:3;15866:12;15859:19;;15664:220;;;:::o;15890:118::-;15977:24;15995:5;15977:24;:::i;:::-;15972:3;15965:37;15955:53;;:::o;16014:435::-;16194:3;16216:95;16307:3;16298:6;16216:95;:::i;:::-;16209:102;;16328:95;16419:3;16410:6;16328:95;:::i;:::-;16321:102;;16440:3;16433:10;;16198:251;;;;;:::o;16455:222::-;16548:4;16586:2;16575:9;16571:18;16563:26;;16599:71;16667:1;16656:9;16652:17;16643:6;16599:71;:::i;:::-;16553:124;;;;:::o;16683:640::-;16878:4;16916:3;16905:9;16901:19;16893:27;;16930:71;16998:1;16987:9;16983:17;16974:6;16930:71;:::i;:::-;17011:72;17079:2;17068:9;17064:18;17055:6;17011:72;:::i;:::-;17093;17161:2;17150:9;17146:18;17137:6;17093:72;:::i;:::-;17212:9;17206:4;17202:20;17197:2;17186:9;17182:18;17175:48;17240:76;17311:4;17302:6;17240:76;:::i;:::-;17232:84;;16883:440;;;;;;;:::o;17329:210::-;17416:4;17454:2;17443:9;17439:18;17431:26;;17467:65;17529:1;17518:9;17514:17;17505:6;17467:65;:::i;:::-;17421:118;;;;:::o;17545:313::-;17658:4;17696:2;17685:9;17681:18;17673:26;;17745:9;17739:4;17735:20;17731:1;17720:9;17716:17;17709:47;17773:78;17846:4;17837:6;17773:78;:::i;:::-;17765:86;;17663:195;;;;:::o;17864:419::-;18030:4;18068:2;18057:9;18053:18;18045:26;;18117:9;18111:4;18107:20;18103:1;18092:9;18088:17;18081:47;18145:131;18271:4;18145:131;:::i;:::-;18137:139;;18035:248;;;:::o;18289:419::-;18455:4;18493:2;18482:9;18478:18;18470:26;;18542:9;18536:4;18532:20;18528:1;18517:9;18513:17;18506:47;18570:131;18696:4;18570:131;:::i;:::-;18562:139;;18460:248;;;:::o;18714:419::-;18880:4;18918:2;18907:9;18903:18;18895:26;;18967:9;18961:4;18957:20;18953:1;18942:9;18938:17;18931:47;18995:131;19121:4;18995:131;:::i;:::-;18987:139;;18885:248;;;:::o;19139:419::-;19305:4;19343:2;19332:9;19328:18;19320:26;;19392:9;19386:4;19382:20;19378:1;19367:9;19363:17;19356:47;19420:131;19546:4;19420:131;:::i;:::-;19412:139;;19310:248;;;:::o;19564:419::-;19730:4;19768:2;19757:9;19753:18;19745:26;;19817:9;19811:4;19807:20;19803:1;19792:9;19788:17;19781:47;19845:131;19971:4;19845:131;:::i;:::-;19837:139;;19735:248;;;:::o;19989:419::-;20155:4;20193:2;20182:9;20178:18;20170:26;;20242:9;20236:4;20232:20;20228:1;20217:9;20213:17;20206:47;20270:131;20396:4;20270:131;:::i;:::-;20262:139;;20160:248;;;:::o;20414:419::-;20580:4;20618:2;20607:9;20603:18;20595:26;;20667:9;20661:4;20657:20;20653:1;20642:9;20638:17;20631:47;20695:131;20821:4;20695:131;:::i;:::-;20687:139;;20585:248;;;:::o;20839:419::-;21005:4;21043:2;21032:9;21028:18;21020:26;;21092:9;21086:4;21082:20;21078:1;21067:9;21063:17;21056:47;21120:131;21246:4;21120:131;:::i;:::-;21112:139;;21010:248;;;:::o;21264:419::-;21430:4;21468:2;21457:9;21453:18;21445:26;;21517:9;21511:4;21507:20;21503:1;21492:9;21488:17;21481:47;21545:131;21671:4;21545:131;:::i;:::-;21537:139;;21435:248;;;:::o;21689:419::-;21855:4;21893:2;21882:9;21878:18;21870:26;;21942:9;21936:4;21932:20;21928:1;21917:9;21913:17;21906:47;21970:131;22096:4;21970:131;:::i;:::-;21962:139;;21860:248;;;:::o;22114:419::-;22280:4;22318:2;22307:9;22303:18;22295:26;;22367:9;22361:4;22357:20;22353:1;22342:9;22338:17;22331:47;22395:131;22521:4;22395:131;:::i;:::-;22387:139;;22285:248;;;:::o;22539:419::-;22705:4;22743:2;22732:9;22728:18;22720:26;;22792:9;22786:4;22782:20;22778:1;22767:9;22763:17;22756:47;22820:131;22946:4;22820:131;:::i;:::-;22812:139;;22710:248;;;:::o;22964:419::-;23130:4;23168:2;23157:9;23153:18;23145:26;;23217:9;23211:4;23207:20;23203:1;23192:9;23188:17;23181:47;23245:131;23371:4;23245:131;:::i;:::-;23237:139;;23135:248;;;:::o;23389:419::-;23555:4;23593:2;23582:9;23578:18;23570:26;;23642:9;23636:4;23632:20;23628:1;23617:9;23613:17;23606:47;23670:131;23796:4;23670:131;:::i;:::-;23662:139;;23560:248;;;:::o;23814:419::-;23980:4;24018:2;24007:9;24003:18;23995:26;;24067:9;24061:4;24057:20;24053:1;24042:9;24038:17;24031:47;24095:131;24221:4;24095:131;:::i;:::-;24087:139;;23985:248;;;:::o;24239:419::-;24405:4;24443:2;24432:9;24428:18;24420:26;;24492:9;24486:4;24482:20;24478:1;24467:9;24463:17;24456:47;24520:131;24646:4;24520:131;:::i;:::-;24512:139;;24410:248;;;:::o;24664:419::-;24830:4;24868:2;24857:9;24853:18;24845:26;;24917:9;24911:4;24907:20;24903:1;24892:9;24888:17;24881:47;24945:131;25071:4;24945:131;:::i;:::-;24937:139;;24835:248;;;:::o;25089:419::-;25255:4;25293:2;25282:9;25278:18;25270:26;;25342:9;25336:4;25332:20;25328:1;25317:9;25313:17;25306:47;25370:131;25496:4;25370:131;:::i;:::-;25362:139;;25260:248;;;:::o;25514:419::-;25680:4;25718:2;25707:9;25703:18;25695:26;;25767:9;25761:4;25757:20;25753:1;25742:9;25738:17;25731:47;25795:131;25921:4;25795:131;:::i;:::-;25787:139;;25685:248;;;:::o;25939:419::-;26105:4;26143:2;26132:9;26128:18;26120:26;;26192:9;26186:4;26182:20;26178:1;26167:9;26163:17;26156:47;26220:131;26346:4;26220:131;:::i;:::-;26212:139;;26110:248;;;:::o;26364:419::-;26530:4;26568:2;26557:9;26553:18;26545:26;;26617:9;26611:4;26607:20;26603:1;26592:9;26588:17;26581:47;26645:131;26771:4;26645:131;:::i;:::-;26637:139;;26535:248;;;:::o;26789:419::-;26955:4;26993:2;26982:9;26978:18;26970:26;;27042:9;27036:4;27032:20;27028:1;27017:9;27013:17;27006:47;27070:131;27196:4;27070:131;:::i;:::-;27062:139;;26960:248;;;:::o;27214:222::-;27307:4;27345:2;27334:9;27330:18;27322:26;;27358:71;27426:1;27415:9;27411:17;27402:6;27358:71;:::i;:::-;27312:124;;;;:::o;27442:129::-;27476:6;27503:20;;:::i;:::-;27493:30;;27532:33;27560:4;27552:6;27532:33;:::i;:::-;27483:88;;;:::o;27577:75::-;27610:6;27643:2;27637:9;27627:19;;27617:35;:::o;27658:307::-;27719:4;27809:18;27801:6;27798:30;27795:2;;;27831:18;;:::i;:::-;27795:2;27869:29;27891:6;27869:29;:::i;:::-;27861:37;;27953:4;27947;27943:15;27935:23;;27724:241;;;:::o;27971:308::-;28033:4;28123:18;28115:6;28112:30;28109:2;;;28145:18;;:::i;:::-;28109:2;28183:29;28205:6;28183:29;:::i;:::-;28175:37;;28267:4;28261;28257:15;28249:23;;28038:241;;;:::o;28285:98::-;28336:6;28370:5;28364:12;28354:22;;28343:40;;;:::o;28389:99::-;28441:6;28475:5;28469:12;28459:22;;28448:40;;;:::o;28494:168::-;28577:11;28611:6;28606:3;28599:19;28651:4;28646:3;28642:14;28627:29;;28589:73;;;;:::o;28668:169::-;28752:11;28786:6;28781:3;28774:19;28826:4;28821:3;28817:14;28802:29;;28764:73;;;;:::o;28843:148::-;28945:11;28982:3;28967:18;;28957:34;;;;:::o;28997:305::-;29037:3;29056:20;29074:1;29056:20;:::i;:::-;29051:25;;29090:20;29108:1;29090:20;:::i;:::-;29085:25;;29244:1;29176:66;29172:74;29169:1;29166:81;29163:2;;;29250:18;;:::i;:::-;29163:2;29294:1;29291;29287:9;29280:16;;29041:261;;;;:::o;29308:185::-;29348:1;29365:20;29383:1;29365:20;:::i;:::-;29360:25;;29399:20;29417:1;29399:20;:::i;:::-;29394:25;;29438:1;29428:2;;29443:18;;:::i;:::-;29428:2;29485:1;29482;29478:9;29473:14;;29350:143;;;;:::o;29499:348::-;29539:7;29562:20;29580:1;29562:20;:::i;:::-;29557:25;;29596:20;29614:1;29596:20;:::i;:::-;29591:25;;29784:1;29716:66;29712:74;29709:1;29706:81;29701:1;29694:9;29687:17;29683:105;29680:2;;;29791:18;;:::i;:::-;29680:2;29839:1;29836;29832:9;29821:20;;29547:300;;;;:::o;29853:191::-;29893:4;29913:20;29931:1;29913:20;:::i;:::-;29908:25;;29947:20;29965:1;29947:20;:::i;:::-;29942:25;;29986:1;29983;29980:8;29977:2;;;29991:18;;:::i;:::-;29977:2;30036:1;30033;30029:9;30021:17;;29898:146;;;;:::o;30050:96::-;30087:7;30116:24;30134:5;30116:24;:::i;:::-;30105:35;;30095:51;;;:::o;30152:90::-;30186:7;30229:5;30222:13;30215:21;30204:32;;30194:48;;;:::o;30248:149::-;30284:7;30324:66;30317:5;30313:78;30302:89;;30292:105;;;:::o;30403:126::-;30440:7;30480:42;30473:5;30469:54;30458:65;;30448:81;;;:::o;30535:77::-;30572:7;30601:5;30590:16;;30580:32;;;:::o;30618:154::-;30702:6;30697:3;30692;30679:30;30764:1;30755:6;30750:3;30746:16;30739:27;30669:103;;;:::o;30778:307::-;30846:1;30856:113;30870:6;30867:1;30864:13;30856:113;;;30955:1;30950:3;30946:11;30940:18;30936:1;30931:3;30927:11;30920:39;30892:2;30889:1;30885:10;30880:15;;30856:113;;;30987:6;30984:1;30981:13;30978:2;;;31067:1;31058:6;31053:3;31049:16;31042:27;30978:2;30827:258;;;;:::o;31091:320::-;31135:6;31172:1;31166:4;31162:12;31152:22;;31219:1;31213:4;31209:12;31240:18;31230:2;;31296:4;31288:6;31284:17;31274:27;;31230:2;31358;31350:6;31347:14;31327:18;31324:38;31321:2;;;31377:18;;:::i;:::-;31321:2;31142:269;;;;:::o;31417:281::-;31500:27;31522:4;31500:27;:::i;:::-;31492:6;31488:40;31630:6;31618:10;31615:22;31594:18;31582:10;31579:34;31576:62;31573:2;;;31641:18;;:::i;:::-;31573:2;31681:10;31677:2;31670:22;31460:238;;;:::o;31704:233::-;31743:3;31766:24;31784:5;31766:24;:::i;:::-;31757:33;;31812:66;31805:5;31802:77;31799:2;;;31882:18;;:::i;:::-;31799:2;31929:1;31922:5;31918:13;31911:20;;31747:190;;;:::o;31943:176::-;31975:1;31992:20;32010:1;31992:20;:::i;:::-;31987:25;;32026:20;32044:1;32026:20;:::i;:::-;32021:25;;32065:1;32055:2;;32070:18;;:::i;:::-;32055:2;32111:1;32108;32104:9;32099:14;;31977:142;;;;:::o;32125:180::-;32173:77;32170:1;32163:88;32270:4;32267:1;32260:15;32294:4;32291:1;32284:15;32311:180;32359:77;32356:1;32349:88;32456:4;32453:1;32446:15;32480:4;32477:1;32470:15;32497:180;32545:77;32542:1;32535:88;32642:4;32639:1;32632:15;32666:4;32663:1;32656:15;32683:180;32731:77;32728:1;32721:88;32828:4;32825:1;32818:15;32852:4;32849:1;32842:15;32869:102;32910:6;32961:2;32957:7;32952:2;32945:5;32941:14;32937:28;32927:38;;32917:54;;;:::o;32977:230::-;33117:34;33113:1;33105:6;33101:14;33094:58;33186:13;33181:2;33173:6;33169:15;33162:38;33083:124;:::o;33213:237::-;33353:34;33349:1;33341:6;33337:14;33330:58;33422:20;33417:2;33409:6;33405:15;33398:45;33319:131;:::o;33456:225::-;33596:34;33592:1;33584:6;33580:14;33573:58;33665:8;33660:2;33652:6;33648:15;33641:33;33562:119;:::o;33687:178::-;33827:30;33823:1;33815:6;33811:14;33804:54;33793:72;:::o;33871:223::-;34011:34;34007:1;33999:6;33995:14;33988:58;34080:6;34075:2;34067:6;34063:15;34056:31;33977:117;:::o;34100:175::-;34240:27;34236:1;34228:6;34224:14;34217:51;34206:69;:::o;34281:231::-;34421:34;34417:1;34409:6;34405:14;34398:58;34490:14;34485:2;34477:6;34473:15;34466:39;34387:125;:::o;34518:243::-;34658:34;34654:1;34646:6;34642:14;34635:58;34727:26;34722:2;34714:6;34710:15;34703:51;34624:137;:::o;34767:229::-;34907:34;34903:1;34895:6;34891:14;34884:58;34976:12;34971:2;34963:6;34959:15;34952:37;34873:123;:::o;35002:228::-;35142:34;35138:1;35130:6;35126:14;35119:58;35211:11;35206:2;35198:6;35194:15;35187:36;35108:122;:::o;35236:182::-;35376:34;35372:1;35364:6;35360:14;35353:58;35342:76;:::o;35424:228::-;35564:34;35560:1;35552:6;35548:14;35541:58;35633:11;35628:2;35620:6;35616:15;35609:36;35530:122;:::o;35658:161::-;35798:13;35794:1;35786:6;35782:14;35775:37;35764:55;:::o;35825:231::-;35965:34;35961:1;35953:6;35949:14;35942:58;36034:14;36029:2;36021:6;36017:15;36010:39;35931:125;:::o;36062:182::-;36202:34;36198:1;36190:6;36186:14;36179:58;36168:76;:::o;36250:228::-;36390:34;36386:1;36378:6;36374:14;36367:58;36459:11;36454:2;36446:6;36442:15;36435:36;36356:122;:::o;36484:234::-;36624:34;36620:1;36612:6;36608:14;36601:58;36693:17;36688:2;36680:6;36676:15;36669:42;36590:128;:::o;36724:220::-;36864:34;36860:1;36852:6;36848:14;36841:58;36933:3;36928:2;36920:6;36916:15;36909:28;36830:114;:::o;36950:172::-;37090:24;37086:1;37078:6;37074:14;37067:48;37056:66;:::o;37128:175::-;37268:27;37264:1;37256:6;37252:14;37245:51;37234:69;:::o;37309:236::-;37449:34;37445:1;37437:6;37433:14;37426:58;37518:19;37513:2;37505:6;37501:15;37494:44;37415:130;:::o;37551:231::-;37691:34;37687:1;37679:6;37675:14;37668:58;37760:14;37755:2;37747:6;37743:15;37736:39;37657:125;:::o;37788:122::-;37861:24;37879:5;37861:24;:::i;:::-;37854:5;37851:35;37841:2;;37900:1;37897;37890:12;37841:2;37831:79;:::o;37916:116::-;37986:21;38001:5;37986:21;:::i;:::-;37979:5;37976:32;37966:2;;38022:1;38019;38012:12;37966:2;37956:76;:::o;38038:120::-;38110:23;38127:5;38110:23;:::i;:::-;38103:5;38100:34;38090:2;;38148:1;38145;38138:12;38090:2;38080:78;:::o;38164:122::-;38237:24;38255:5;38237:24;:::i;:::-;38230:5;38227:35;38217:2;;38276:1;38273;38266:12;38217:2;38207:79;:::o

Swarm Source

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