ETH Price: $2,338.36 (-0.16%)

Finkey (Finkey)
 

Overview

TokenID

1059

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Finkey

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: finkey.sol


pragma solidity ^0.8.4;





contract Finkey is ERC721, ERC721Enumerable, Ownable {
    using Strings for uint256;

    constructor() ERC721("Finkey", "Finkey") {
        _transferOwnership(0x081403b955d7415Bdc5cBf591e9085E7fF9aEEE9);
    }

    function _baseURI() internal pure override returns (string memory) {
        return "https://amber-openverse.s3.ap-northeast-1.amazonaws.com/Finkey/metadata/";
    }

    function mint(
        address to,
        uint256 tokenId,
        string memory _tokenURI
    ) public onlyOwner {
        require(tokenId <= 1700);
        _safeMint(to, tokenId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) onlyOwner {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        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(), ".json"))
                : "";
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f46696e6b657900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f46696e6b65790000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001cb565b508060019080519060200190620000af929190620001cb565b505050620000d2620000c6620000fd60201b60201c565b6200010560201b60201c565b620000f773081403b955d7415bdc5cbf591e9085e7ff9aeee96200010560201b60201c565b620002e0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d9906200027b565b90600052602060002090601f016020900481019282620001fd576000855562000249565b82601f106200021857805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002485782518255916020019190600101906200022b565b5b5090506200025891906200025c565b5090565b5b80821115620002775760008160009055506001016200025d565b5090565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6135bc80620002f06000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063d3fc98641461038f578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b6004803603810190610146919061244e565b6103f7565b60405161015891906128d4565b60405180910390f35b610169610409565b60405161017691906128ef565b60405180910390f35b610199600480360381019061019491906124a8565b61049b565b6040516101a6919061286d565b60405180910390f35b6101c960048036038101906101c4919061239f565b610520565b005b6101d3610638565b6040516101e09190612b51565b60405180910390f35b61020360048036038101906101fe9190612289565b610645565b005b61021f600480360381019061021a919061239f565b6106a5565b60405161022c9190612b51565b60405180910390f35b61024f600480360381019061024a9190612289565b61074a565b005b61026b600480360381019061026691906124a8565b61076a565b6040516102789190612b51565b60405180910390f35b61029b600480360381019061029691906124a8565b6107db565b6040516102a8919061286d565b60405180910390f35b6102cb60048036038101906102c6919061221c565b61088d565b6040516102d89190612b51565b60405180910390f35b6102e9610945565b005b6102f36109cd565b604051610300919061286d565b60405180910390f35b6103116109f7565b60405161031e91906128ef565b60405180910390f35b610341600480360381019061033c919061235f565b610a89565b005b61035d600480360381019061035891906122dc565b610a9f565b005b610379600480360381019061037491906124a8565b610b01565b60405161038691906128ef565b60405180910390f35b6103a960048036038101906103a491906123df565b610ba8565b005b6103c560048036038101906103c09190612249565b610c42565b6040516103d291906128d4565b60405180910390f35b6103f560048036038101906103f0919061221c565b610cd6565b005b600061040282610dce565b9050919050565b60606000805461041890612da7565b80601f016020809104026020016040519081016040528092919081815260200182805461044490612da7565b80156104915780601f1061046657610100808354040283529160200191610491565b820191906000526020600020905b81548152906001019060200180831161047457829003601f168201915b5050505050905090565b60006104a682610e48565b6104e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dc90612a91565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061052b826107db565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561059c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059390612af1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105bb610eb4565b73ffffffffffffffffffffffffffffffffffffffff1614806105ea57506105e9816105e4610eb4565b610c42565b5b610629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062090612a11565b60405180910390fd5b6106338383610ebc565b505050565b6000600880549050905090565b610656610650610eb4565b82610f75565b610695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068c90612b11565b60405180910390fd5b6106a0838383611053565b505050565b60006106b08361088d565b82106106f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e890612911565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61076583838360405180602001604052806000815250610a9f565b505050565b6000610774610638565b82106107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90612b31565b60405180910390fd5b600882815481106107c9576107c8612f40565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90612a51565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f590612a31565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094d610eb4565b73ffffffffffffffffffffffffffffffffffffffff1661096b6109cd565b73ffffffffffffffffffffffffffffffffffffffff16146109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612ab1565b60405180910390fd5b6109cb60006112ba565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a0690612da7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3290612da7565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b610a9b610a94610eb4565b8383611380565b5050565b610ab0610aaa610eb4565b83610f75565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690612b11565b60405180910390fd5b610afb848484846114ed565b50505050565b6060610b0c82610e48565b610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612ad1565b60405180910390fd5b6000610b55611549565b90506000815111610b755760405180602001604052806000815250610ba0565b80610b7f84611569565b604051602001610b9092919061283e565b6040516020818303038152906040525b915050919050565b610bb0610eb4565b73ffffffffffffffffffffffffffffffffffffffff16610bce6109cd565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90612ab1565b60405180910390fd5b6106a4821115610c3357600080fd5b610c3d83836116ca565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cde610eb4565b73ffffffffffffffffffffffffffffffffffffffff16610cfc6109cd565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990612ab1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990612951565b60405180910390fd5b610dcb816112ba565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e415750610e40826116e8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f2f836107db565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f8082610e48565b610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906129f1565b60405180910390fd5b6000610fca836107db565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061100c575061100b8185610c42565b5b8061104a57508373ffffffffffffffffffffffffffffffffffffffff166110328461049b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611073826107db565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612971565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611139576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611130906129b1565b60405180910390fd5b6111448383836117ca565b61114f600082610ebc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119f9190612cbd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111f69190612c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112b5838383611856565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e6906129d1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e091906128d4565b60405180910390a3505050565b6114f8848484611053565b6115048484848461185b565b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90612931565b60405180910390fd5b50505050565b606060405180608001604052806048815260200161353f60489139905090565b606060008214156115b1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116c5565b600082905060005b600082146115e35780806115cc90612e0a565b915050600a826115dc9190612c8c565b91506115b9565b60008167ffffffffffffffff8111156115ff576115fe612f6f565b5b6040519080825280601f01601f1916602001820160405280156116315781602001600182028036833780820191505090505b5090505b600085146116be5760018261164a9190612cbd565b9150600a856116599190612e53565b60306116659190612c36565b60f81b81838151811061167b5761167a612f40565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116b79190612c8c565b9450611635565b8093505050505b919050565b6116e48282604051806020016040528060008152506119f2565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117c357506117c282611a4d565b5b9050919050565b6117d2610eb4565b73ffffffffffffffffffffffffffffffffffffffff166117f06109cd565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90612ab1565b60405180910390fd5b611851838383611ab7565b505050565b505050565b600061187c8473ffffffffffffffffffffffffffffffffffffffff16611bcb565b156119e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118a5610eb4565b8786866040518563ffffffff1660e01b81526004016118c79493929190612888565b602060405180830381600087803b1580156118e157600080fd5b505af192505050801561191257506040513d601f19601f8201168201806040525081019061190f919061247b565b60015b611995573d8060008114611942576040519150601f19603f3d011682016040523d82523d6000602084013e611947565b606091505b5060008151141561198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612931565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119ea565b600190505b949350505050565b6119fc8383611bee565b611a09600084848461185b565b611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612931565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ac2838383611dc8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b0557611b0081611dcd565b611b44565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b4357611b428382611e16565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8757611b8281611f83565b611bc6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611bc557611bc48282612054565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612a71565b60405180910390fd5b611c6781610e48565b15611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90612991565b60405180910390fd5b611cb3600083836117ca565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d039190612c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dc460008383611856565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e238461088d565b611e2d9190612cbd565b9050600060076000848152602001908152602001600020549050818114611f12576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611f979190612cbd565b9050600060096000848152602001908152602001600020549050600060088381548110611fc757611fc6612f40565b5b906000526020600020015490508060088381548110611fe957611fe8612f40565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061203857612037612f11565b5b6001900381819060005260206000200160009055905550505050565b600061205f8361088d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60006120e66120e184612b91565b612b6c565b90508281526020810184848401111561210257612101612fa3565b5b61210d848285612d65565b509392505050565b600061212861212384612bc2565b612b6c565b90508281526020810184848401111561214457612143612fa3565b5b61214f848285612d65565b509392505050565b600081359050612166816134e2565b92915050565b60008135905061217b816134f9565b92915050565b60008135905061219081613510565b92915050565b6000815190506121a581613510565b92915050565b600082601f8301126121c0576121bf612f9e565b5b81356121d08482602086016120d3565b91505092915050565b600082601f8301126121ee576121ed612f9e565b5b81356121fe848260208601612115565b91505092915050565b60008135905061221681613527565b92915050565b60006020828403121561223257612231612fad565b5b600061224084828501612157565b91505092915050565b600080604083850312156122605761225f612fad565b5b600061226e85828601612157565b925050602061227f85828601612157565b9150509250929050565b6000806000606084860312156122a2576122a1612fad565b5b60006122b086828701612157565b93505060206122c186828701612157565b92505060406122d286828701612207565b9150509250925092565b600080600080608085870312156122f6576122f5612fad565b5b600061230487828801612157565b945050602061231587828801612157565b935050604061232687828801612207565b925050606085013567ffffffffffffffff81111561234757612346612fa8565b5b612353878288016121ab565b91505092959194509250565b6000806040838503121561237657612375612fad565b5b600061238485828601612157565b92505060206123958582860161216c565b9150509250929050565b600080604083850312156123b6576123b5612fad565b5b60006123c485828601612157565b92505060206123d585828601612207565b9150509250929050565b6000806000606084860312156123f8576123f7612fad565b5b600061240686828701612157565b935050602061241786828701612207565b925050604084013567ffffffffffffffff81111561243857612437612fa8565b5b612444868287016121d9565b9150509250925092565b60006020828403121561246457612463612fad565b5b600061247284828501612181565b91505092915050565b60006020828403121561249157612490612fad565b5b600061249f84828501612196565b91505092915050565b6000602082840312156124be576124bd612fad565b5b60006124cc84828501612207565b91505092915050565b6124de81612cf1565b82525050565b6124ed81612d03565b82525050565b60006124fe82612bf3565b6125088185612c09565b9350612518818560208601612d74565b61252181612fb2565b840191505092915050565b600061253782612bfe565b6125418185612c1a565b9350612551818560208601612d74565b61255a81612fb2565b840191505092915050565b600061257082612bfe565b61257a8185612c2b565b935061258a818560208601612d74565b80840191505092915050565b60006125a3602b83612c1a565b91506125ae82612fc3565b604082019050919050565b60006125c6603283612c1a565b91506125d182613012565b604082019050919050565b60006125e9602683612c1a565b91506125f482613061565b604082019050919050565b600061260c602583612c1a565b9150612617826130b0565b604082019050919050565b600061262f601c83612c1a565b915061263a826130ff565b602082019050919050565b6000612652602483612c1a565b915061265d82613128565b604082019050919050565b6000612675601983612c1a565b915061268082613177565b602082019050919050565b6000612698602c83612c1a565b91506126a3826131a0565b604082019050919050565b60006126bb603883612c1a565b91506126c6826131ef565b604082019050919050565b60006126de602a83612c1a565b91506126e98261323e565b604082019050919050565b6000612701602983612c1a565b915061270c8261328d565b604082019050919050565b6000612724602083612c1a565b915061272f826132dc565b602082019050919050565b6000612747602c83612c1a565b915061275282613305565b604082019050919050565b600061276a600583612c2b565b915061277582613354565b600582019050919050565b600061278d602083612c1a565b91506127988261337d565b602082019050919050565b60006127b0602f83612c1a565b91506127bb826133a6565b604082019050919050565b60006127d3602183612c1a565b91506127de826133f5565b604082019050919050565b60006127f6603183612c1a565b915061280182613444565b604082019050919050565b6000612819602c83612c1a565b915061282482613493565b604082019050919050565b61283881612d5b565b82525050565b600061284a8285612565565b91506128568284612565565b91506128618261275d565b91508190509392505050565b600060208201905061288260008301846124d5565b92915050565b600060808201905061289d60008301876124d5565b6128aa60208301866124d5565b6128b7604083018561282f565b81810360608301526128c981846124f3565b905095945050505050565b60006020820190506128e960008301846124e4565b92915050565b60006020820190508181036000830152612909818461252c565b905092915050565b6000602082019050818103600083015261292a81612596565b9050919050565b6000602082019050818103600083015261294a816125b9565b9050919050565b6000602082019050818103600083015261296a816125dc565b9050919050565b6000602082019050818103600083015261298a816125ff565b9050919050565b600060208201905081810360008301526129aa81612622565b9050919050565b600060208201905081810360008301526129ca81612645565b9050919050565b600060208201905081810360008301526129ea81612668565b9050919050565b60006020820190508181036000830152612a0a8161268b565b9050919050565b60006020820190508181036000830152612a2a816126ae565b9050919050565b60006020820190508181036000830152612a4a816126d1565b9050919050565b60006020820190508181036000830152612a6a816126f4565b9050919050565b60006020820190508181036000830152612a8a81612717565b9050919050565b60006020820190508181036000830152612aaa8161273a565b9050919050565b60006020820190508181036000830152612aca81612780565b9050919050565b60006020820190508181036000830152612aea816127a3565b9050919050565b60006020820190508181036000830152612b0a816127c6565b9050919050565b60006020820190508181036000830152612b2a816127e9565b9050919050565b60006020820190508181036000830152612b4a8161280c565b9050919050565b6000602082019050612b66600083018461282f565b92915050565b6000612b76612b87565b9050612b828282612dd9565b919050565b6000604051905090565b600067ffffffffffffffff821115612bac57612bab612f6f565b5b612bb582612fb2565b9050602081019050919050565b600067ffffffffffffffff821115612bdd57612bdc612f6f565b5b612be682612fb2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4182612d5b565b9150612c4c83612d5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8157612c80612e84565b5b828201905092915050565b6000612c9782612d5b565b9150612ca283612d5b565b925082612cb257612cb1612eb3565b5b828204905092915050565b6000612cc882612d5b565b9150612cd383612d5b565b925082821015612ce657612ce5612e84565b5b828203905092915050565b6000612cfc82612d3b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d92578082015181840152602081019050612d77565b83811115612da1576000848401525b50505050565b60006002820490506001821680612dbf57607f821691505b60208210811415612dd357612dd2612ee2565b5b50919050565b612de282612fb2565b810181811067ffffffffffffffff82111715612e0157612e00612f6f565b5b80604052505050565b6000612e1582612d5b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e4857612e47612e84565b5b600182019050919050565b6000612e5e82612d5b565b9150612e6983612d5b565b925082612e7957612e78612eb3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6134eb81612cf1565b81146134f657600080fd5b50565b61350281612d03565b811461350d57600080fd5b50565b61351981612d0f565b811461352457600080fd5b50565b61353081612d5b565b811461353b57600080fd5b5056fe68747470733a2f2f616d6265722d6f70656e76657273652e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f46696e6b65792f6d657461646174612fa2646970667358221220975a9e6a975a922aeb9aac3f0d71daccd7575f515ec66a7195959e3da5e0c1b064736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063d3fc98641461038f578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b6004803603810190610146919061244e565b6103f7565b60405161015891906128d4565b60405180910390f35b610169610409565b60405161017691906128ef565b60405180910390f35b610199600480360381019061019491906124a8565b61049b565b6040516101a6919061286d565b60405180910390f35b6101c960048036038101906101c4919061239f565b610520565b005b6101d3610638565b6040516101e09190612b51565b60405180910390f35b61020360048036038101906101fe9190612289565b610645565b005b61021f600480360381019061021a919061239f565b6106a5565b60405161022c9190612b51565b60405180910390f35b61024f600480360381019061024a9190612289565b61074a565b005b61026b600480360381019061026691906124a8565b61076a565b6040516102789190612b51565b60405180910390f35b61029b600480360381019061029691906124a8565b6107db565b6040516102a8919061286d565b60405180910390f35b6102cb60048036038101906102c6919061221c565b61088d565b6040516102d89190612b51565b60405180910390f35b6102e9610945565b005b6102f36109cd565b604051610300919061286d565b60405180910390f35b6103116109f7565b60405161031e91906128ef565b60405180910390f35b610341600480360381019061033c919061235f565b610a89565b005b61035d600480360381019061035891906122dc565b610a9f565b005b610379600480360381019061037491906124a8565b610b01565b60405161038691906128ef565b60405180910390f35b6103a960048036038101906103a491906123df565b610ba8565b005b6103c560048036038101906103c09190612249565b610c42565b6040516103d291906128d4565b60405180910390f35b6103f560048036038101906103f0919061221c565b610cd6565b005b600061040282610dce565b9050919050565b60606000805461041890612da7565b80601f016020809104026020016040519081016040528092919081815260200182805461044490612da7565b80156104915780601f1061046657610100808354040283529160200191610491565b820191906000526020600020905b81548152906001019060200180831161047457829003601f168201915b5050505050905090565b60006104a682610e48565b6104e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dc90612a91565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061052b826107db565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561059c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059390612af1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105bb610eb4565b73ffffffffffffffffffffffffffffffffffffffff1614806105ea57506105e9816105e4610eb4565b610c42565b5b610629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062090612a11565b60405180910390fd5b6106338383610ebc565b505050565b6000600880549050905090565b610656610650610eb4565b82610f75565b610695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068c90612b11565b60405180910390fd5b6106a0838383611053565b505050565b60006106b08361088d565b82106106f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e890612911565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61076583838360405180602001604052806000815250610a9f565b505050565b6000610774610638565b82106107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90612b31565b60405180910390fd5b600882815481106107c9576107c8612f40565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90612a51565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f590612a31565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094d610eb4565b73ffffffffffffffffffffffffffffffffffffffff1661096b6109cd565b73ffffffffffffffffffffffffffffffffffffffff16146109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612ab1565b60405180910390fd5b6109cb60006112ba565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a0690612da7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3290612da7565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b610a9b610a94610eb4565b8383611380565b5050565b610ab0610aaa610eb4565b83610f75565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690612b11565b60405180910390fd5b610afb848484846114ed565b50505050565b6060610b0c82610e48565b610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4290612ad1565b60405180910390fd5b6000610b55611549565b90506000815111610b755760405180602001604052806000815250610ba0565b80610b7f84611569565b604051602001610b9092919061283e565b6040516020818303038152906040525b915050919050565b610bb0610eb4565b73ffffffffffffffffffffffffffffffffffffffff16610bce6109cd565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90612ab1565b60405180910390fd5b6106a4821115610c3357600080fd5b610c3d83836116ca565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610cde610eb4565b73ffffffffffffffffffffffffffffffffffffffff16610cfc6109cd565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990612ab1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990612951565b60405180910390fd5b610dcb816112ba565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e415750610e40826116e8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f2f836107db565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f8082610e48565b610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906129f1565b60405180910390fd5b6000610fca836107db565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061100c575061100b8185610c42565b5b8061104a57508373ffffffffffffffffffffffffffffffffffffffff166110328461049b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611073826107db565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612971565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611139576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611130906129b1565b60405180910390fd5b6111448383836117ca565b61114f600082610ebc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119f9190612cbd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111f69190612c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112b5838383611856565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e6906129d1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e091906128d4565b60405180910390a3505050565b6114f8848484611053565b6115048484848461185b565b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90612931565b60405180910390fd5b50505050565b606060405180608001604052806048815260200161353f60489139905090565b606060008214156115b1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116c5565b600082905060005b600082146115e35780806115cc90612e0a565b915050600a826115dc9190612c8c565b91506115b9565b60008167ffffffffffffffff8111156115ff576115fe612f6f565b5b6040519080825280601f01601f1916602001820160405280156116315781602001600182028036833780820191505090505b5090505b600085146116be5760018261164a9190612cbd565b9150600a856116599190612e53565b60306116659190612c36565b60f81b81838151811061167b5761167a612f40565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116b79190612c8c565b9450611635565b8093505050505b919050565b6116e48282604051806020016040528060008152506119f2565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117c357506117c282611a4d565b5b9050919050565b6117d2610eb4565b73ffffffffffffffffffffffffffffffffffffffff166117f06109cd565b73ffffffffffffffffffffffffffffffffffffffff1614611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90612ab1565b60405180910390fd5b611851838383611ab7565b505050565b505050565b600061187c8473ffffffffffffffffffffffffffffffffffffffff16611bcb565b156119e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118a5610eb4565b8786866040518563ffffffff1660e01b81526004016118c79493929190612888565b602060405180830381600087803b1580156118e157600080fd5b505af192505050801561191257506040513d601f19601f8201168201806040525081019061190f919061247b565b60015b611995573d8060008114611942576040519150601f19603f3d011682016040523d82523d6000602084013e611947565b606091505b5060008151141561198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612931565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119ea565b600190505b949350505050565b6119fc8383611bee565b611a09600084848461185b565b611a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3f90612931565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ac2838383611dc8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b0557611b0081611dcd565b611b44565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b4357611b428382611e16565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8757611b8281611f83565b611bc6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611bc557611bc48282612054565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612a71565b60405180910390fd5b611c6781610e48565b15611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90612991565b60405180910390fd5b611cb3600083836117ca565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d039190612c36565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dc460008383611856565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e238461088d565b611e2d9190612cbd565b9050600060076000848152602001908152602001600020549050818114611f12576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611f979190612cbd565b9050600060096000848152602001908152602001600020549050600060088381548110611fc757611fc6612f40565b5b906000526020600020015490508060088381548110611fe957611fe8612f40565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061203857612037612f11565b5b6001900381819060005260206000200160009055905550505050565b600061205f8361088d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60006120e66120e184612b91565b612b6c565b90508281526020810184848401111561210257612101612fa3565b5b61210d848285612d65565b509392505050565b600061212861212384612bc2565b612b6c565b90508281526020810184848401111561214457612143612fa3565b5b61214f848285612d65565b509392505050565b600081359050612166816134e2565b92915050565b60008135905061217b816134f9565b92915050565b60008135905061219081613510565b92915050565b6000815190506121a581613510565b92915050565b600082601f8301126121c0576121bf612f9e565b5b81356121d08482602086016120d3565b91505092915050565b600082601f8301126121ee576121ed612f9e565b5b81356121fe848260208601612115565b91505092915050565b60008135905061221681613527565b92915050565b60006020828403121561223257612231612fad565b5b600061224084828501612157565b91505092915050565b600080604083850312156122605761225f612fad565b5b600061226e85828601612157565b925050602061227f85828601612157565b9150509250929050565b6000806000606084860312156122a2576122a1612fad565b5b60006122b086828701612157565b93505060206122c186828701612157565b92505060406122d286828701612207565b9150509250925092565b600080600080608085870312156122f6576122f5612fad565b5b600061230487828801612157565b945050602061231587828801612157565b935050604061232687828801612207565b925050606085013567ffffffffffffffff81111561234757612346612fa8565b5b612353878288016121ab565b91505092959194509250565b6000806040838503121561237657612375612fad565b5b600061238485828601612157565b92505060206123958582860161216c565b9150509250929050565b600080604083850312156123b6576123b5612fad565b5b60006123c485828601612157565b92505060206123d585828601612207565b9150509250929050565b6000806000606084860312156123f8576123f7612fad565b5b600061240686828701612157565b935050602061241786828701612207565b925050604084013567ffffffffffffffff81111561243857612437612fa8565b5b612444868287016121d9565b9150509250925092565b60006020828403121561246457612463612fad565b5b600061247284828501612181565b91505092915050565b60006020828403121561249157612490612fad565b5b600061249f84828501612196565b91505092915050565b6000602082840312156124be576124bd612fad565b5b60006124cc84828501612207565b91505092915050565b6124de81612cf1565b82525050565b6124ed81612d03565b82525050565b60006124fe82612bf3565b6125088185612c09565b9350612518818560208601612d74565b61252181612fb2565b840191505092915050565b600061253782612bfe565b6125418185612c1a565b9350612551818560208601612d74565b61255a81612fb2565b840191505092915050565b600061257082612bfe565b61257a8185612c2b565b935061258a818560208601612d74565b80840191505092915050565b60006125a3602b83612c1a565b91506125ae82612fc3565b604082019050919050565b60006125c6603283612c1a565b91506125d182613012565b604082019050919050565b60006125e9602683612c1a565b91506125f482613061565b604082019050919050565b600061260c602583612c1a565b9150612617826130b0565b604082019050919050565b600061262f601c83612c1a565b915061263a826130ff565b602082019050919050565b6000612652602483612c1a565b915061265d82613128565b604082019050919050565b6000612675601983612c1a565b915061268082613177565b602082019050919050565b6000612698602c83612c1a565b91506126a3826131a0565b604082019050919050565b60006126bb603883612c1a565b91506126c6826131ef565b604082019050919050565b60006126de602a83612c1a565b91506126e98261323e565b604082019050919050565b6000612701602983612c1a565b915061270c8261328d565b604082019050919050565b6000612724602083612c1a565b915061272f826132dc565b602082019050919050565b6000612747602c83612c1a565b915061275282613305565b604082019050919050565b600061276a600583612c2b565b915061277582613354565b600582019050919050565b600061278d602083612c1a565b91506127988261337d565b602082019050919050565b60006127b0602f83612c1a565b91506127bb826133a6565b604082019050919050565b60006127d3602183612c1a565b91506127de826133f5565b604082019050919050565b60006127f6603183612c1a565b915061280182613444565b604082019050919050565b6000612819602c83612c1a565b915061282482613493565b604082019050919050565b61283881612d5b565b82525050565b600061284a8285612565565b91506128568284612565565b91506128618261275d565b91508190509392505050565b600060208201905061288260008301846124d5565b92915050565b600060808201905061289d60008301876124d5565b6128aa60208301866124d5565b6128b7604083018561282f565b81810360608301526128c981846124f3565b905095945050505050565b60006020820190506128e960008301846124e4565b92915050565b60006020820190508181036000830152612909818461252c565b905092915050565b6000602082019050818103600083015261292a81612596565b9050919050565b6000602082019050818103600083015261294a816125b9565b9050919050565b6000602082019050818103600083015261296a816125dc565b9050919050565b6000602082019050818103600083015261298a816125ff565b9050919050565b600060208201905081810360008301526129aa81612622565b9050919050565b600060208201905081810360008301526129ca81612645565b9050919050565b600060208201905081810360008301526129ea81612668565b9050919050565b60006020820190508181036000830152612a0a8161268b565b9050919050565b60006020820190508181036000830152612a2a816126ae565b9050919050565b60006020820190508181036000830152612a4a816126d1565b9050919050565b60006020820190508181036000830152612a6a816126f4565b9050919050565b60006020820190508181036000830152612a8a81612717565b9050919050565b60006020820190508181036000830152612aaa8161273a565b9050919050565b60006020820190508181036000830152612aca81612780565b9050919050565b60006020820190508181036000830152612aea816127a3565b9050919050565b60006020820190508181036000830152612b0a816127c6565b9050919050565b60006020820190508181036000830152612b2a816127e9565b9050919050565b60006020820190508181036000830152612b4a8161280c565b9050919050565b6000602082019050612b66600083018461282f565b92915050565b6000612b76612b87565b9050612b828282612dd9565b919050565b6000604051905090565b600067ffffffffffffffff821115612bac57612bab612f6f565b5b612bb582612fb2565b9050602081019050919050565b600067ffffffffffffffff821115612bdd57612bdc612f6f565b5b612be682612fb2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4182612d5b565b9150612c4c83612d5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8157612c80612e84565b5b828201905092915050565b6000612c9782612d5b565b9150612ca283612d5b565b925082612cb257612cb1612eb3565b5b828204905092915050565b6000612cc882612d5b565b9150612cd383612d5b565b925082821015612ce657612ce5612e84565b5b828203905092915050565b6000612cfc82612d3b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d92578082015181840152602081019050612d77565b83811115612da1576000848401525b50505050565b60006002820490506001821680612dbf57607f821691505b60208210811415612dd357612dd2612ee2565b5b50919050565b612de282612fb2565b810181811067ffffffffffffffff82111715612e0157612e00612f6f565b5b80604052505050565b6000612e1582612d5b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e4857612e47612e84565b5b600182019050919050565b6000612e5e82612d5b565b9150612e6983612d5b565b925082612e7957612e78612eb3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6134eb81612cf1565b81146134f657600080fd5b50565b61350281612d03565b811461350d57600080fd5b50565b61351981612d0f565b811461352457600080fd5b50565b61353081612d5b565b811461353b57600080fd5b5056fe68747470733a2f2f616d6265722d6f70656e76657273652e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f46696e6b65792f6d657461646174612fa2646970667358221220975a9e6a975a922aeb9aac3f0d71daccd7575f515ec66a7195959e3da5e0c1b064736f6c63430008070033

Deployed Bytecode Sourcemap

45561:1516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46862:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26172:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27255:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39993:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28482:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39661:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28892:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40183:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25866:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25596:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;:::i;:::-;;4079:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26341:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28025:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29148:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46396:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45960:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28251:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46862:212;47001:4;47030:36;47054:11;47030:23;:36::i;:::-;47023:43;;46862:212;;;:::o;26172:100::-;26226:13;26259:5;26252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26172:100;:::o;27732:221::-;27808:7;27836:16;27844:7;27836;:16::i;:::-;27828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27921:15;:24;27937:7;27921:24;;;;;;;;;;;;;;;;;;;;;27914:31;;27732:221;;;:::o;27255:411::-;27336:13;27352:23;27367:7;27352:14;:23::i;:::-;27336:39;;27400:5;27394:11;;:2;:11;;;;27386:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27494:5;27478:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27503:37;27520:5;27527:12;:10;:12::i;:::-;27503:16;:37::i;:::-;27478:62;27456:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27637:21;27646:2;27650:7;27637:8;:21::i;:::-;27325:341;27255:411;;:::o;39993:113::-;40054:7;40081:10;:17;;;;40074:24;;39993:113;:::o;28482:339::-;28677:41;28696:12;:10;:12::i;:::-;28710:7;28677:18;:41::i;:::-;28669:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:28;28795:4;28801:2;28805:7;28785:9;:28::i;:::-;28482:339;;;:::o;39661:256::-;39758:7;39794:23;39811:5;39794:16;:23::i;:::-;39786:5;:31;39778:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39883:12;:19;39896:5;39883:19;;;;;;;;;;;;;;;:26;39903:5;39883:26;;;;;;;;;;;;39876:33;;39661:256;;;;:::o;28892:185::-;29030:39;29047:4;29053:2;29057:7;29030:39;;;;;;;;;;;;:16;:39::i;:::-;28892:185;;;:::o;40183:233::-;40258:7;40294:30;:28;:30::i;:::-;40286:5;:38;40278:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40391:10;40402:5;40391:17;;;;;;;;:::i;:::-;;;;;;;;;;40384:24;;40183:233;;;:::o;25866:239::-;25938:7;25958:13;25974:7;:16;25982:7;25974:16;;;;;;;;;;;;;;;;;;;;;25958:32;;26026:1;26009:19;;:5;:19;;;;26001:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26092:5;26085:12;;;25866:239;;;:::o;25596:208::-;25668:7;25713:1;25696:19;;:5;:19;;;;25688:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25780:9;:16;25790:5;25780:16;;;;;;;;;;;;;;;;25773:23;;25596:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26341:104::-;26397:13;26430:7;26423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26341:104;:::o;28025:155::-;28120:52;28139:12;:10;:12::i;:::-;28153:8;28163;28120:18;:52::i;:::-;28025:155;;:::o;29148:328::-;29323:41;29342:12;:10;:12::i;:::-;29356:7;29323:18;:41::i;:::-;29315:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29429:39;29443:4;29449:2;29453:7;29462:5;29429:13;:39::i;:::-;29148:328;;;;:::o;46396:458::-;46497:13;46550:16;46558:7;46550;:16::i;:::-;46528:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;46652:21;46676:10;:8;:10::i;:::-;46652:34;;46741:1;46723:7;46717:21;:25;:129;;;;;;;;;;;;;;;;;46786:7;46795:18;:7;:16;:18::i;:::-;46769:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46717:129;46697:149;;;46396:458;;;:::o;45960:195::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46109:4:::1;46098:7;:15;;46090:24;;;::::0;::::1;;46125:22;46135:2;46139:7;46125:9;:22::i;:::-;45960:195:::0;;;:::o;28251:164::-;28348:4;28372:18;:25;28391:5;28372:25;;;;;;;;;;;;;;;:35;28398:8;28372:35;;;;;;;;;;;;;;;;;;;;;;;;;28365:42;;28251:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;39353:224::-;39455:4;39494:35;39479:50;;;:11;:50;;;;:90;;;;39533:36;39557:11;39533:23;:36::i;:::-;39479:90;39472:97;;39353:224;;;:::o;30986:127::-;31051:4;31103:1;31075:30;;:7;:16;31083:7;31075:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31068:37;;30986:127;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35132:174::-;35234:2;35207:15;:24;35223:7;35207:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35290:7;35286:2;35252:46;;35261:23;35276:7;35261:14;:23::i;:::-;35252:46;;;;;;;;;;;;35132:174;;:::o;31280:348::-;31373:4;31398:16;31406:7;31398;:16::i;:::-;31390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31474:13;31490:23;31505:7;31490:14;:23::i;:::-;31474:39;;31543:5;31532:16;;:7;:16;;;:52;;;;31552:32;31569:5;31576:7;31552:16;:32::i;:::-;31532:52;:87;;;;31612:7;31588:31;;:20;31600:7;31588:11;:20::i;:::-;:31;;;31532:87;31524:96;;;31280:348;;;;:::o;34389:625::-;34548:4;34521:31;;:23;34536:7;34521:14;:23::i;:::-;:31;;;34513:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34627:1;34613:16;;:2;:16;;;;34605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34683:39;34704:4;34710:2;34714:7;34683:20;:39::i;:::-;34787:29;34804:1;34808:7;34787:8;:29::i;:::-;34848:1;34829:9;:15;34839:4;34829:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34877:1;34860:9;:13;34870:2;34860:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34908:2;34889:7;:16;34897:7;34889:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34947:7;34943:2;34928:27;;34937:4;34928:27;;;;;;;;;;;;34968:38;34988:4;34994:2;34998:7;34968:19;:38::i;:::-;34389:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;35448:315::-;35603:8;35594:17;;:5;:17;;;;35586:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35690:8;35652:18;:25;35671:5;35652:25;;;;;;;;;;;;;;;:35;35678:8;35652:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35736:8;35714:41;;35729:5;35714:41;;;35746:8;35714:41;;;;;;:::i;:::-;;;;;;;;35448:315;;;:::o;30358:::-;30515:28;30525:4;30531:2;30535:7;30515:9;:28::i;:::-;30562:48;30585:4;30591:2;30595:7;30604:5;30562:22;:48::i;:::-;30554:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:315;;;;:::o;45785:167::-;45837:13;45863:81;;;;;;;;;;;;;;;;;;;45785:167;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;31970:110::-;32046:26;32056:2;32060:7;32046:26;;;;;;;;;;;;:9;:26::i;:::-;31970:110;;:::o;25227:305::-;25329:4;25381:25;25366:40;;;:11;:40;;;;:105;;;;25438:33;25423:48;;;:11;:48;;;;25366:105;:158;;;;25488:36;25512:11;25488:23;:36::i;:::-;25366:158;25346:178;;25227:305;;;:::o;46163:225::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46335:45:::1;46362:4;46368:2;46372:7;46335:26;:45::i;:::-;46163:225:::0;;;:::o;38210:125::-;;;;:::o;36328:799::-;36483:4;36504:15;:2;:13;;;:15::i;:::-;36500:620;;;36556:2;36540:36;;;36577:12;:10;:12::i;:::-;36591:4;36597:7;36606:5;36540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36536:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36799:1;36782:6;:13;:18;36778:272;;;36825:60;;;;;;;;;;:::i;:::-;;;;;;;;36778:272;37000:6;36994:13;36985:6;36981:2;36977:15;36970:38;36536:529;36673:41;;;36663:51;;;:6;:51;;;;36656:58;;;;;36500:620;37104:4;37097:11;;36328:799;;;;;;;:::o;32307:321::-;32437:18;32443:2;32447:7;32437:5;:18::i;:::-;32488:54;32519:1;32523:2;32527:7;32536:5;32488:22;:54::i;:::-;32466:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:321;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;41029:589::-;41173:45;41200:4;41206:2;41210:7;41173:26;:45::i;:::-;41251:1;41235:18;;:4;:18;;;41231:187;;;41270:40;41302:7;41270:31;:40::i;:::-;41231:187;;;41340:2;41332:10;;:4;:10;;;41328:90;;41359:47;41392:4;41398:7;41359:32;:47::i;:::-;41328:90;41231:187;41446:1;41432:16;;:2;:16;;;41428:183;;;41465:45;41502:7;41465:36;:45::i;:::-;41428:183;;;41538:4;41532:10;;:2;:10;;;41528:83;;41559:40;41587:2;41591:7;41559:27;:40::i;:::-;41528:83;41428:183;41029:589;;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;32964:439::-;33058:1;33044:16;;:2;:16;;;;33036:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:16;33125:7;33117;:16::i;:::-;33116:17;33108:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33179:45;33208:1;33212:2;33216:7;33179:20;:45::i;:::-;33254:1;33237:9;:13;33247:2;33237:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33285:2;33266:7;:16;33274:7;33266:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33330:7;33326:2;33305:33;;33322:1;33305:33;;;;;;;;;;;;33351:44;33379:1;33383:2;33387:7;33351:19;:44::i;:::-;32964:439;;:::o;37699:126::-;;;;:::o;42341:164::-;42445:10;:17;;;;42418:15;:24;42434:7;42418:24;;;;;;;;;;;:44;;;;42473:10;42489:7;42473:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42341:164;:::o;43132:988::-;43398:22;43448:1;43423:22;43440:4;43423:16;:22::i;:::-;:26;;;;:::i;:::-;43398:51;;43460:18;43481:17;:26;43499:7;43481:26;;;;;;;;;;;;43460:47;;43628:14;43614:10;:28;43610:328;;43659:19;43681:12;:18;43694:4;43681:18;;;;;;;;;;;;;;;:34;43700:14;43681:34;;;;;;;;;;;;43659:56;;43765:11;43732:12;:18;43745:4;43732:18;;;;;;;;;;;;;;;:30;43751:10;43732:30;;;;;;;;;;;:44;;;;43882:10;43849:17;:30;43867:11;43849:30;;;;;;;;;;;:43;;;;43644:294;43610:328;44034:17;:26;44052:7;44034:26;;;;;;;;;;;44027:33;;;44078:12;:18;44091:4;44078:18;;;;;;;;;;;;;;;:34;44097:14;44078:34;;;;;;;;;;;44071:41;;;43213:907;;43132:988;;:::o;44415:1079::-;44668:22;44713:1;44693:10;:17;;;;:21;;;;:::i;:::-;44668:46;;44725:18;44746:15;:24;44762:7;44746:24;;;;;;;;;;;;44725:45;;45097:19;45119:10;45130:14;45119:26;;;;;;;;:::i;:::-;;;;;;;;;;45097:48;;45183:11;45158:10;45169;45158:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45294:10;45263:15;:28;45279:11;45263:28;;;;;;;;;;;:41;;;;45435:15;:24;45451:7;45435:24;;;;;;;;;;;45428:31;;;45470:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44486:1008;;;44415:1079;:::o;41919:221::-;42004:14;42021:20;42038:2;42021:16;:20::i;:::-;42004:37;;42079:7;42052:12;:16;42065:2;42052:16;;;;;;;;;;;;;;;:24;42069:6;42052:24;;;;;;;;;;;:34;;;;42126:6;42097:17;:26;42115:7;42097:26;;;;;;;;;;;:35;;;;41993:147;41919:221;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:799::-;5707:6;5715;5723;5772:2;5760:9;5751:7;5747:23;5743:32;5740:119;;;5778:79;;:::i;:::-;5740:119;5898:1;5923:53;5968:7;5959:6;5948:9;5944:22;5923:53;:::i;:::-;5913:63;;5869:117;6025:2;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5996:118;6181:2;6170:9;6166:18;6153:32;6212:18;6204:6;6201:30;6198:117;;;6234:79;;:::i;:::-;6198:117;6339:63;6394:7;6385:6;6374:9;6370:22;6339:63;:::i;:::-;6329:73;;6124:288;5620:799;;;;;:::o;6425:327::-;6483:6;6532:2;6520:9;6511:7;6507:23;6503:32;6500:119;;;6538:79;;:::i;:::-;6500:119;6658:1;6683:52;6727:7;6718:6;6707:9;6703:22;6683:52;:::i;:::-;6673:62;;6629:116;6425:327;;;;:::o;6758:349::-;6827:6;6876:2;6864:9;6855:7;6851:23;6847:32;6844:119;;;6882:79;;:::i;:::-;6844:119;7002:1;7027:63;7082:7;7073:6;7062:9;7058:22;7027:63;:::i;:::-;7017:73;;6973:127;6758:349;;;;:::o;7113:329::-;7172:6;7221:2;7209:9;7200:7;7196:23;7192:32;7189:119;;;7227:79;;:::i;:::-;7189:119;7347:1;7372:53;7417:7;7408:6;7397:9;7393:22;7372:53;:::i;:::-;7362:63;;7318:117;7113:329;;;;:::o;7448:118::-;7535:24;7553:5;7535:24;:::i;:::-;7530:3;7523:37;7448:118;;:::o;7572:109::-;7653:21;7668:5;7653:21;:::i;:::-;7648:3;7641:34;7572:109;;:::o;7687:360::-;7773:3;7801:38;7833:5;7801:38;:::i;:::-;7855:70;7918:6;7913:3;7855:70;:::i;:::-;7848:77;;7934:52;7979:6;7974:3;7967:4;7960:5;7956:16;7934:52;:::i;:::-;8011:29;8033:6;8011:29;:::i;:::-;8006:3;8002:39;7995:46;;7777:270;7687:360;;;;:::o;8053:364::-;8141:3;8169:39;8202:5;8169:39;:::i;:::-;8224:71;8288:6;8283:3;8224:71;:::i;:::-;8217:78;;8304:52;8349:6;8344:3;8337:4;8330:5;8326:16;8304:52;:::i;:::-;8381:29;8403:6;8381:29;:::i;:::-;8376:3;8372:39;8365:46;;8145:272;8053:364;;;;:::o;8423:377::-;8529:3;8557:39;8590:5;8557:39;:::i;:::-;8612:89;8694:6;8689:3;8612:89;:::i;:::-;8605:96;;8710:52;8755:6;8750:3;8743:4;8736:5;8732:16;8710:52;:::i;:::-;8787:6;8782:3;8778:16;8771:23;;8533:267;8423:377;;;;:::o;8806:366::-;8948:3;8969:67;9033:2;9028:3;8969:67;:::i;:::-;8962:74;;9045:93;9134:3;9045:93;:::i;:::-;9163:2;9158:3;9154:12;9147:19;;8806:366;;;:::o;9178:::-;9320:3;9341:67;9405:2;9400:3;9341:67;:::i;:::-;9334:74;;9417:93;9506:3;9417:93;:::i;:::-;9535:2;9530:3;9526:12;9519:19;;9178:366;;;:::o;9550:::-;9692:3;9713:67;9777:2;9772:3;9713:67;:::i;:::-;9706:74;;9789:93;9878:3;9789:93;:::i;:::-;9907:2;9902:3;9898:12;9891:19;;9550:366;;;:::o;9922:::-;10064:3;10085:67;10149:2;10144:3;10085:67;:::i;:::-;10078:74;;10161:93;10250:3;10161:93;:::i;:::-;10279:2;10274:3;10270:12;10263:19;;9922:366;;;:::o;10294:::-;10436:3;10457:67;10521:2;10516:3;10457:67;:::i;:::-;10450:74;;10533:93;10622:3;10533:93;:::i;:::-;10651:2;10646:3;10642:12;10635:19;;10294:366;;;:::o;10666:::-;10808:3;10829:67;10893:2;10888:3;10829:67;:::i;:::-;10822:74;;10905:93;10994:3;10905:93;:::i;:::-;11023:2;11018:3;11014:12;11007:19;;10666:366;;;:::o;11038:::-;11180:3;11201:67;11265:2;11260:3;11201:67;:::i;:::-;11194:74;;11277:93;11366:3;11277:93;:::i;:::-;11395:2;11390:3;11386:12;11379:19;;11038:366;;;:::o;11410:::-;11552:3;11573:67;11637:2;11632:3;11573:67;:::i;:::-;11566:74;;11649:93;11738:3;11649:93;:::i;:::-;11767:2;11762:3;11758:12;11751:19;;11410:366;;;:::o;11782:::-;11924:3;11945:67;12009:2;12004:3;11945:67;:::i;:::-;11938:74;;12021:93;12110:3;12021:93;:::i;:::-;12139:2;12134:3;12130:12;12123:19;;11782:366;;;:::o;12154:::-;12296:3;12317:67;12381:2;12376:3;12317:67;:::i;:::-;12310:74;;12393:93;12482:3;12393:93;:::i;:::-;12511:2;12506:3;12502:12;12495:19;;12154:366;;;:::o;12526:::-;12668:3;12689:67;12753:2;12748:3;12689:67;:::i;:::-;12682:74;;12765:93;12854:3;12765:93;:::i;:::-;12883:2;12878:3;12874:12;12867:19;;12526:366;;;:::o;12898:::-;13040:3;13061:67;13125:2;13120:3;13061:67;:::i;:::-;13054:74;;13137:93;13226:3;13137:93;:::i;:::-;13255:2;13250:3;13246:12;13239:19;;12898:366;;;:::o;13270:::-;13412:3;13433:67;13497:2;13492:3;13433:67;:::i;:::-;13426:74;;13509:93;13598:3;13509:93;:::i;:::-;13627:2;13622:3;13618:12;13611:19;;13270:366;;;:::o;13642:400::-;13802:3;13823:84;13905:1;13900:3;13823:84;:::i;:::-;13816:91;;13916:93;14005:3;13916:93;:::i;:::-;14034:1;14029:3;14025:11;14018:18;;13642:400;;;:::o;14048:366::-;14190:3;14211:67;14275:2;14270:3;14211:67;:::i;:::-;14204:74;;14287:93;14376:3;14287:93;:::i;:::-;14405:2;14400:3;14396:12;14389:19;;14048:366;;;:::o;14420:::-;14562:3;14583:67;14647:2;14642:3;14583:67;:::i;:::-;14576:74;;14659:93;14748:3;14659:93;:::i;:::-;14777:2;14772:3;14768:12;14761:19;;14420:366;;;:::o;14792:::-;14934:3;14955:67;15019:2;15014:3;14955:67;:::i;:::-;14948:74;;15031:93;15120:3;15031:93;:::i;:::-;15149:2;15144:3;15140:12;15133:19;;14792:366;;;:::o;15164:::-;15306:3;15327:67;15391:2;15386:3;15327:67;:::i;:::-;15320:74;;15403:93;15492:3;15403:93;:::i;:::-;15521:2;15516:3;15512:12;15505:19;;15164:366;;;:::o;15536:::-;15678:3;15699:67;15763:2;15758:3;15699:67;:::i;:::-;15692:74;;15775:93;15864:3;15775:93;:::i;:::-;15893:2;15888:3;15884:12;15877:19;;15536:366;;;:::o;15908:118::-;15995:24;16013:5;15995:24;:::i;:::-;15990:3;15983:37;15908:118;;:::o;16032:701::-;16313:3;16335:95;16426:3;16417:6;16335:95;:::i;:::-;16328:102;;16447:95;16538:3;16529:6;16447:95;:::i;:::-;16440:102;;16559:148;16703:3;16559:148;:::i;:::-;16552:155;;16724:3;16717:10;;16032:701;;;;;:::o;16739:222::-;16832:4;16870:2;16859:9;16855:18;16847:26;;16883:71;16951:1;16940:9;16936:17;16927:6;16883:71;:::i;:::-;16739:222;;;;:::o;16967:640::-;17162:4;17200:3;17189:9;17185:19;17177:27;;17214:71;17282:1;17271:9;17267:17;17258:6;17214:71;:::i;:::-;17295:72;17363:2;17352:9;17348:18;17339:6;17295:72;:::i;:::-;17377;17445:2;17434:9;17430:18;17421:6;17377:72;:::i;:::-;17496:9;17490:4;17486:20;17481:2;17470:9;17466:18;17459:48;17524:76;17595:4;17586:6;17524:76;:::i;:::-;17516:84;;16967:640;;;;;;;:::o;17613:210::-;17700:4;17738:2;17727:9;17723:18;17715:26;;17751:65;17813:1;17802:9;17798:17;17789:6;17751:65;:::i;:::-;17613:210;;;;:::o;17829:313::-;17942:4;17980:2;17969:9;17965:18;17957:26;;18029:9;18023:4;18019:20;18015:1;18004:9;18000:17;17993:47;18057:78;18130:4;18121:6;18057:78;:::i;:::-;18049:86;;17829:313;;;;:::o;18148:419::-;18314:4;18352:2;18341:9;18337:18;18329:26;;18401:9;18395:4;18391:20;18387:1;18376:9;18372:17;18365:47;18429:131;18555:4;18429:131;:::i;:::-;18421:139;;18148:419;;;:::o;18573:::-;18739:4;18777:2;18766:9;18762:18;18754:26;;18826:9;18820:4;18816:20;18812:1;18801:9;18797:17;18790:47;18854:131;18980:4;18854:131;:::i;:::-;18846:139;;18573:419;;;:::o;18998:::-;19164:4;19202:2;19191:9;19187:18;19179:26;;19251:9;19245:4;19241:20;19237:1;19226:9;19222:17;19215:47;19279:131;19405:4;19279:131;:::i;:::-;19271:139;;18998:419;;;:::o;19423:::-;19589:4;19627:2;19616:9;19612:18;19604:26;;19676:9;19670:4;19666:20;19662:1;19651:9;19647:17;19640:47;19704:131;19830:4;19704:131;:::i;:::-;19696:139;;19423:419;;;:::o;19848:::-;20014:4;20052:2;20041:9;20037:18;20029:26;;20101:9;20095:4;20091:20;20087:1;20076:9;20072:17;20065:47;20129:131;20255:4;20129:131;:::i;:::-;20121:139;;19848:419;;;:::o;20273:::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:::-;20864:4;20902:2;20891:9;20887:18;20879:26;;20951:9;20945:4;20941:20;20937:1;20926:9;20922:17;20915:47;20979:131;21105:4;20979:131;:::i;:::-;20971:139;;20698:419;;;:::o;21123:::-;21289:4;21327:2;21316:9;21312:18;21304:26;;21376:9;21370:4;21366:20;21362:1;21351:9;21347:17;21340:47;21404:131;21530:4;21404:131;:::i;:::-;21396:139;;21123:419;;;:::o;21548:::-;21714:4;21752:2;21741:9;21737:18;21729:26;;21801:9;21795:4;21791:20;21787:1;21776:9;21772:17;21765:47;21829:131;21955:4;21829:131;:::i;:::-;21821:139;;21548:419;;;:::o;21973:::-;22139:4;22177:2;22166:9;22162:18;22154:26;;22226:9;22220:4;22216:20;22212:1;22201:9;22197:17;22190:47;22254:131;22380:4;22254:131;:::i;:::-;22246:139;;21973:419;;;:::o;22398:::-;22564:4;22602:2;22591:9;22587:18;22579:26;;22651:9;22645:4;22641:20;22637:1;22626:9;22622:17;22615:47;22679:131;22805:4;22679:131;:::i;:::-;22671:139;;22398:419;;;:::o;22823:::-;22989:4;23027:2;23016:9;23012:18;23004:26;;23076:9;23070:4;23066:20;23062:1;23051:9;23047:17;23040:47;23104:131;23230:4;23104:131;:::i;:::-;23096:139;;22823:419;;;:::o;23248:::-;23414:4;23452:2;23441:9;23437:18;23429:26;;23501:9;23495:4;23491:20;23487:1;23476:9;23472:17;23465:47;23529:131;23655:4;23529:131;:::i;:::-;23521:139;;23248:419;;;:::o;23673:::-;23839:4;23877:2;23866:9;23862:18;23854:26;;23926:9;23920:4;23916:20;23912:1;23901:9;23897:17;23890:47;23954:131;24080:4;23954:131;:::i;:::-;23946:139;;23673:419;;;:::o;24098:::-;24264:4;24302:2;24291:9;24287:18;24279:26;;24351:9;24345:4;24341:20;24337:1;24326:9;24322:17;24315:47;24379:131;24505:4;24379:131;:::i;:::-;24371:139;;24098:419;;;:::o;24523:::-;24689:4;24727:2;24716:9;24712:18;24704:26;;24776:9;24770:4;24766:20;24762:1;24751:9;24747:17;24740:47;24804:131;24930:4;24804:131;:::i;:::-;24796:139;;24523:419;;;:::o;24948:::-;25114:4;25152:2;25141:9;25137:18;25129:26;;25201:9;25195:4;25191:20;25187:1;25176:9;25172:17;25165:47;25229:131;25355:4;25229:131;:::i;:::-;25221:139;;24948:419;;;:::o;25373:::-;25539:4;25577:2;25566:9;25562:18;25554:26;;25626:9;25620:4;25616:20;25612:1;25601:9;25597:17;25590:47;25654:131;25780:4;25654:131;:::i;:::-;25646:139;;25373:419;;;:::o;25798:222::-;25891:4;25929:2;25918:9;25914:18;25906:26;;25942:71;26010:1;25999:9;25995:17;25986:6;25942:71;:::i;:::-;25798:222;;;;:::o;26026:129::-;26060:6;26087:20;;:::i;:::-;26077:30;;26116:33;26144:4;26136:6;26116:33;:::i;:::-;26026:129;;;:::o;26161:75::-;26194:6;26227:2;26221:9;26211:19;;26161:75;:::o;26242:307::-;26303:4;26393:18;26385:6;26382:30;26379:56;;;26415:18;;:::i;:::-;26379:56;26453:29;26475:6;26453:29;:::i;:::-;26445:37;;26537:4;26531;26527:15;26519:23;;26242:307;;;:::o;26555:308::-;26617:4;26707:18;26699:6;26696:30;26693:56;;;26729:18;;:::i;:::-;26693:56;26767:29;26789:6;26767:29;:::i;:::-;26759:37;;26851:4;26845;26841:15;26833:23;;26555:308;;;:::o;26869:98::-;26920:6;26954:5;26948:12;26938:22;;26869:98;;;:::o;26973:99::-;27025:6;27059:5;27053:12;27043:22;;26973:99;;;:::o;27078:168::-;27161:11;27195:6;27190:3;27183:19;27235:4;27230:3;27226:14;27211:29;;27078:168;;;;:::o;27252:169::-;27336:11;27370:6;27365:3;27358:19;27410:4;27405:3;27401:14;27386:29;;27252:169;;;;:::o;27427:148::-;27529:11;27566:3;27551:18;;27427:148;;;;:::o;27581:305::-;27621:3;27640:20;27658:1;27640:20;:::i;:::-;27635:25;;27674:20;27692:1;27674:20;:::i;:::-;27669:25;;27828:1;27760:66;27756:74;27753:1;27750:81;27747:107;;;27834:18;;:::i;:::-;27747:107;27878:1;27875;27871:9;27864:16;;27581:305;;;;:::o;27892:185::-;27932:1;27949:20;27967:1;27949:20;:::i;:::-;27944:25;;27983:20;28001:1;27983:20;:::i;:::-;27978:25;;28022:1;28012:35;;28027:18;;:::i;:::-;28012:35;28069:1;28066;28062:9;28057:14;;27892:185;;;;:::o;28083:191::-;28123:4;28143:20;28161:1;28143:20;:::i;:::-;28138:25;;28177:20;28195:1;28177:20;:::i;:::-;28172:25;;28216:1;28213;28210:8;28207:34;;;28221:18;;:::i;:::-;28207:34;28266:1;28263;28259:9;28251:17;;28083:191;;;;:::o;28280:96::-;28317:7;28346:24;28364:5;28346:24;:::i;:::-;28335:35;;28280:96;;;:::o;28382:90::-;28416:7;28459:5;28452:13;28445:21;28434:32;;28382:90;;;:::o;28478:149::-;28514:7;28554:66;28547:5;28543:78;28532:89;;28478:149;;;:::o;28633:126::-;28670:7;28710:42;28703:5;28699:54;28688:65;;28633:126;;;:::o;28765:77::-;28802:7;28831:5;28820:16;;28765:77;;;:::o;28848:154::-;28932:6;28927:3;28922;28909:30;28994:1;28985:6;28980:3;28976:16;28969:27;28848:154;;;:::o;29008:307::-;29076:1;29086:113;29100:6;29097:1;29094:13;29086:113;;;29185:1;29180:3;29176:11;29170:18;29166:1;29161:3;29157:11;29150:39;29122:2;29119:1;29115:10;29110:15;;29086:113;;;29217:6;29214:1;29211:13;29208:101;;;29297:1;29288:6;29283:3;29279:16;29272:27;29208:101;29057:258;29008:307;;;:::o;29321:320::-;29365:6;29402:1;29396:4;29392:12;29382:22;;29449:1;29443:4;29439:12;29470:18;29460:81;;29526:4;29518:6;29514:17;29504:27;;29460:81;29588:2;29580:6;29577:14;29557:18;29554:38;29551:84;;;29607:18;;:::i;:::-;29551:84;29372:269;29321:320;;;:::o;29647:281::-;29730:27;29752:4;29730:27;:::i;:::-;29722:6;29718:40;29860:6;29848:10;29845:22;29824:18;29812:10;29809:34;29806:62;29803:88;;;29871:18;;:::i;:::-;29803:88;29911:10;29907:2;29900:22;29690:238;29647:281;;:::o;29934:233::-;29973:3;29996:24;30014:5;29996:24;:::i;:::-;29987:33;;30042:66;30035:5;30032:77;30029:103;;;30112:18;;:::i;:::-;30029:103;30159:1;30152:5;30148:13;30141:20;;29934:233;;;:::o;30173:176::-;30205:1;30222:20;30240:1;30222:20;:::i;:::-;30217:25;;30256:20;30274:1;30256:20;:::i;:::-;30251:25;;30295:1;30285:35;;30300:18;;:::i;:::-;30285:35;30341:1;30338;30334:9;30329:14;;30173:176;;;;:::o;30355:180::-;30403:77;30400:1;30393:88;30500:4;30497:1;30490:15;30524:4;30521:1;30514:15;30541:180;30589:77;30586:1;30579:88;30686:4;30683:1;30676:15;30710:4;30707:1;30700:15;30727:180;30775:77;30772:1;30765:88;30872:4;30869:1;30862:15;30896:4;30893:1;30886:15;30913:180;30961:77;30958:1;30951:88;31058:4;31055:1;31048:15;31082:4;31079:1;31072:15;31099:180;31147:77;31144:1;31137:88;31244:4;31241:1;31234:15;31268:4;31265:1;31258:15;31285:180;31333:77;31330:1;31323:88;31430:4;31427:1;31420:15;31454:4;31451:1;31444:15;31471:117;31580:1;31577;31570:12;31594:117;31703:1;31700;31693:12;31717:117;31826:1;31823;31816:12;31840:117;31949:1;31946;31939:12;31963:102;32004:6;32055:2;32051:7;32046:2;32039:5;32035:14;32031:28;32021:38;;31963:102;;;:::o;32071:230::-;32211:34;32207:1;32199:6;32195:14;32188:58;32280:13;32275:2;32267:6;32263:15;32256:38;32071:230;:::o;32307:237::-;32447:34;32443:1;32435:6;32431:14;32424:58;32516:20;32511:2;32503:6;32499:15;32492:45;32307:237;:::o;32550:225::-;32690:34;32686:1;32678:6;32674:14;32667:58;32759:8;32754:2;32746:6;32742:15;32735:33;32550:225;:::o;32781:224::-;32921:34;32917:1;32909:6;32905:14;32898:58;32990:7;32985:2;32977:6;32973:15;32966:32;32781:224;:::o;33011:178::-;33151:30;33147:1;33139:6;33135:14;33128:54;33011:178;:::o;33195:223::-;33335:34;33331:1;33323:6;33319:14;33312:58;33404:6;33399:2;33391:6;33387:15;33380:31;33195:223;:::o;33424:175::-;33564:27;33560:1;33552:6;33548:14;33541:51;33424:175;:::o;33605:231::-;33745:34;33741:1;33733:6;33729:14;33722:58;33814:14;33809:2;33801:6;33797:15;33790:39;33605:231;:::o;33842:243::-;33982:34;33978:1;33970:6;33966:14;33959:58;34051:26;34046:2;34038:6;34034:15;34027:51;33842:243;:::o;34091:229::-;34231:34;34227:1;34219:6;34215:14;34208:58;34300:12;34295:2;34287:6;34283:15;34276:37;34091:229;:::o;34326:228::-;34466:34;34462:1;34454:6;34450:14;34443:58;34535:11;34530:2;34522:6;34518:15;34511:36;34326:228;:::o;34560:182::-;34700:34;34696:1;34688:6;34684:14;34677:58;34560:182;:::o;34748:231::-;34888:34;34884:1;34876:6;34872:14;34865:58;34957:14;34952:2;34944:6;34940:15;34933:39;34748:231;:::o;34985:155::-;35125:7;35121:1;35113:6;35109:14;35102:31;34985:155;:::o;35146:182::-;35286:34;35282:1;35274:6;35270:14;35263:58;35146:182;:::o;35334:234::-;35474:34;35470:1;35462:6;35458:14;35451:58;35543:17;35538:2;35530:6;35526:15;35519:42;35334:234;:::o;35574:220::-;35714:34;35710:1;35702:6;35698:14;35691:58;35783:3;35778:2;35770:6;35766:15;35759:28;35574:220;:::o;35800:236::-;35940:34;35936:1;35928:6;35924:14;35917:58;36009:19;36004:2;35996:6;35992:15;35985:44;35800:236;:::o;36042:231::-;36182:34;36178:1;36170:6;36166:14;36159:58;36251:14;36246:2;36238:6;36234:15;36227:39;36042:231;:::o;36279:122::-;36352:24;36370:5;36352:24;:::i;:::-;36345:5;36342:35;36332:63;;36391:1;36388;36381:12;36332:63;36279:122;:::o;36407:116::-;36477:21;36492:5;36477:21;:::i;:::-;36470:5;36467:32;36457:60;;36513:1;36510;36503:12;36457:60;36407:116;:::o;36529:120::-;36601:23;36618:5;36601:23;:::i;:::-;36594:5;36591:34;36581:62;;36639:1;36636;36629:12;36581:62;36529:120;:::o;36655:122::-;36728:24;36746:5;36728:24;:::i;:::-;36721:5;36718:35;36708:63;;36767:1;36764;36757:12;36708:63;36655:122;:::o

Swarm Source

ipfs://975a9e6a975a922aeb9aac3f0d71daccd7575f515ec66a7195959e3da5e0c1b0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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