ETH Price: $3,168.01 (+1.26%)
Gas: 2 Gwei

Token

nftown shares (NFTOWNSHARES)
 

Overview

Max Total Supply

519 NFTOWNSHARES

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFTOWNSHARES
0x66c3959b636Bea1a86e3133De6C23df342C5c4C3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The next phase of NFTs. Shares in a web3 project where contributors are rewarded. Your nftown NFT share represents a stake in an innovative web3 reimagined company. It grants access to project governance and future product development. Participants who actively contribute wil...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFTownShares

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-15
*/

// SPDX-License-Identifier: MIT
// 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);
}

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



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

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



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




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




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





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


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



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


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





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


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



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




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





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


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


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





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





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


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


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





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


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)





/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)



/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


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





/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


contract NFTownShares is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard, IERC2981 {

    string private _currentBaseURI;

    // supply and token counter
    uint256 public maxSupply = 10_000;
    uint256 public currentSupply = 0;

    // mint allowed
    bool public mintAllowed = false;

    /*
    Mint price.
    It is deliberately set very high, so that we don't accidentally publish
    the contract with low price and someone mints it for free.
    */
    uint256 public mintPrice = 123 ether;


    /*
    ERC-2981 royalties settings.
    The ERC-2981 standard specifies that the contract itself declares royalty amount,
    separately for each token sale. A marketplace should call the smart contract
    upon each token sale to determine the royalties amount.
    This standard is not yet supported by OpenSea, but might in the future.
    */

    // percentage in hundreds. For royalties 2.5% set this value to 250.
    //The value cannot be greater than 10000 (which is 100%)
    uint128 public royaltiesAmount;
    address public royaltiesRecipient; // account to which the royalties should be paid

    /*
    ECDSA mint permit verification.
    Permit is a data structure specifying what exactly the user can mint.
    Permits are digitally signed by backend (a Key Management System).
    Signing address acts as a public key to verify the permit digital signature.
    */
    address public signingAddress;

    /*
    Each permit issued by backend can only be used once.
    This is to prevent replay attack - when the user would use the same permit multiple times
    and therefore mint more than they are allowed to.
    When the permit is used, it's ID is written forever in this map.
    */
    mapping(bytes16 => bool) usedPermits;

    struct Signature {
        bytes32 r;
        bytes32 s;
        uint8 v;
    }

    struct Permit {
        bytes16 permitId;
        uint validTill;
        address contractAddress;
        address buyerAddress;
        uint32 quantity;
        Signature signature;
    }

    constructor() ERC721("nftown shares", "NFTOWNSHARES") {
        setBaseURI("https://metadata.nftown.com/shares/");

        // set contract owner as default royalties recipient
        royaltiesRecipient = msg.sender;
        // default royalties percentage - 10%
        royaltiesAmount = 1000;
    }

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

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

    // set mint status
    function setMintStatus(bool _allowed) external onlyOwner {
        mintAllowed = _allowed;
    }

    // set mint price
    function setMintPrice(uint256 _newPrice) external onlyOwner {
        mintPrice = _newPrice;
    }

    // set ECDSA signing address (public key)
    function setSigningAddress(address newAddress) external onlyOwner {
        signingAddress = newAddress;
    }

    function drop(address to) external onlyOwner {
        currentSupply++;
        require(currentSupply <= maxSupply, "Max supply exceeded");
        _safeMint(to, currentSupply);
    }

    function dropMultiple(address [] calldata to) external onlyOwner {
        require(currentSupply + to.length <= maxSupply, "Max supply exceeded");
        for (uint i = 0; i < to.length; i++) {
            currentSupply++;
            _safeMint(to[i], currentSupply);
        }
    }

    // public mint
    function publicMint(Permit memory permit) external payable {

        /* Check that permit was issued for this particular contract instance.
        This is to prevent using a permit issued for another contract and
        signed with the same key
         */
        require(permit.contractAddress == address(this), "Invalid contract address");


        // check minting is allowed
        require(mintAllowed, "Mint is not allowed");
        // check the price
        require(msg.value == (mintPrice * permit.quantity), "Incorrect price sent");
        // cannot mint zero
        require(permit.quantity > 0, "Quantity must be larger than 0");


        // make sure there is enough supply left
        require((permit.quantity + currentSupply) <= maxSupply, "Not enough supply left");


        /* Verify minter address
        This is to ensure that the user cannot use someone's else permit.
        */
        require(permit.buyerAddress == msg.sender, "Address not allowed");


        /* Verify permit is not expired.
        The backend issues a permit with certain time validity.
        If the user requests permit issuance again during this period, the same permit
        is returned. Then, after it expires, a new permit is issued.

        This is to prevent and attack, when the user would collect multiple
        permits from the backend, and use them later all at once. At the moment,
        when the second permit is issued, the first one becomes invalid, so
        it cannot longer be used.
        */
        require(permit.validTill >= block.timestamp, "Permit is expired");

        // verify digital signature
        bytes32 dataHash = keccak256(
            abi.encode(
                permit.permitId,
                permit.validTill,
                permit.contractAddress,
                permit.buyerAddress,
                permit.quantity));

        require(ECDSA.recover(dataHash, permit.signature.v, permit.signature.r, permit.signature.s) == signingAddress,
            "Incorrect digital signature");

        // verify that permit hasn't been used yet
        require(!usedPermits[permit.permitId], "The permit has been already used");
        // record that the permit was just used
        usedPermits[permit.permitId] = true;

        // actual mint
        for (uint256 i = 0; i < permit.quantity; i++) {
            currentSupply++;
            _safeMint(msg.sender, currentSupply);
        }
    }


    // withdraw ETH balance
    /*
    This sends current ETH balance of this contract to the owner's account.
    It sends everything.
    */
    function withdraw() external onlyOwner {
        address thisContract = address(this);
        address payable owner = payable(msg.sender);
        // this is correct way to transfer ETH
        // the second returned parameter "memory data" is ignored.
        (bool success,) = owner.call{value : thisContract.balance}("");
        require(success, "Transfer failed.");
    }

    // sets royalties recipient and percentage.
    // amount is percentage x100.
    // For example, for royalties 2.5% set the amount to '250'
    function setRoyaltyInfo(address _recipient, uint128 _amount) external onlyOwner {
        require(_amount <= 10000, 'ERC2981Royalties: Too high');
        royaltiesRecipient = _recipient;
        royaltiesAmount = _amount;
    }

    /* ERC-2981 royalties
    Dynamically calculates the royalty amount for this particular token transfer.
    This method should be called by marketplaces before each sale.
    */
    function royaltyInfo(uint256, uint256 _salePrice) external view virtual override returns (address, uint256) {
        require(_salePrice > 0, "Sale price should be greater than zero");
        // percentage of the sale price
        uint256 royaltyAmount = _salePrice * royaltiesAmount / 10000;
        return (royaltiesRecipient, royaltyAmount);
    }

    /*
    This is an event handler which is invoked before the token is transferred.
    Due to multiple inheritance from ERC721, ERC721Enumerable this method needs to be overriden in this contract.
    */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /*
    Due to multiple inheritance this method needs to be overriden in this contract.
    */
    function supportsInterface(bytes4 interfaceId) public view virtual override (ERC721, ERC721Enumerable, IERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || 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":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"drop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"dropMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes16","name":"permitId","type":"bytes16"},{"internalType":"uint256","name":"validTill","type":"uint256"},{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"address","name":"buyerAddress","type":"address"},{"internalType":"uint32","name":"quantity","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct NFTownShares.Signature","name":"signature","type":"tuple"}],"internalType":"struct NFTownShares.Permit","name":"permit","type":"tuple"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltiesAmount","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltiesRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint128","name":"_amount","type":"uint128"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSigningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600d556000600e556000600f60006101000a81548160ff0219169083151502179055506806aaf7c8516d0c00006010553480156200004457600080fd5b506040518060400160405280600d81526020017f6e66746f776e20736861726573000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4e46544f574e53484152455300000000000000000000000000000000000000008152508160009080519060200190620000c99291906200035c565b508060019080519060200190620000e29291906200035c565b50505062000105620000f9620001b960201b60201c565b620001c160201b60201c565b6001600b819055506200013760405180606001604052806023815260200162005c72602391396200028760201b60201c565b33601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e8601160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550620004f3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000297620001b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bd6200033260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030d906200046d565b60405180910390fd5b80600c90805190602001906200032e9291906200035c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036a90620004be565b90600052602060002090601f0160209004810192826200038e5760008555620003da565b82601f10620003a957805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003d9578251825591602001919060010190620003bc565b5b509050620003e99190620003ed565b5090565b5b8082111562000408576000816000905550600101620003ee565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620004556020836200040c565b915062000462826200041d565b602082019050919050565b60006020820190508181036000830152620004888162000446565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d757607f821691505b602082108103620004ed57620004ec6200048f565b5b50919050565b61576f80620005036000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c467201e116100a0578063f10829101161006f578063f1082910146107b0578063f1a78add146107db578063f2fde38b14610804578063f4a0a5281461082d578063fcd02980146108565761020f565b8063c467201e146106e0578063c87b56dd1461070b578063d5abeb0114610748578063e985e9c5146107735761020f565b806391f2700a116100e757806391f2700a1461060f57806395d89b4114610638578063a22cb46514610663578063b3e82dc91461068c578063b88d4fde146106b75761020f565b8063715018a614610579578063771282f614610590578063842f10d1146105bb5780638da5cb5b146105e45761020f565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461046e57806355f804b3146104ab5780636352211e146104d45780636817c76c1461051157806370a082311461053c5761020f565b80632f745c59146103c857806331beb605146104055780633ccfd60b1461042e57806342842e0e146104455761020f565b806318160ddd116101e257806318160ddd146102e25780631d96a0821461030d5780631f85e3ca1461033857806323b872dd146103615780632a55205a1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613648565b610872565b6040516102489190613690565b60405180910390f35b34801561025d57600080fd5b506102666108ec565b6040516102739190613744565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061379c565b61097e565b6040516102b0919061380a565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613851565b610a03565b005b3480156102ee57600080fd5b506102f7610b1a565b60405161030491906138a0565b60405180910390f35b34801561031957600080fd5b50610322610b27565b60405161032f919061380a565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906138e7565b610b4d565b005b34801561036d57600080fd5b5061038860048036038101906103839190613914565b610be6565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613967565b610c46565b6040516103bf9291906139a7565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613851565b610d09565b6040516103fc91906138a0565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906139d0565b610dae565b005b34801561043a57600080fd5b50610443610e6e565b005b34801561045157600080fd5b5061046c60048036038101906104679190613914565b610fbc565b005b34801561047a57600080fd5b506104956004803603810190610490919061379c565b610fdc565b6040516104a291906138a0565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613b32565b61104d565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061379c565b6110e3565b604051610508919061380a565b60405180910390f35b34801561051d57600080fd5b50610526611194565b60405161053391906138a0565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906139d0565b61119a565b60405161057091906138a0565b60405180910390f35b34801561058557600080fd5b5061058e611251565b005b34801561059c57600080fd5b506105a56112d9565b6040516105b291906138a0565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613bdb565b6112df565b005b3480156105f057600080fd5b506105f9611421565b604051610606919061380a565b60405180910390f35b34801561061b57600080fd5b50610636600480360381019061063191906139d0565b61144b565b005b34801561064457600080fd5b5061064d611535565b60405161065a9190613744565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613c28565b6115c7565b005b34801561069857600080fd5b506106a16115dd565b6040516106ae919061380a565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613d09565b611603565b005b3480156106ec57600080fd5b506106f5611665565b6040516107029190613690565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d919061379c565b611678565b60405161073f9190613744565b60405180910390f35b34801561075457600080fd5b5061075d61171f565b60405161076a91906138a0565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190613d8c565b611725565b6040516107a79190613690565b60405180910390f35b3480156107bc57600080fd5b506107c56117b9565b6040516107d29190613df7565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613e3e565b6117db565b005b34801561081057600080fd5b5061082b600480360381019061082691906139d0565b61192c565b005b34801561083957600080fd5b50610854600480360381019061084f919061379c565b611a23565b005b610870600480360381019061086b919061408b565b611aa9565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e557506108e482611f51565b5b9050919050565b6060600080546108fb906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610927906140e8565b80156109745780601f1061094957610100808354040283529160200191610974565b820191906000526020600020905b81548152906001019060200180831161095757829003601f168201915b5050505050905090565b600061098982611fcb565b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf9061418b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0e826110e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061421d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9d612037565b73ffffffffffffffffffffffffffffffffffffffff161480610acc5750610acb81610ac6612037565b611725565b5b610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906142af565b60405180910390fd5b610b15838361203f565b505050565b6000600880549050905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b55612037565b73ffffffffffffffffffffffffffffffffffffffff16610b73611421565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc09061431b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b610bf7610bf1612037565b826120f8565b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906143ad565b60405180910390fd5b610c418383836121d6565b505050565b60008060008311610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c839061443f565b60405180910390fd5b6000612710601160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1685610ccd919061448e565b610cd79190614517565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000610d148361119a565b8210610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906145ba565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610db6612037565b73ffffffffffffffffffffffffffffffffffffffff16610dd4611421565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061431b565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e76612037565b73ffffffffffffffffffffffffffffffffffffffff16610e94611421565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061431b565b60405180910390fd5b6000309050600033905060008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1631604051610f319061460b565b60006040518083038185875af1925050503d8060008114610f6e576040519150601f19603f3d011682016040523d82523d6000602084013e610f73565b606091505b5050905080610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae9061466c565b60405180910390fd5b505050565b610fd783838360405180602001604052806000815250611603565b505050565b6000610fe6610b1a565b8210611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e906146fe565b60405180910390fd5b6008828154811061103b5761103a61471e565b5b90600052602060002001549050919050565b611055612037565b73ffffffffffffffffffffffffffffffffffffffff16611073611421565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c09061431b565b60405180910390fd5b80600c90805190602001906110df929190613539565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611182906147bf565b60405180910390fd5b80915050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614851565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611259612037565b73ffffffffffffffffffffffffffffffffffffffff16611277611421565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061431b565b60405180910390fd5b6112d7600061243c565b565b600e5481565b6112e7612037565b73ffffffffffffffffffffffffffffffffffffffff16611305611421565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113529061431b565b60405180910390fd5b600d5482829050600e5461136f9190614871565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790614913565b60405180910390fd5b60005b8282905081101561141c57600e60008154809291906113d190614933565b91905055506114098383838181106113ec576113eb61471e565b5b905060200201602081019061140191906139d0565b600e54612502565b808061141490614933565b9150506113b3565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611453612037565b73ffffffffffffffffffffffffffffffffffffffff16611471611421565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be9061431b565b60405180910390fd5b600e60008154809291906114da90614933565b9190505550600d54600e541115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90614913565b60405180910390fd5b61153281600e54612502565b50565b606060018054611544906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611570906140e8565b80156115bd5780601f10611592576101008083540402835291602001916115bd565b820191906000526020600020905b8154815290600101906020018083116115a057829003601f168201915b5050505050905090565b6115d96115d2612037565b8383612520565b5050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61161461160e612037565b836120f8565b611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a906143ad565b60405180910390fd5b61165f8484848461268c565b50505050565b600f60009054906101000a900460ff1681565b606061168382611fcb565b6116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906149ed565b60405180910390fd5b60006116cc6126e8565b905060008151116116ec5760405180602001604052806000815250611717565b806116f68461277a565b604051602001611707929190614a49565b6040516020818303038152906040525b915050919050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a90046fffffffffffffffffffffffffffffffff1681565b6117e3612037565b73ffffffffffffffffffffffffffffffffffffffff16611801611421565b73ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e9061431b565b60405180910390fd5b612710816fffffffffffffffffffffffffffffffff1611156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590614ab9565b60405180910390fd5b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505050565b611934612037565b73ffffffffffffffffffffffffffffffffffffffff16611952611421565b73ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061431b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90614b4b565b60405180910390fd5b611a208161243c565b50565b611a2b612037565b73ffffffffffffffffffffffffffffffffffffffff16611a49611421565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a969061431b565b60405180910390fd5b8060108190555050565b3073ffffffffffffffffffffffffffffffffffffffff16816040015173ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614bb7565b60405180910390fd5b600f60009054906101000a900460ff16611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614c23565b60405180910390fd5b806080015163ffffffff16601054611b82919061448e565b3414611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614c8f565b60405180910390fd5b6000816080015163ffffffff1611611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790614cfb565b60405180910390fd5b600d54600e54826080015163ffffffff16611c2b9190614871565b1115611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390614d67565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16816060015173ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590614dd3565b60405180910390fd5b4281602001511015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614e3f565b60405180910390fd5b600081600001518260200151836040015184606001518560800151604051602001611d54959493929190614e7d565b604051602081830303815290604052805190602001209050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611dc9828460a00151604001518560a00151600001518660a00151602001516128da565b73ffffffffffffffffffffffffffffffffffffffff1614611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614f1c565b60405180910390fd5b6014600083600001516fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614f88565b60405180910390fd5b60016014600084600001516fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b826080015163ffffffff16811015611f4c57600e6000815480929190611f2890614933565b9190505550611f3933600e54612502565b8080611f4490614933565b915050611f03565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fc45750611fc382612905565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120b2836110e3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210382611fcb565b612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061501a565b60405180910390fd5b600061214d836110e3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218f575061218e8185611725565b5b806121cd57508373ffffffffffffffffffffffffffffffffffffffff166121b58461097e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121f6826110e3565b73ffffffffffffffffffffffffffffffffffffffff161461224c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612243906150ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b29061513e565b60405180910390fd5b6122c68383836129e7565b6122d160008261203f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612321919061515e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123789190614871565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124378383836129f7565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61251c8282604051806020016040528060008152506129fc565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612585906151de565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161267f9190613690565b60405180910390a3505050565b6126978484846121d6565b6126a384848484612a57565b6126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990615270565b60405180910390fd5b50505050565b6060600c80546126f7906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612723906140e8565b80156127705780601f1061274557610100808354040283529160200191612770565b820191906000526020600020905b81548152906001019060200180831161275357829003601f168201915b5050505050905090565b6060600082036127c1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128d5565b600082905060005b600082146127f35780806127dc90614933565b915050600a826127ec9190614517565b91506127c9565b60008167ffffffffffffffff81111561280f5761280e613a07565b5b6040519080825280601f01601f1916602001820160405280156128415781602001600182028036833780820191505090505b5090505b600085146128ce5760018261285a919061515e565b9150600a856128699190615290565b60306128759190614871565b60f81b81838151811061288b5761288a61471e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128c79190614517565b9450612845565b8093505050505b919050565b60008060006128eb87878787612bde565b915091506128f881612cea565b8192505050949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129e057506129df82612eb6565b5b9050919050565b6129f2838383612f20565b505050565b505050565b612a068383613032565b612a136000848484612a57565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990615270565b60405180910390fd5b505050565b6000612a788473ffffffffffffffffffffffffffffffffffffffff1661320b565b15612bd1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa1612037565b8786866040518563ffffffff1660e01b8152600401612ac39493929190615316565b6020604051808303816000875af1925050508015612aff57506040513d601f19601f82011682018060405250810190612afc9190615377565b60015b612b81573d8060008114612b2f576040519150601f19603f3d011682016040523d82523d6000602084013e612b34565b606091505b506000815103612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090615270565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bd6565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c19576000600391509150612ce1565b601b8560ff1614158015612c315750601c8560ff1614155b15612c43576000600491509150612ce1565b600060018787878760405160008152602001604052604051612c6894939291906153c2565b6020604051602081039080840390855afa158015612c8a573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cd857600060019250925050612ce1565b80600092509250505b94509492505050565b60006004811115612cfe57612cfd615407565b5b816004811115612d1157612d10615407565b5b0315612eb35760016004811115612d2b57612d2a615407565b5b816004811115612d3e57612d3d615407565b5b03612d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7590615482565b60405180910390fd5b60026004811115612d9257612d91615407565b5b816004811115612da557612da4615407565b5b03612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc906154ee565b60405180910390fd5b60036004811115612df957612df8615407565b5b816004811115612e0c57612e0b615407565b5b03612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4390615580565b60405180910390fd5b600480811115612e5f57612e5e615407565b5b816004811115612e7257612e71615407565b5b03612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990615612565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f2b83838361322e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f6d57612f6881613233565b612fac565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fab57612faa838261327c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fee57612fe9816133e9565b61302d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461302c5761302b82826134ba565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130989061567e565b60405180910390fd5b6130aa81611fcb565b156130ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e1906156ea565b60405180910390fd5b6130f6600083836129e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131469190614871565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613207600083836129f7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132898461119a565b613293919061515e565b9050600060076000848152602001908152602001600020549050818114613378576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133fd919061515e565b905060006009600084815260200190815260200160002054905060006008838154811061342d5761342c61471e565b5b90600052602060002001549050806008838154811061344f5761344e61471e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061349e5761349d61570a565b5b6001900381819060005260206000200160009055905550505050565b60006134c58361119a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613545906140e8565b90600052602060002090601f01602090048101928261356757600085556135ae565b82601f1061358057805160ff19168380011785556135ae565b828001600101855582156135ae579182015b828111156135ad578251825591602001919060010190613592565b5b5090506135bb91906135bf565b5090565b5b808211156135d85760008160009055506001016135c0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613625816135f0565b811461363057600080fd5b50565b6000813590506136428161361c565b92915050565b60006020828403121561365e5761365d6135e6565b5b600061366c84828501613633565b91505092915050565b60008115159050919050565b61368a81613675565b82525050565b60006020820190506136a56000830184613681565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136e55780820151818401526020810190506136ca565b838111156136f4576000848401525b50505050565b6000601f19601f8301169050919050565b6000613716826136ab565b61372081856136b6565b93506137308185602086016136c7565b613739816136fa565b840191505092915050565b6000602082019050818103600083015261375e818461370b565b905092915050565b6000819050919050565b61377981613766565b811461378457600080fd5b50565b60008135905061379681613770565b92915050565b6000602082840312156137b2576137b16135e6565b5b60006137c084828501613787565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137f4826137c9565b9050919050565b613804816137e9565b82525050565b600060208201905061381f60008301846137fb565b92915050565b61382e816137e9565b811461383957600080fd5b50565b60008135905061384b81613825565b92915050565b60008060408385031215613868576138676135e6565b5b60006138768582860161383c565b925050602061388785828601613787565b9150509250929050565b61389a81613766565b82525050565b60006020820190506138b56000830184613891565b92915050565b6138c481613675565b81146138cf57600080fd5b50565b6000813590506138e1816138bb565b92915050565b6000602082840312156138fd576138fc6135e6565b5b600061390b848285016138d2565b91505092915050565b60008060006060848603121561392d5761392c6135e6565b5b600061393b8682870161383c565b935050602061394c8682870161383c565b925050604061395d86828701613787565b9150509250925092565b6000806040838503121561397e5761397d6135e6565b5b600061398c85828601613787565b925050602061399d85828601613787565b9150509250929050565b60006040820190506139bc60008301856137fb565b6139c96020830184613891565b9392505050565b6000602082840312156139e6576139e56135e6565b5b60006139f48482850161383c565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a3f826136fa565b810181811067ffffffffffffffff82111715613a5e57613a5d613a07565b5b80604052505050565b6000613a716135dc565b9050613a7d8282613a36565b919050565b600067ffffffffffffffff821115613a9d57613a9c613a07565b5b613aa6826136fa565b9050602081019050919050565b82818337600083830152505050565b6000613ad5613ad084613a82565b613a67565b905082815260208101848484011115613af157613af0613a02565b5b613afc848285613ab3565b509392505050565b600082601f830112613b1957613b186139fd565b5b8135613b29848260208601613ac2565b91505092915050565b600060208284031215613b4857613b476135e6565b5b600082013567ffffffffffffffff811115613b6657613b656135eb565b5b613b7284828501613b04565b91505092915050565b600080fd5b600080fd5b60008083601f840112613b9b57613b9a6139fd565b5b8235905067ffffffffffffffff811115613bb857613bb7613b7b565b5b602083019150836020820283011115613bd457613bd3613b80565b5b9250929050565b60008060208385031215613bf257613bf16135e6565b5b600083013567ffffffffffffffff811115613c1057613c0f6135eb565b5b613c1c85828601613b85565b92509250509250929050565b60008060408385031215613c3f57613c3e6135e6565b5b6000613c4d8582860161383c565b9250506020613c5e858286016138d2565b9150509250929050565b600067ffffffffffffffff821115613c8357613c82613a07565b5b613c8c826136fa565b9050602081019050919050565b6000613cac613ca784613c68565b613a67565b905082815260208101848484011115613cc857613cc7613a02565b5b613cd3848285613ab3565b509392505050565b600082601f830112613cf057613cef6139fd565b5b8135613d00848260208601613c99565b91505092915050565b60008060008060808587031215613d2357613d226135e6565b5b6000613d318782880161383c565b9450506020613d428782880161383c565b9350506040613d5387828801613787565b925050606085013567ffffffffffffffff811115613d7457613d736135eb565b5b613d8087828801613cdb565b91505092959194509250565b60008060408385031215613da357613da26135e6565b5b6000613db18582860161383c565b9250506020613dc28582860161383c565b9150509250929050565b60006fffffffffffffffffffffffffffffffff82169050919050565b613df181613dcc565b82525050565b6000602082019050613e0c6000830184613de8565b92915050565b613e1b81613dcc565b8114613e2657600080fd5b50565b600081359050613e3881613e12565b92915050565b60008060408385031215613e5557613e546135e6565b5b6000613e638582860161383c565b9250506020613e7485828601613e29565b9150509250929050565b600080fd5b60007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082169050919050565b613eb881613e83565b8114613ec357600080fd5b50565b600081359050613ed581613eaf565b92915050565b600063ffffffff82169050919050565b613ef481613edb565b8114613eff57600080fd5b50565b600081359050613f1181613eeb565b92915050565b6000819050919050565b613f2a81613f17565b8114613f3557600080fd5b50565b600081359050613f4781613f21565b92915050565b600060ff82169050919050565b613f6381613f4d565b8114613f6e57600080fd5b50565b600081359050613f8081613f5a565b92915050565b600060608284031215613f9c57613f9b613e7e565b5b613fa66060613a67565b90506000613fb684828501613f38565b6000830152506020613fca84828501613f38565b6020830152506040613fde84828501613f71565b60408301525092915050565b6000610100828403121561400157614000613e7e565b5b61400b60c0613a67565b9050600061401b84828501613ec6565b600083015250602061402f84828501613787565b60208301525060406140438482850161383c565b60408301525060606140578482850161383c565b606083015250608061406b84828501613f02565b60808301525060a061407f84828501613f86565b60a08301525092915050565b600061010082840312156140a2576140a16135e6565b5b60006140b084828501613fea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061410057607f821691505b602082108103614113576141126140b9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614175602c836136b6565b915061418082614119565b604082019050919050565b600060208201905081810360008301526141a481614168565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142076021836136b6565b9150614212826141ab565b604082019050919050565b60006020820190508181036000830152614236816141fa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142996038836136b6565b91506142a48261423d565b604082019050919050565b600060208201905081810360008301526142c88161428c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143056020836136b6565b9150614310826142cf565b602082019050919050565b60006020820190508181036000830152614334816142f8565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006143976031836136b6565b91506143a28261433b565b604082019050919050565b600060208201905081810360008301526143c68161438a565b9050919050565b7f53616c652070726963652073686f756c6420626520677265617465722074686160008201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b60006144296026836136b6565b9150614434826143cd565b604082019050919050565b600060208201905081810360008301526144588161441c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449982613766565b91506144a483613766565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144dd576144dc61445f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061452282613766565b915061452d83613766565b92508261453d5761453c6144e8565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006145a4602b836136b6565b91506145af82614548565b604082019050919050565b600060208201905081810360008301526145d381614597565b9050919050565b600081905092915050565b50565b60006145f56000836145da565b9150614600826145e5565b600082019050919050565b6000614616826145e8565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006146566010836136b6565b915061466182614620565b602082019050919050565b6000602082019050818103600083015261468581614649565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006146e8602c836136b6565b91506146f38261468c565b604082019050919050565b60006020820190508181036000830152614717816146db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006147a96029836136b6565b91506147b48261474d565b604082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061483b602a836136b6565b9150614846826147df565b604082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b600061487c82613766565b915061488783613766565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148bc576148bb61445f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006148fd6013836136b6565b9150614908826148c7565b602082019050919050565b6000602082019050818103600083015261492c816148f0565b9050919050565b600061493e82613766565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149705761496f61445f565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006149d7602f836136b6565b91506149e28261497b565b604082019050919050565b60006020820190508181036000830152614a06816149ca565b9050919050565b600081905092915050565b6000614a23826136ab565b614a2d8185614a0d565b9350614a3d8185602086016136c7565b80840191505092915050565b6000614a558285614a18565b9150614a618284614a18565b91508190509392505050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6000614aa3601a836136b6565b9150614aae82614a6d565b602082019050919050565b60006020820190508181036000830152614ad281614a96565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b356026836136b6565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f496e76616c696420636f6e747261637420616464726573730000000000000000600082015250565b6000614ba16018836136b6565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f4d696e74206973206e6f7420616c6c6f77656400000000000000000000000000600082015250565b6000614c0d6013836136b6565b9150614c1882614bd7565b602082019050919050565b60006020820190508181036000830152614c3c81614c00565b9050919050565b7f496e636f72726563742070726963652073656e74000000000000000000000000600082015250565b6000614c796014836136b6565b9150614c8482614c43565b602082019050919050565b60006020820190508181036000830152614ca881614c6c565b9050919050565b7f5175616e74697479206d757374206265206c6172676572207468616e20300000600082015250565b6000614ce5601e836136b6565b9150614cf082614caf565b602082019050919050565b60006020820190508181036000830152614d1481614cd8565b9050919050565b7f4e6f7420656e6f75676820737570706c79206c65667400000000000000000000600082015250565b6000614d516016836136b6565b9150614d5c82614d1b565b602082019050919050565b60006020820190508181036000830152614d8081614d44565b9050919050565b7f41646472657373206e6f7420616c6c6f77656400000000000000000000000000600082015250565b6000614dbd6013836136b6565b9150614dc882614d87565b602082019050919050565b60006020820190508181036000830152614dec81614db0565b9050919050565b7f5065726d69742069732065787069726564000000000000000000000000000000600082015250565b6000614e296011836136b6565b9150614e3482614df3565b602082019050919050565b60006020820190508181036000830152614e5881614e1c565b9050919050565b614e6881613e83565b82525050565b614e7781613edb565b82525050565b600060a082019050614e926000830188614e5f565b614e9f6020830187613891565b614eac60408301866137fb565b614eb960608301856137fb565b614ec66080830184614e6e565b9695505050505050565b7f496e636f7272656374206469676974616c207369676e61747572650000000000600082015250565b6000614f06601b836136b6565b9150614f1182614ed0565b602082019050919050565b60006020820190508181036000830152614f3581614ef9565b9050919050565b7f546865207065726d697420686173206265656e20616c72656164792075736564600082015250565b6000614f726020836136b6565b9150614f7d82614f3c565b602082019050919050565b60006020820190508181036000830152614fa181614f65565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615004602c836136b6565b915061500f82614fa8565b604082019050919050565b6000602082019050818103600083015261503381614ff7565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006150966025836136b6565b91506150a18261503a565b604082019050919050565b600060208201905081810360008301526150c581615089565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006151286024836136b6565b9150615133826150cc565b604082019050919050565b600060208201905081810360008301526151578161511b565b9050919050565b600061516982613766565b915061517483613766565b9250828210156151875761518661445f565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006151c86019836136b6565b91506151d382615192565b602082019050919050565b600060208201905081810360008301526151f7816151bb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061525a6032836136b6565b9150615265826151fe565b604082019050919050565b600060208201905081810360008301526152898161524d565b9050919050565b600061529b82613766565b91506152a683613766565b9250826152b6576152b56144e8565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006152e8826152c1565b6152f281856152cc565b93506153028185602086016136c7565b61530b816136fa565b840191505092915050565b600060808201905061532b60008301876137fb565b61533860208301866137fb565b6153456040830185613891565b818103606083015261535781846152dd565b905095945050505050565b6000815190506153718161361c565b92915050565b60006020828403121561538d5761538c6135e6565b5b600061539b84828501615362565b91505092915050565b6153ad81613f17565b82525050565b6153bc81613f4d565b82525050565b60006080820190506153d760008301876153a4565b6153e460208301866153b3565b6153f160408301856153a4565b6153fe60608301846153a4565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061546c6018836136b6565b915061547782615436565b602082019050919050565b6000602082019050818103600083015261549b8161545f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006154d8601f836136b6565b91506154e3826154a2565b602082019050919050565b60006020820190508181036000830152615507816154cb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061556a6022836136b6565b91506155758261550e565b604082019050919050565b600060208201905081810360008301526155998161555d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155fc6022836136b6565b9150615607826155a0565b604082019050919050565b6000602082019050818103600083015261562b816155ef565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006156686020836136b6565b915061567382615632565b602082019050919050565b600060208201905081810360008301526156978161565b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006156d4601c836136b6565b91506156df8261569e565b602082019050919050565b60006020820190508181036000830152615703816156c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122091a46e59dd66d0c5dd1b5fd5b264a7ccf73bd2fad67e816ba2de779d9e184fe464736f6c634300080d003368747470733a2f2f6d657461646174612e6e66746f776e2e636f6d2f7368617265732f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063c467201e116100a0578063f10829101161006f578063f1082910146107b0578063f1a78add146107db578063f2fde38b14610804578063f4a0a5281461082d578063fcd02980146108565761020f565b8063c467201e146106e0578063c87b56dd1461070b578063d5abeb0114610748578063e985e9c5146107735761020f565b806391f2700a116100e757806391f2700a1461060f57806395d89b4114610638578063a22cb46514610663578063b3e82dc91461068c578063b88d4fde146106b75761020f565b8063715018a614610579578063771282f614610590578063842f10d1146105bb5780638da5cb5b146105e45761020f565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461046e57806355f804b3146104ab5780636352211e146104d45780636817c76c1461051157806370a082311461053c5761020f565b80632f745c59146103c857806331beb605146104055780633ccfd60b1461042e57806342842e0e146104455761020f565b806318160ddd116101e257806318160ddd146102e25780631d96a0821461030d5780631f85e3ca1461033857806323b872dd146103615780632a55205a1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613648565b610872565b6040516102489190613690565b60405180910390f35b34801561025d57600080fd5b506102666108ec565b6040516102739190613744565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061379c565b61097e565b6040516102b0919061380a565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613851565b610a03565b005b3480156102ee57600080fd5b506102f7610b1a565b60405161030491906138a0565b60405180910390f35b34801561031957600080fd5b50610322610b27565b60405161032f919061380a565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a91906138e7565b610b4d565b005b34801561036d57600080fd5b5061038860048036038101906103839190613914565b610be6565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613967565b610c46565b6040516103bf9291906139a7565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613851565b610d09565b6040516103fc91906138a0565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906139d0565b610dae565b005b34801561043a57600080fd5b50610443610e6e565b005b34801561045157600080fd5b5061046c60048036038101906104679190613914565b610fbc565b005b34801561047a57600080fd5b506104956004803603810190610490919061379c565b610fdc565b6040516104a291906138a0565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190613b32565b61104d565b005b3480156104e057600080fd5b506104fb60048036038101906104f6919061379c565b6110e3565b604051610508919061380a565b60405180910390f35b34801561051d57600080fd5b50610526611194565b60405161053391906138a0565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906139d0565b61119a565b60405161057091906138a0565b60405180910390f35b34801561058557600080fd5b5061058e611251565b005b34801561059c57600080fd5b506105a56112d9565b6040516105b291906138a0565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613bdb565b6112df565b005b3480156105f057600080fd5b506105f9611421565b604051610606919061380a565b60405180910390f35b34801561061b57600080fd5b50610636600480360381019061063191906139d0565b61144b565b005b34801561064457600080fd5b5061064d611535565b60405161065a9190613744565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613c28565b6115c7565b005b34801561069857600080fd5b506106a16115dd565b6040516106ae919061380a565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613d09565b611603565b005b3480156106ec57600080fd5b506106f5611665565b6040516107029190613690565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d919061379c565b611678565b60405161073f9190613744565b60405180910390f35b34801561075457600080fd5b5061075d61171f565b60405161076a91906138a0565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190613d8c565b611725565b6040516107a79190613690565b60405180910390f35b3480156107bc57600080fd5b506107c56117b9565b6040516107d29190613df7565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613e3e565b6117db565b005b34801561081057600080fd5b5061082b600480360381019061082691906139d0565b61192c565b005b34801561083957600080fd5b50610854600480360381019061084f919061379c565b611a23565b005b610870600480360381019061086b919061408b565b611aa9565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e557506108e482611f51565b5b9050919050565b6060600080546108fb906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610927906140e8565b80156109745780601f1061094957610100808354040283529160200191610974565b820191906000526020600020905b81548152906001019060200180831161095757829003601f168201915b5050505050905090565b600061098982611fcb565b6109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf9061418b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0e826110e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061421d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9d612037565b73ffffffffffffffffffffffffffffffffffffffff161480610acc5750610acb81610ac6612037565b611725565b5b610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b02906142af565b60405180910390fd5b610b15838361203f565b505050565b6000600880549050905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b55612037565b73ffffffffffffffffffffffffffffffffffffffff16610b73611421565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc09061431b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b610bf7610bf1612037565b826120f8565b610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d906143ad565b60405180910390fd5b610c418383836121d6565b505050565b60008060008311610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c839061443f565b60405180910390fd5b6000612710601160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1685610ccd919061448e565b610cd79190614517565b9050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000610d148361119a565b8210610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c906145ba565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610db6612037565b73ffffffffffffffffffffffffffffffffffffffff16610dd4611421565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061431b565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e76612037565b73ffffffffffffffffffffffffffffffffffffffff16610e94611421565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061431b565b60405180910390fd5b6000309050600033905060008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1631604051610f319061460b565b60006040518083038185875af1925050503d8060008114610f6e576040519150601f19603f3d011682016040523d82523d6000602084013e610f73565b606091505b5050905080610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae9061466c565b60405180910390fd5b505050565b610fd783838360405180602001604052806000815250611603565b505050565b6000610fe6610b1a565b8210611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e906146fe565b60405180910390fd5b6008828154811061103b5761103a61471e565b5b90600052602060002001549050919050565b611055612037565b73ffffffffffffffffffffffffffffffffffffffff16611073611421565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c09061431b565b60405180910390fd5b80600c90805190602001906110df929190613539565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611182906147bf565b60405180910390fd5b80915050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190614851565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611259612037565b73ffffffffffffffffffffffffffffffffffffffff16611277611421565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061431b565b60405180910390fd5b6112d7600061243c565b565b600e5481565b6112e7612037565b73ffffffffffffffffffffffffffffffffffffffff16611305611421565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113529061431b565b60405180910390fd5b600d5482829050600e5461136f9190614871565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790614913565b60405180910390fd5b60005b8282905081101561141c57600e60008154809291906113d190614933565b91905055506114098383838181106113ec576113eb61471e565b5b905060200201602081019061140191906139d0565b600e54612502565b808061141490614933565b9150506113b3565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611453612037565b73ffffffffffffffffffffffffffffffffffffffff16611471611421565b73ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be9061431b565b60405180910390fd5b600e60008154809291906114da90614933565b9190505550600d54600e541115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90614913565b60405180910390fd5b61153281600e54612502565b50565b606060018054611544906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611570906140e8565b80156115bd5780601f10611592576101008083540402835291602001916115bd565b820191906000526020600020905b8154815290600101906020018083116115a057829003601f168201915b5050505050905090565b6115d96115d2612037565b8383612520565b5050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61161461160e612037565b836120f8565b611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a906143ad565b60405180910390fd5b61165f8484848461268c565b50505050565b600f60009054906101000a900460ff1681565b606061168382611fcb565b6116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906149ed565b60405180910390fd5b60006116cc6126e8565b905060008151116116ec5760405180602001604052806000815250611717565b806116f68461277a565b604051602001611707929190614a49565b6040516020818303038152906040525b915050919050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a90046fffffffffffffffffffffffffffffffff1681565b6117e3612037565b73ffffffffffffffffffffffffffffffffffffffff16611801611421565b73ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e9061431b565b60405180910390fd5b612710816fffffffffffffffffffffffffffffffff1611156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590614ab9565b60405180910390fd5b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505050565b611934612037565b73ffffffffffffffffffffffffffffffffffffffff16611952611421565b73ffffffffffffffffffffffffffffffffffffffff16146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f9061431b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90614b4b565b60405180910390fd5b611a208161243c565b50565b611a2b612037565b73ffffffffffffffffffffffffffffffffffffffff16611a49611421565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a969061431b565b60405180910390fd5b8060108190555050565b3073ffffffffffffffffffffffffffffffffffffffff16816040015173ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614bb7565b60405180910390fd5b600f60009054906101000a900460ff16611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614c23565b60405180910390fd5b806080015163ffffffff16601054611b82919061448e565b3414611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614c8f565b60405180910390fd5b6000816080015163ffffffff1611611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790614cfb565b60405180910390fd5b600d54600e54826080015163ffffffff16611c2b9190614871565b1115611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6390614d67565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16816060015173ffffffffffffffffffffffffffffffffffffffff1614611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590614dd3565b60405180910390fd5b4281602001511015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614e3f565b60405180910390fd5b600081600001518260200151836040015184606001518560800151604051602001611d54959493929190614e7d565b604051602081830303815290604052805190602001209050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611dc9828460a00151604001518560a00151600001518660a00151602001516128da565b73ffffffffffffffffffffffffffffffffffffffff1614611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614f1c565b60405180910390fd5b6014600083600001516fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190614f88565b60405180910390fd5b60016014600084600001516fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b826080015163ffffffff16811015611f4c57600e6000815480929190611f2890614933565b9190505550611f3933600e54612502565b8080611f4490614933565b915050611f03565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fc45750611fc382612905565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120b2836110e3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061210382611fcb565b612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061501a565b60405180910390fd5b600061214d836110e3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218f575061218e8185611725565b5b806121cd57508373ffffffffffffffffffffffffffffffffffffffff166121b58461097e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121f6826110e3565b73ffffffffffffffffffffffffffffffffffffffff161461224c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612243906150ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b29061513e565b60405180910390fd5b6122c68383836129e7565b6122d160008261203f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612321919061515e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123789190614871565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124378383836129f7565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61251c8282604051806020016040528060008152506129fc565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361258e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612585906151de565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161267f9190613690565b60405180910390a3505050565b6126978484846121d6565b6126a384848484612a57565b6126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990615270565b60405180910390fd5b50505050565b6060600c80546126f7906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612723906140e8565b80156127705780601f1061274557610100808354040283529160200191612770565b820191906000526020600020905b81548152906001019060200180831161275357829003601f168201915b5050505050905090565b6060600082036127c1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128d5565b600082905060005b600082146127f35780806127dc90614933565b915050600a826127ec9190614517565b91506127c9565b60008167ffffffffffffffff81111561280f5761280e613a07565b5b6040519080825280601f01601f1916602001820160405280156128415781602001600182028036833780820191505090505b5090505b600085146128ce5760018261285a919061515e565b9150600a856128699190615290565b60306128759190614871565b60f81b81838151811061288b5761288a61471e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128c79190614517565b9450612845565b8093505050505b919050565b60008060006128eb87878787612bde565b915091506128f881612cea565b8192505050949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129e057506129df82612eb6565b5b9050919050565b6129f2838383612f20565b505050565b505050565b612a068383613032565b612a136000848484612a57565b612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990615270565b60405180910390fd5b505050565b6000612a788473ffffffffffffffffffffffffffffffffffffffff1661320b565b15612bd1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa1612037565b8786866040518563ffffffff1660e01b8152600401612ac39493929190615316565b6020604051808303816000875af1925050508015612aff57506040513d601f19601f82011682018060405250810190612afc9190615377565b60015b612b81573d8060008114612b2f576040519150601f19603f3d011682016040523d82523d6000602084013e612b34565b606091505b506000815103612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7090615270565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bd6565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c19576000600391509150612ce1565b601b8560ff1614158015612c315750601c8560ff1614155b15612c43576000600491509150612ce1565b600060018787878760405160008152602001604052604051612c6894939291906153c2565b6020604051602081039080840390855afa158015612c8a573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cd857600060019250925050612ce1565b80600092509250505b94509492505050565b60006004811115612cfe57612cfd615407565b5b816004811115612d1157612d10615407565b5b0315612eb35760016004811115612d2b57612d2a615407565b5b816004811115612d3e57612d3d615407565b5b03612d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7590615482565b60405180910390fd5b60026004811115612d9257612d91615407565b5b816004811115612da557612da4615407565b5b03612de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddc906154ee565b60405180910390fd5b60036004811115612df957612df8615407565b5b816004811115612e0c57612e0b615407565b5b03612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4390615580565b60405180910390fd5b600480811115612e5f57612e5e615407565b5b816004811115612e7257612e71615407565b5b03612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990615612565b60405180910390fd5b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f2b83838361322e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f6d57612f6881613233565b612fac565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612fab57612faa838261327c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fee57612fe9816133e9565b61302d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461302c5761302b82826134ba565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130989061567e565b60405180910390fd5b6130aa81611fcb565b156130ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e1906156ea565b60405180910390fd5b6130f6600083836129e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131469190614871565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613207600083836129f7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132898461119a565b613293919061515e565b9050600060076000848152602001908152602001600020549050818114613378576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133fd919061515e565b905060006009600084815260200190815260200160002054905060006008838154811061342d5761342c61471e565b5b90600052602060002001549050806008838154811061344f5761344e61471e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061349e5761349d61570a565b5b6001900381819060005260206000200160009055905550505050565b60006134c58361119a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613545906140e8565b90600052602060002090601f01602090048101928261356757600085556135ae565b82601f1061358057805160ff19168380011785556135ae565b828001600101855582156135ae579182015b828111156135ad578251825591602001919060010190613592565b5b5090506135bb91906135bf565b5090565b5b808211156135d85760008160009055506001016135c0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613625816135f0565b811461363057600080fd5b50565b6000813590506136428161361c565b92915050565b60006020828403121561365e5761365d6135e6565b5b600061366c84828501613633565b91505092915050565b60008115159050919050565b61368a81613675565b82525050565b60006020820190506136a56000830184613681565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136e55780820151818401526020810190506136ca565b838111156136f4576000848401525b50505050565b6000601f19601f8301169050919050565b6000613716826136ab565b61372081856136b6565b93506137308185602086016136c7565b613739816136fa565b840191505092915050565b6000602082019050818103600083015261375e818461370b565b905092915050565b6000819050919050565b61377981613766565b811461378457600080fd5b50565b60008135905061379681613770565b92915050565b6000602082840312156137b2576137b16135e6565b5b60006137c084828501613787565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137f4826137c9565b9050919050565b613804816137e9565b82525050565b600060208201905061381f60008301846137fb565b92915050565b61382e816137e9565b811461383957600080fd5b50565b60008135905061384b81613825565b92915050565b60008060408385031215613868576138676135e6565b5b60006138768582860161383c565b925050602061388785828601613787565b9150509250929050565b61389a81613766565b82525050565b60006020820190506138b56000830184613891565b92915050565b6138c481613675565b81146138cf57600080fd5b50565b6000813590506138e1816138bb565b92915050565b6000602082840312156138fd576138fc6135e6565b5b600061390b848285016138d2565b91505092915050565b60008060006060848603121561392d5761392c6135e6565b5b600061393b8682870161383c565b935050602061394c8682870161383c565b925050604061395d86828701613787565b9150509250925092565b6000806040838503121561397e5761397d6135e6565b5b600061398c85828601613787565b925050602061399d85828601613787565b9150509250929050565b60006040820190506139bc60008301856137fb565b6139c96020830184613891565b9392505050565b6000602082840312156139e6576139e56135e6565b5b60006139f48482850161383c565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a3f826136fa565b810181811067ffffffffffffffff82111715613a5e57613a5d613a07565b5b80604052505050565b6000613a716135dc565b9050613a7d8282613a36565b919050565b600067ffffffffffffffff821115613a9d57613a9c613a07565b5b613aa6826136fa565b9050602081019050919050565b82818337600083830152505050565b6000613ad5613ad084613a82565b613a67565b905082815260208101848484011115613af157613af0613a02565b5b613afc848285613ab3565b509392505050565b600082601f830112613b1957613b186139fd565b5b8135613b29848260208601613ac2565b91505092915050565b600060208284031215613b4857613b476135e6565b5b600082013567ffffffffffffffff811115613b6657613b656135eb565b5b613b7284828501613b04565b91505092915050565b600080fd5b600080fd5b60008083601f840112613b9b57613b9a6139fd565b5b8235905067ffffffffffffffff811115613bb857613bb7613b7b565b5b602083019150836020820283011115613bd457613bd3613b80565b5b9250929050565b60008060208385031215613bf257613bf16135e6565b5b600083013567ffffffffffffffff811115613c1057613c0f6135eb565b5b613c1c85828601613b85565b92509250509250929050565b60008060408385031215613c3f57613c3e6135e6565b5b6000613c4d8582860161383c565b9250506020613c5e858286016138d2565b9150509250929050565b600067ffffffffffffffff821115613c8357613c82613a07565b5b613c8c826136fa565b9050602081019050919050565b6000613cac613ca784613c68565b613a67565b905082815260208101848484011115613cc857613cc7613a02565b5b613cd3848285613ab3565b509392505050565b600082601f830112613cf057613cef6139fd565b5b8135613d00848260208601613c99565b91505092915050565b60008060008060808587031215613d2357613d226135e6565b5b6000613d318782880161383c565b9450506020613d428782880161383c565b9350506040613d5387828801613787565b925050606085013567ffffffffffffffff811115613d7457613d736135eb565b5b613d8087828801613cdb565b91505092959194509250565b60008060408385031215613da357613da26135e6565b5b6000613db18582860161383c565b9250506020613dc28582860161383c565b9150509250929050565b60006fffffffffffffffffffffffffffffffff82169050919050565b613df181613dcc565b82525050565b6000602082019050613e0c6000830184613de8565b92915050565b613e1b81613dcc565b8114613e2657600080fd5b50565b600081359050613e3881613e12565b92915050565b60008060408385031215613e5557613e546135e6565b5b6000613e638582860161383c565b9250506020613e7485828601613e29565b9150509250929050565b600080fd5b60007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082169050919050565b613eb881613e83565b8114613ec357600080fd5b50565b600081359050613ed581613eaf565b92915050565b600063ffffffff82169050919050565b613ef481613edb565b8114613eff57600080fd5b50565b600081359050613f1181613eeb565b92915050565b6000819050919050565b613f2a81613f17565b8114613f3557600080fd5b50565b600081359050613f4781613f21565b92915050565b600060ff82169050919050565b613f6381613f4d565b8114613f6e57600080fd5b50565b600081359050613f8081613f5a565b92915050565b600060608284031215613f9c57613f9b613e7e565b5b613fa66060613a67565b90506000613fb684828501613f38565b6000830152506020613fca84828501613f38565b6020830152506040613fde84828501613f71565b60408301525092915050565b6000610100828403121561400157614000613e7e565b5b61400b60c0613a67565b9050600061401b84828501613ec6565b600083015250602061402f84828501613787565b60208301525060406140438482850161383c565b60408301525060606140578482850161383c565b606083015250608061406b84828501613f02565b60808301525060a061407f84828501613f86565b60a08301525092915050565b600061010082840312156140a2576140a16135e6565b5b60006140b084828501613fea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061410057607f821691505b602082108103614113576141126140b9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614175602c836136b6565b915061418082614119565b604082019050919050565b600060208201905081810360008301526141a481614168565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006142076021836136b6565b9150614212826141ab565b604082019050919050565b60006020820190508181036000830152614236816141fa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006142996038836136b6565b91506142a48261423d565b604082019050919050565b600060208201905081810360008301526142c88161428c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143056020836136b6565b9150614310826142cf565b602082019050919050565b60006020820190508181036000830152614334816142f8565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006143976031836136b6565b91506143a28261433b565b604082019050919050565b600060208201905081810360008301526143c68161438a565b9050919050565b7f53616c652070726963652073686f756c6420626520677265617465722074686160008201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b60006144296026836136b6565b9150614434826143cd565b604082019050919050565b600060208201905081810360008301526144588161441c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449982613766565b91506144a483613766565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144dd576144dc61445f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061452282613766565b915061452d83613766565b92508261453d5761453c6144e8565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006145a4602b836136b6565b91506145af82614548565b604082019050919050565b600060208201905081810360008301526145d381614597565b9050919050565b600081905092915050565b50565b60006145f56000836145da565b9150614600826145e5565b600082019050919050565b6000614616826145e8565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006146566010836136b6565b915061466182614620565b602082019050919050565b6000602082019050818103600083015261468581614649565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006146e8602c836136b6565b91506146f38261468c565b604082019050919050565b60006020820190508181036000830152614717816146db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006147a96029836136b6565b91506147b48261474d565b604082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061483b602a836136b6565b9150614846826147df565b604082019050919050565b6000602082019050818103600083015261486a8161482e565b9050919050565b600061487c82613766565b915061488783613766565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148bc576148bb61445f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006148fd6013836136b6565b9150614908826148c7565b602082019050919050565b6000602082019050818103600083015261492c816148f0565b9050919050565b600061493e82613766565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149705761496f61445f565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006149d7602f836136b6565b91506149e28261497b565b604082019050919050565b60006020820190508181036000830152614a06816149ca565b9050919050565b600081905092915050565b6000614a23826136ab565b614a2d8185614a0d565b9350614a3d8185602086016136c7565b80840191505092915050565b6000614a558285614a18565b9150614a618284614a18565b91508190509392505050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b6000614aa3601a836136b6565b9150614aae82614a6d565b602082019050919050565b60006020820190508181036000830152614ad281614a96565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b356026836136b6565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b7f496e76616c696420636f6e747261637420616464726573730000000000000000600082015250565b6000614ba16018836136b6565b9150614bac82614b6b565b602082019050919050565b60006020820190508181036000830152614bd081614b94565b9050919050565b7f4d696e74206973206e6f7420616c6c6f77656400000000000000000000000000600082015250565b6000614c0d6013836136b6565b9150614c1882614bd7565b602082019050919050565b60006020820190508181036000830152614c3c81614c00565b9050919050565b7f496e636f72726563742070726963652073656e74000000000000000000000000600082015250565b6000614c796014836136b6565b9150614c8482614c43565b602082019050919050565b60006020820190508181036000830152614ca881614c6c565b9050919050565b7f5175616e74697479206d757374206265206c6172676572207468616e20300000600082015250565b6000614ce5601e836136b6565b9150614cf082614caf565b602082019050919050565b60006020820190508181036000830152614d1481614cd8565b9050919050565b7f4e6f7420656e6f75676820737570706c79206c65667400000000000000000000600082015250565b6000614d516016836136b6565b9150614d5c82614d1b565b602082019050919050565b60006020820190508181036000830152614d8081614d44565b9050919050565b7f41646472657373206e6f7420616c6c6f77656400000000000000000000000000600082015250565b6000614dbd6013836136b6565b9150614dc882614d87565b602082019050919050565b60006020820190508181036000830152614dec81614db0565b9050919050565b7f5065726d69742069732065787069726564000000000000000000000000000000600082015250565b6000614e296011836136b6565b9150614e3482614df3565b602082019050919050565b60006020820190508181036000830152614e5881614e1c565b9050919050565b614e6881613e83565b82525050565b614e7781613edb565b82525050565b600060a082019050614e926000830188614e5f565b614e9f6020830187613891565b614eac60408301866137fb565b614eb960608301856137fb565b614ec66080830184614e6e565b9695505050505050565b7f496e636f7272656374206469676974616c207369676e61747572650000000000600082015250565b6000614f06601b836136b6565b9150614f1182614ed0565b602082019050919050565b60006020820190508181036000830152614f3581614ef9565b9050919050565b7f546865207065726d697420686173206265656e20616c72656164792075736564600082015250565b6000614f726020836136b6565b9150614f7d82614f3c565b602082019050919050565b60006020820190508181036000830152614fa181614f65565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615004602c836136b6565b915061500f82614fa8565b604082019050919050565b6000602082019050818103600083015261503381614ff7565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006150966025836136b6565b91506150a18261503a565b604082019050919050565b600060208201905081810360008301526150c581615089565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006151286024836136b6565b9150615133826150cc565b604082019050919050565b600060208201905081810360008301526151578161511b565b9050919050565b600061516982613766565b915061517483613766565b9250828210156151875761518661445f565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006151c86019836136b6565b91506151d382615192565b602082019050919050565b600060208201905081810360008301526151f7816151bb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061525a6032836136b6565b9150615265826151fe565b604082019050919050565b600060208201905081810360008301526152898161524d565b9050919050565b600061529b82613766565b91506152a683613766565b9250826152b6576152b56144e8565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006152e8826152c1565b6152f281856152cc565b93506153028185602086016136c7565b61530b816136fa565b840191505092915050565b600060808201905061532b60008301876137fb565b61533860208301866137fb565b6153456040830185613891565b818103606083015261535781846152dd565b905095945050505050565b6000815190506153718161361c565b92915050565b60006020828403121561538d5761538c6135e6565b5b600061539b84828501615362565b91505092915050565b6153ad81613f17565b82525050565b6153bc81613f4d565b82525050565b60006080820190506153d760008301876153a4565b6153e460208301866153b3565b6153f160408301856153a4565b6153fe60608301846153a4565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061546c6018836136b6565b915061547782615436565b602082019050919050565b6000602082019050818103600083015261549b8161545f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006154d8601f836136b6565b91506154e3826154a2565b602082019050919050565b60006020820190508181036000830152615507816154cb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061556a6022836136b6565b91506155758261550e565b604082019050919050565b600060208201905081810360008301526155998161555d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006155fc6022836136b6565b9150615607826155a0565b604082019050919050565b6000602082019050818103600083015261562b816155ef565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006156686020836136b6565b915061567382615632565b602082019050919050565b600060208201905081810360008301526156978161565b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006156d4601c836136b6565b91506156df8261569e565b602082019050919050565b60006020820190508181036000830152615703816156c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122091a46e59dd66d0c5dd1b5fd5b264a7ccf73bd2fad67e816ba2de779d9e184fe464736f6c634300080d0033

Deployed Bytecode Sourcemap

57434:8336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65531:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21840:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23400:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22923:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36534:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58496:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60116:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24150:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64665:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;36202:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60400:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63699:384;;;;;;;;;;;;;:::i;:::-;;24560:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36724:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59856:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21534:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57917:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21264:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43679:103;;;;;;;;;;;;;:::i;:::-;;57641:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60715:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43028:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60520:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22009:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23693:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58869:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24816:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57703:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22184:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57601:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23919:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58459:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64239:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43937:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60245:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61032:2509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65531:234;65652:4;65691:26;65676:41;;;:11;:41;;;;:81;;;;65721:36;65745:11;65721:23;:36::i;:::-;65676:81;65669:88;;65531:234;;;:::o;21840:100::-;21894:13;21927:5;21920:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21840:100;:::o;23400:221::-;23476:7;23504:16;23512:7;23504;:16::i;:::-;23496:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23589:15;:24;23605:7;23589:24;;;;;;;;;;;;;;;;;;;;;23582:31;;23400:221;;;:::o;22923:411::-;23004:13;23020:23;23035:7;23020:14;:23::i;:::-;23004:39;;23068:5;23062:11;;:2;:11;;;23054:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23162:5;23146:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23171:37;23188:5;23195:12;:10;:12::i;:::-;23171:16;:37::i;:::-;23146:62;23124:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23305:21;23314:2;23318:7;23305:8;:21::i;:::-;22993:341;22923:411;;:::o;36534:113::-;36595:7;36622:10;:17;;;;36615:24;;36534:113;:::o;58496:33::-;;;;;;;;;;;;;:::o;60116:98::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60198:8:::1;60184:11;;:22;;;;;;;;;;;;;;;;;;60116:98:::0;:::o;24150:339::-;24345:41;24364:12;:10;:12::i;:::-;24378:7;24345:18;:41::i;:::-;24337:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24453:28;24463:4;24469:2;24473:7;24453:9;:28::i;:::-;24150:339;;;:::o;64665:357::-;64755:7;64764;64805:1;64792:10;:14;64784:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64901:21;64956:5;64938:15;;;;;;;;;;;64925:28;;:10;:28;;;;:::i;:::-;:36;;;;:::i;:::-;64901:60;;64980:18;;;;;;;;;;;65000:13;64972:42;;;;;64665:357;;;;;:::o;36202:256::-;36299:7;36335:23;36352:5;36335:16;:23::i;:::-;36327:5;:31;36319:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36424:12;:19;36437:5;36424:19;;;;;;;;;;;;;;;:26;36444:5;36424:26;;;;;;;;;;;;36417:33;;36202:256;;;;:::o;60400:112::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60494:10:::1;60477:14;;:27;;;;;;;;;;;;;;;;;;60400:112:::0;:::o;63699:384::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63749:20:::1;63780:4;63749:36;;63796:21;63828:10;63796:43;;63967:12;63984:5;:10;;64003:12;:20;;;63984:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63966:62;;;64047:7;64039:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63738:345;;;63699:384::o:0;24560:185::-;24698:39;24715:4;24721:2;24725:7;24698:39;;;;;;;;;;;;:16;:39::i;:::-;24560:185;;;:::o;36724:233::-;36799:7;36835:30;:28;:30::i;:::-;36827:5;:38;36819:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36932:10;36943:5;36932:17;;;;;;;;:::i;:::-;;;;;;;;;;36925:24;;36724:233;;;:::o;59856:104::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59945:7:::1;59927:15;:25;;;;;;;;;;;;:::i;:::-;;59856:104:::0;:::o;21534:239::-;21606:7;21626:13;21642:7;:16;21650:7;21642:16;;;;;;;;;;;;;;;;;;;;;21626:32;;21694:1;21677:19;;:5;:19;;;21669:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21760:5;21753:12;;;21534:239;;;:::o;57917:36::-;;;;:::o;21264:208::-;21336:7;21381:1;21364:19;;:5;:19;;;21356:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21448:9;:16;21458:5;21448:16;;;;;;;;;;;;;;;;21441:23;;21264:208;;;:::o;43679:103::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43744:30:::1;43771:1;43744:18;:30::i;:::-;43679:103::o:0;57641:32::-;;;;:::o;60715:289::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60828:9:::1;;60815:2;;:9;;60799:13;;:25;;;;:::i;:::-;:38;;60791:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60877:6;60872:125;60893:2;;:9;;60889:1;:13;60872:125;;;60924:13;;:15;;;;;;;;;:::i;:::-;;;;;;60954:31;60964:2;;60967:1;60964:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;60971:13;;60954:9;:31::i;:::-;60904:3;;;;;:::i;:::-;;;;60872:125;;;;60715:289:::0;;:::o;43028:87::-;43074:7;43101:6;;;;;;;;;;;43094:13;;43028:87;:::o;60520:187::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60576:13:::1;;:15;;;;;;;;;:::i;:::-;;;;;;60627:9;;60610:13;;:26;;60602:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60671:28;60681:2;60685:13;;60671:9;:28::i;:::-;60520:187:::0;:::o;22009:104::-;22065:13;22098:7;22091:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22009:104;:::o;23693:155::-;23788:52;23807:12;:10;:12::i;:::-;23821:8;23831;23788:18;:52::i;:::-;23693:155;;:::o;58869:29::-;;;;;;;;;;;;;:::o;24816:328::-;24991:41;25010:12;:10;:12::i;:::-;25024:7;24991:18;:41::i;:::-;24983:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25097:39;25111:4;25117:2;25121:7;25130:5;25097:13;:39::i;:::-;24816:328;;;;:::o;57703:31::-;;;;;;;;;;;;;:::o;22184:334::-;22257:13;22291:16;22299:7;22291;:16::i;:::-;22283:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22372:21;22396:10;:8;:10::i;:::-;22372:34;;22448:1;22430:7;22424:21;:25;:86;;;;;;;;;;;;;;;;;22476:7;22485:18;:7;:16;:18::i;:::-;22459:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22424:86;22417:93;;;22184:334;;;:::o;57601:33::-;;;;:::o;23919:164::-;24016:4;24040:18;:25;24059:5;24040:25;;;;;;;;;;;;;;;:35;24066:8;24040:35;;;;;;;;;;;;;;;;;;;;;;;;;24033:42;;23919:164;;;;:::o;58459:30::-;;;;;;;;;;;;;:::o;64239:232::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64349:5:::1;64338:7;:16;;;;64330:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;64417:10;64396:18;;:31;;;;;;;;;;;;;;;;;;64456:7;64438:15;;:25;;;;;;;;;;;;;;;;;;64239:232:::0;;:::o;43937:201::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44046:1:::1;44026:22;;:8;:22;;::::0;44018:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44102:28;44121:8;44102:18;:28::i;:::-;43937:201:::0;:::o;60245:100::-;43259:12;:10;:12::i;:::-;43248:23;;:7;:5;:7::i;:::-;:23;;;43240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60328:9:::1;60316;:21;;;;60245:100:::0;:::o;61032:2509::-;61348:4;61314:39;;:6;:22;;;:39;;;61306:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61442:11;;;;;;;;;;;61434:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;61550:6;:15;;;61538:27;;:9;;:27;;;;:::i;:::-;61524:9;:42;61516:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61657:1;61639:6;:15;;;:19;;;61631:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;61803:9;;61785:13;;61767:6;:15;;;:31;;;;;;:::i;:::-;61766:46;;61758:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62006:10;61983:33;;:6;:19;;;:33;;;61975:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;62633:15;62613:6;:16;;;:35;;62605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;62720:16;62792:6;:15;;;62826:6;:16;;;62861:6;:22;;;62902:6;:19;;;62940:6;:15;;;62763:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62739:218;;;;;;62720:237;;63065:14;;;;;;;;;;;62978:101;;:83;62992:8;63002:6;:16;;;:18;;;63022:6;:16;;;:18;;;63042:6;:16;;;:18;;;62978:13;:83::i;:::-;:101;;;62970:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;63198:11;:28;63210:6;:15;;;63198:28;;;;;;;;;;;;;;;;;;;;;;;;;;;63197:29;63189:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;63354:4;63323:11;:28;63335:6;:15;;;63323:28;;;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;63400:9;63395:139;63419:6;:15;;;63415:19;;:1;:19;63395:139;;;63456:13;;:15;;;;;;;;;:::i;:::-;;;;;;63486:36;63496:10;63508:13;;63486:9;:36::i;:::-;63436:3;;;;;:::i;:::-;;;;63395:139;;;;61091:2450;61032:2509;:::o;35894:224::-;35996:4;36035:35;36020:50;;;:11;:50;;;;:90;;;;36074:36;36098:11;36074:23;:36::i;:::-;36020:90;36013:97;;35894:224;;;:::o;26654:127::-;26719:4;26771:1;26743:30;;:7;:16;26751:7;26743:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26736:37;;26654:127;;;:::o;3525:98::-;3578:7;3605:10;3598:17;;3525:98;:::o;30800:174::-;30902:2;30875:15;:24;30891:7;30875:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30958:7;30954:2;30920:46;;30929:23;30944:7;30929:14;:23::i;:::-;30920:46;;;;;;;;;;;;30800:174;;:::o;26948:348::-;27041:4;27066:16;27074:7;27066;:16::i;:::-;27058:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27142:13;27158:23;27173:7;27158:14;:23::i;:::-;27142:39;;27211:5;27200:16;;:7;:16;;;:52;;;;27220:32;27237:5;27244:7;27220:16;:32::i;:::-;27200:52;:87;;;;27280:7;27256:31;;:20;27268:7;27256:11;:20::i;:::-;:31;;;27200:87;27192:96;;;26948:348;;;;:::o;30057:625::-;30216:4;30189:31;;:23;30204:7;30189:14;:23::i;:::-;:31;;;30181:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30295:1;30281:16;;:2;:16;;;30273:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30351:39;30372:4;30378:2;30382:7;30351:20;:39::i;:::-;30455:29;30472:1;30476:7;30455:8;:29::i;:::-;30516:1;30497:9;:15;30507:4;30497:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30545:1;30528:9;:13;30538:2;30528:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30576:2;30557:7;:16;30565:7;30557:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30615:7;30611:2;30596:27;;30605:4;30596:27;;;;;;;;;;;;30636:38;30656:4;30662:2;30666:7;30636:19;:38::i;:::-;30057:625;;;:::o;44298:191::-;44372:16;44391:6;;;;;;;;;;;44372:25;;44417:8;44408:6;;:17;;;;;;;;;;;;;;;;;;44472:8;44441:40;;44462:8;44441:40;;;;;;;;;;;;44361:128;44298:191;:::o;27638:110::-;27714:26;27724:2;27728:7;27714:26;;;;;;;;;;;;:9;:26::i;:::-;27638:110;;:::o;31116:315::-;31271:8;31262:17;;:5;:17;;;31254:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31358:8;31320:18;:25;31339:5;31320:25;;;;;;;;;;;;;;;:35;31346:8;31320:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31404:8;31382:41;;31397:5;31382:41;;;31414:8;31382:41;;;;;;:::i;:::-;;;;;;;;31116:315;;;:::o;26026:::-;26183:28;26193:4;26199:2;26203:7;26183:9;:28::i;:::-;26230:48;26253:4;26259:2;26263:7;26272:5;26230:22;:48::i;:::-;26222:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26026:315;;;;:::o;59968:116::-;60028:13;60061:15;60054:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59968:116;:::o;1166:723::-;1222:13;1452:1;1443:5;:10;1439:53;;1470:10;;;;;;;;;;;;;;;;;;;;;1439:53;1502:12;1517:5;1502:20;;1533:14;1558:78;1573:1;1565:4;:9;1558:78;;1591:8;;;;;:::i;:::-;;;;1622:2;1614:10;;;;;:::i;:::-;;;1558:78;;;1646:19;1678:6;1668:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1646:39;;1696:154;1712:1;1703:5;:10;1696:154;;1740:1;1730:11;;;;;:::i;:::-;;;1807:2;1799:5;:10;;;;:::i;:::-;1786:2;:24;;;;:::i;:::-;1773:39;;1756:6;1763;1756:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1836:2;1827:11;;;;;:::i;:::-;;;1696:154;;;1874:6;1860:21;;;;;1166:723;;;;:::o;55538:279::-;55666:7;55687:17;55706:18;55728:25;55739:4;55745:1;55748;55751;55728:10;:25::i;:::-;55686:67;;;;55764:18;55776:5;55764:11;:18::i;:::-;55800:9;55793:16;;;;55538:279;;;;;;:::o;20895:305::-;20997:4;21049:25;21034:40;;;:11;:40;;;;:105;;;;21106:33;21091:48;;;:11;:48;;;;21034:105;:158;;;;21156:36;21180:11;21156:23;:36::i;:::-;21034:158;21014:178;;20895:305;;;:::o;65241:181::-;65369:45;65396:4;65402:2;65406:7;65369:26;:45::i;:::-;65241:181;;;:::o;33878:125::-;;;;:::o;27975:321::-;28105:18;28111:2;28115:7;28105:5;:18::i;:::-;28156:54;28187:1;28191:2;28195:7;28204:5;28156:22;:54::i;:::-;28134:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27975:321;;;:::o;31996:799::-;32151:4;32172:15;:2;:13;;;:15::i;:::-;32168:620;;;32224:2;32208:36;;;32245:12;:10;:12::i;:::-;32259:4;32265:7;32274:5;32208:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32467:1;32450:6;:13;:18;32446:272;;32493:60;;;;;;;;;;:::i;:::-;;;;;;;;32446:272;32668:6;32662:13;32653:6;32649:2;32645:15;32638:38;32204:529;32341:41;;;32331:51;;;:6;:51;;;;32324:58;;;;;32168:620;32772:4;32765:11;;31996:799;;;;;;;:::o;53767:1632::-;53898:7;53907:12;54832:66;54827:1;54819:10;;:79;54815:163;;;54931:1;54935:30;54915:51;;;;;;54815:163;54997:2;54992:1;:7;;;;:18;;;;;55008:2;55003:1;:7;;;;54992:18;54988:102;;;55043:1;55047:30;55027:51;;;;;;54988:102;55187:14;55204:24;55214:4;55220:1;55223;55226;55204:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55187:41;;55261:1;55243:20;;:6;:20;;;55239:103;;55296:1;55300:29;55280:50;;;;;;;55239:103;55362:6;55370:20;55354:37;;;;;53767:1632;;;;;;;;:::o;48476:643::-;48554:20;48545:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;48541:571;48591:7;48541:571;48652:29;48643:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;48639:473;;48698:34;;;;;;;;;;:::i;:::-;;;;;;;;48639:473;48763:35;48754:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;48750:362;;48815:41;;;;;;;;;;:::i;:::-;;;;;;;;48750:362;48887:30;48878:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;48874:238;;48934:44;;;;;;;;;;:::i;:::-;;;;;;;;48874:238;49009:30;49000:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;48996:116;;49056:44;;;;;;;;;;:::i;:::-;;;;;;;;48996:116;48476:643;;:::o;19502:157::-;19587:4;19626:25;19611:40;;;:11;:40;;;;19604:47;;19502:157;;;:::o;37570:589::-;37714:45;37741:4;37747:2;37751:7;37714:26;:45::i;:::-;37792:1;37776:18;;:4;:18;;;37772:187;;37811:40;37843:7;37811:31;:40::i;:::-;37772:187;;;37881:2;37873:10;;:4;:10;;;37869:90;;37900:47;37933:4;37939:7;37900:32;:47::i;:::-;37869:90;37772:187;37987:1;37973:16;;:2;:16;;;37969:183;;38006:45;38043:7;38006:36;:45::i;:::-;37969:183;;;38079:4;38073:10;;:2;:10;;;38069:83;;38100:40;38128:2;38132:7;38100:27;:40::i;:::-;38069:83;37969:183;37570:589;;;:::o;28632:439::-;28726:1;28712:16;;:2;:16;;;28704:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:16;28793:7;28785;:16::i;:::-;28784:17;28776:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28847:45;28876:1;28880:2;28884:7;28847:20;:45::i;:::-;28922:1;28905:9;:13;28915:2;28905:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28953:2;28934:7;:16;28942:7;28934:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28998:7;28994:2;28973:33;;28990:1;28973:33;;;;;;;;;;;;29019:44;29047:1;29051:2;29055:7;29019:19;:44::i;:::-;28632:439;;:::o;11451:326::-;11511:4;11768:1;11746:7;:19;;;:23;11739:30;;11451:326;;;:::o;33367:126::-;;;;:::o;38882:164::-;38986:10;:17;;;;38959:15;:24;38975:7;38959:24;;;;;;;;;;;:44;;;;39014:10;39030:7;39014:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38882:164;:::o;39673:988::-;39939:22;39989:1;39964:22;39981:4;39964:16;:22::i;:::-;:26;;;;:::i;:::-;39939:51;;40001:18;40022:17;:26;40040:7;40022:26;;;;;;;;;;;;40001:47;;40169:14;40155:10;:28;40151:328;;40200:19;40222:12;:18;40235:4;40222:18;;;;;;;;;;;;;;;:34;40241:14;40222:34;;;;;;;;;;;;40200:56;;40306:11;40273:12;:18;40286:4;40273:18;;;;;;;;;;;;;;;:30;40292:10;40273:30;;;;;;;;;;;:44;;;;40423:10;40390:17;:30;40408:11;40390:30;;;;;;;;;;;:43;;;;40185:294;40151:328;40575:17;:26;40593:7;40575:26;;;;;;;;;;;40568:33;;;40619:12;:18;40632:4;40619:18;;;;;;;;;;;;;;;:34;40638:14;40619:34;;;;;;;;;;;40612:41;;;39754:907;;39673:988;;:::o;40956:1079::-;41209:22;41254:1;41234:10;:17;;;;:21;;;;:::i;:::-;41209:46;;41266:18;41287:15;:24;41303:7;41287:24;;;;;;;;;;;;41266:45;;41638:19;41660:10;41671:14;41660:26;;;;;;;;:::i;:::-;;;;;;;;;;41638:48;;41724:11;41699:10;41710;41699:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41835:10;41804:15;:28;41820:11;41804:28;;;;;;;;;;;:41;;;;41976:15;:24;41992:7;41976:24;;;;;;;;;;;41969:31;;;42011:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41027:1008;;;40956:1079;:::o;38460:221::-;38545:14;38562:20;38579:2;38562:16;:20::i;:::-;38545:37;;38620:7;38593:12;:16;38606:2;38593:16;;;;;;;;;;;;;;;:24;38610:6;38593:24;;;;;;;;;;;:34;;;;38667:6;38638:17;:26;38656:7;38638:26;;;;;;;;;;;:35;;;;38534:147;38460:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:116::-;5360:21;5375:5;5360:21;:::i;:::-;5353:5;5350:32;5340:60;;5396:1;5393;5386:12;5340:60;5290:116;:::o;5412:133::-;5455:5;5493:6;5480:20;5471:29;;5509:30;5533:5;5509:30;:::i;:::-;5412:133;;;;:::o;5551:323::-;5607:6;5656:2;5644:9;5635:7;5631:23;5627:32;5624:119;;;5662:79;;:::i;:::-;5624:119;5782:1;5807:50;5849:7;5840:6;5829:9;5825:22;5807:50;:::i;:::-;5797:60;;5753:114;5551:323;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:474::-;6573:6;6581;6630:2;6618:9;6609:7;6605:23;6601:32;6598:119;;;6636:79;;:::i;:::-;6598:119;6756:1;6781:53;6826:7;6817:6;6806:9;6802:22;6781:53;:::i;:::-;6771:63;;6727:117;6883:2;6909:53;6954:7;6945:6;6934:9;6930:22;6909:53;:::i;:::-;6899:63;;6854:118;6505:474;;;;;:::o;6985:332::-;7106:4;7144:2;7133:9;7129:18;7121:26;;7157:71;7225:1;7214:9;7210:17;7201:6;7157:71;:::i;:::-;7238:72;7306:2;7295:9;7291:18;7282:6;7238:72;:::i;:::-;6985:332;;;;;:::o;7323:329::-;7382:6;7431:2;7419:9;7410:7;7406:23;7402:32;7399:119;;;7437:79;;:::i;:::-;7399:119;7557:1;7582:53;7627:7;7618:6;7607:9;7603:22;7582:53;:::i;:::-;7572:63;;7528:117;7323:329;;;;:::o;7658:117::-;7767:1;7764;7757:12;7781:117;7890:1;7887;7880:12;7904:180;7952:77;7949:1;7942:88;8049:4;8046:1;8039:15;8073:4;8070:1;8063:15;8090:281;8173:27;8195:4;8173:27;:::i;:::-;8165:6;8161:40;8303:6;8291:10;8288:22;8267:18;8255:10;8252:34;8249:62;8246:88;;;8314:18;;:::i;:::-;8246:88;8354:10;8350:2;8343:22;8133:238;8090:281;;:::o;8377:129::-;8411:6;8438:20;;:::i;:::-;8428:30;;8467:33;8495:4;8487:6;8467:33;:::i;:::-;8377:129;;;:::o;8512:308::-;8574:4;8664:18;8656:6;8653:30;8650:56;;;8686:18;;:::i;:::-;8650:56;8724:29;8746:6;8724:29;:::i;:::-;8716:37;;8808:4;8802;8798:15;8790:23;;8512:308;;;:::o;8826:154::-;8910:6;8905:3;8900;8887:30;8972:1;8963:6;8958:3;8954:16;8947:27;8826:154;;;:::o;8986:412::-;9064:5;9089:66;9105:49;9147:6;9105:49;:::i;:::-;9089:66;:::i;:::-;9080:75;;9178:6;9171:5;9164:21;9216:4;9209:5;9205:16;9254:3;9245:6;9240:3;9236:16;9233:25;9230:112;;;9261:79;;:::i;:::-;9230:112;9351:41;9385:6;9380:3;9375;9351:41;:::i;:::-;9070:328;8986:412;;;;;:::o;9418:340::-;9474:5;9523:3;9516:4;9508:6;9504:17;9500:27;9490:122;;9531:79;;:::i;:::-;9490:122;9648:6;9635:20;9673:79;9748:3;9740:6;9733:4;9725:6;9721:17;9673:79;:::i;:::-;9664:88;;9480:278;9418:340;;;;:::o;9764:509::-;9833:6;9882:2;9870:9;9861:7;9857:23;9853:32;9850:119;;;9888:79;;:::i;:::-;9850:119;10036:1;10025:9;10021:17;10008:31;10066:18;10058:6;10055:30;10052:117;;;10088:79;;:::i;:::-;10052:117;10193:63;10248:7;10239:6;10228:9;10224:22;10193:63;:::i;:::-;10183:73;;9979:287;9764:509;;;;:::o;10279:117::-;10388:1;10385;10378:12;10402:117;10511:1;10508;10501:12;10542:568;10615:8;10625:6;10675:3;10668:4;10660:6;10656:17;10652:27;10642:122;;10683:79;;:::i;:::-;10642:122;10796:6;10783:20;10773:30;;10826:18;10818:6;10815:30;10812:117;;;10848:79;;:::i;:::-;10812:117;10962:4;10954:6;10950:17;10938:29;;11016:3;11008:4;11000:6;10996:17;10986:8;10982:32;10979:41;10976:128;;;11023:79;;:::i;:::-;10976:128;10542:568;;;;;:::o;11116:559::-;11202:6;11210;11259:2;11247:9;11238:7;11234:23;11230:32;11227:119;;;11265:79;;:::i;:::-;11227:119;11413:1;11402:9;11398:17;11385:31;11443:18;11435:6;11432:30;11429:117;;;11465:79;;:::i;:::-;11429:117;11578:80;11650:7;11641:6;11630:9;11626:22;11578:80;:::i;:::-;11560:98;;;;11356:312;11116:559;;;;;:::o;11681:468::-;11746:6;11754;11803:2;11791:9;11782:7;11778:23;11774:32;11771:119;;;11809:79;;:::i;:::-;11771:119;11929:1;11954:53;11999:7;11990:6;11979:9;11975:22;11954:53;:::i;:::-;11944:63;;11900:117;12056:2;12082:50;12124:7;12115:6;12104:9;12100:22;12082:50;:::i;:::-;12072:60;;12027:115;11681:468;;;;;:::o;12155:307::-;12216:4;12306:18;12298:6;12295:30;12292:56;;;12328:18;;:::i;:::-;12292:56;12366:29;12388:6;12366:29;:::i;:::-;12358:37;;12450:4;12444;12440:15;12432:23;;12155:307;;;:::o;12468:410::-;12545:5;12570:65;12586:48;12627:6;12586:48;:::i;:::-;12570:65;:::i;:::-;12561:74;;12658:6;12651:5;12644:21;12696:4;12689:5;12685:16;12734:3;12725:6;12720:3;12716:16;12713:25;12710:112;;;12741:79;;:::i;:::-;12710:112;12831:41;12865:6;12860:3;12855;12831:41;:::i;:::-;12551:327;12468:410;;;;;:::o;12897:338::-;12952:5;13001:3;12994:4;12986:6;12982:17;12978:27;12968:122;;13009:79;;:::i;:::-;12968:122;13126:6;13113:20;13151:78;13225:3;13217:6;13210:4;13202:6;13198:17;13151:78;:::i;:::-;13142:87;;12958:277;12897:338;;;;:::o;13241:943::-;13336:6;13344;13352;13360;13409:3;13397:9;13388:7;13384:23;13380:33;13377:120;;;13416:79;;:::i;:::-;13377:120;13536:1;13561:53;13606:7;13597:6;13586:9;13582:22;13561:53;:::i;:::-;13551:63;;13507:117;13663:2;13689:53;13734:7;13725:6;13714:9;13710:22;13689:53;:::i;:::-;13679:63;;13634:118;13791:2;13817:53;13862:7;13853:6;13842:9;13838:22;13817:53;:::i;:::-;13807:63;;13762:118;13947:2;13936:9;13932:18;13919:32;13978:18;13970:6;13967:30;13964:117;;;14000:79;;:::i;:::-;13964:117;14105:62;14159:7;14150:6;14139:9;14135:22;14105:62;:::i;:::-;14095:72;;13890:287;13241:943;;;;;;;:::o;14190:474::-;14258:6;14266;14315:2;14303:9;14294:7;14290:23;14286:32;14283:119;;;14321:79;;:::i;:::-;14283:119;14441:1;14466:53;14511:7;14502:6;14491:9;14487:22;14466:53;:::i;:::-;14456:63;;14412:117;14568:2;14594:53;14639:7;14630:6;14619:9;14615:22;14594:53;:::i;:::-;14584:63;;14539:118;14190:474;;;;;:::o;14670:118::-;14707:7;14747:34;14740:5;14736:46;14725:57;;14670:118;;;:::o;14794:::-;14881:24;14899:5;14881:24;:::i;:::-;14876:3;14869:37;14794:118;;:::o;14918:222::-;15011:4;15049:2;15038:9;15034:18;15026:26;;15062:71;15130:1;15119:9;15115:17;15106:6;15062:71;:::i;:::-;14918:222;;;;:::o;15146:122::-;15219:24;15237:5;15219:24;:::i;:::-;15212:5;15209:35;15199:63;;15258:1;15255;15248:12;15199:63;15146:122;:::o;15274:139::-;15320:5;15358:6;15345:20;15336:29;;15374:33;15401:5;15374:33;:::i;:::-;15274:139;;;;:::o;15419:474::-;15487:6;15495;15544:2;15532:9;15523:7;15519:23;15515:32;15512:119;;;15550:79;;:::i;:::-;15512:119;15670:1;15695:53;15740:7;15731:6;15720:9;15716:22;15695:53;:::i;:::-;15685:63;;15641:117;15797:2;15823:53;15868:7;15859:6;15848:9;15844:22;15823:53;:::i;:::-;15813:63;;15768:118;15419:474;;;;;:::o;15899:117::-;16008:1;16005;15998:12;16145:150;16182:7;16222:66;16215:5;16211:78;16200:89;;16145:150;;;:::o;16301:122::-;16374:24;16392:5;16374:24;:::i;:::-;16367:5;16364:35;16354:63;;16413:1;16410;16403:12;16354:63;16301:122;:::o;16429:139::-;16475:5;16513:6;16500:20;16491:29;;16529:33;16556:5;16529:33;:::i;:::-;16429:139;;;;:::o;16574:93::-;16610:7;16650:10;16643:5;16639:22;16628:33;;16574:93;;;:::o;16673:120::-;16745:23;16762:5;16745:23;:::i;:::-;16738:5;16735:34;16725:62;;16783:1;16780;16773:12;16725:62;16673:120;:::o;16799:137::-;16844:5;16882:6;16869:20;16860:29;;16898:32;16924:5;16898:32;:::i;:::-;16799:137;;;;:::o;16942:77::-;16979:7;17008:5;16997:16;;16942:77;;;:::o;17025:122::-;17098:24;17116:5;17098:24;:::i;:::-;17091:5;17088:35;17078:63;;17137:1;17134;17127:12;17078:63;17025:122;:::o;17153:139::-;17199:5;17237:6;17224:20;17215:29;;17253:33;17280:5;17253:33;:::i;:::-;17153:139;;;;:::o;17298:86::-;17333:7;17373:4;17366:5;17362:16;17351:27;;17298:86;;;:::o;17390:118::-;17461:22;17477:5;17461:22;:::i;:::-;17454:5;17451:33;17441:61;;17498:1;17495;17488:12;17441:61;17390:118;:::o;17514:135::-;17558:5;17596:6;17583:20;17574:29;;17612:31;17637:5;17612:31;:::i;:::-;17514:135;;;;:::o;17692:726::-;17768:5;17812:4;17800:9;17795:3;17791:19;17787:30;17784:117;;;17820:79;;:::i;:::-;17784:117;17919:21;17935:4;17919:21;:::i;:::-;17910:30;;17996:1;18036:49;18081:3;18072:6;18061:9;18057:22;18036:49;:::i;:::-;18029:4;18022:5;18018:16;18011:75;17950:147;18153:2;18194:49;18239:3;18230:6;18219:9;18215:22;18194:49;:::i;:::-;18187:4;18180:5;18176:16;18169:75;18107:148;18311:2;18352:47;18395:3;18386:6;18375:9;18371:22;18352:47;:::i;:::-;18345:4;18338:5;18334:16;18327:73;18265:146;17692:726;;;;:::o;18458:1284::-;18531:5;18575:6;18563:9;18558:3;18554:19;18550:32;18547:119;;;18585:79;;:::i;:::-;18547:119;18684:21;18700:4;18684:21;:::i;:::-;18675:30;;18768:1;18808:49;18853:3;18844:6;18833:9;18829:22;18808:49;:::i;:::-;18801:4;18794:5;18790:16;18783:75;18715:154;18933:2;18974:49;19019:3;19010:6;18999:9;18995:22;18974:49;:::i;:::-;18967:4;18960:5;18956:16;18949:75;18879:156;19105:2;19146:49;19191:3;19182:6;19171:9;19167:22;19146:49;:::i;:::-;19139:4;19132:5;19128:16;19121:75;19045:162;19274:2;19315:49;19360:3;19351:6;19340:9;19336:22;19315:49;:::i;:::-;19308:4;19301:5;19297:16;19290:75;19217:159;19439:3;19481:48;19525:3;19516:6;19505:9;19501:22;19481:48;:::i;:::-;19474:4;19467:5;19463:16;19456:74;19386:155;19605:3;19647:76;19719:3;19710:6;19699:9;19695:22;19647:76;:::i;:::-;19640:4;19633:5;19629:16;19622:102;19551:184;18458:1284;;;;:::o;19748:378::-;19831:6;19880:3;19868:9;19859:7;19855:23;19851:33;19848:120;;;19887:79;;:::i;:::-;19848:120;20007:1;20032:77;20101:7;20092:6;20081:9;20077:22;20032:77;:::i;:::-;20022:87;;19978:141;19748:378;;;;:::o;20132:180::-;20180:77;20177:1;20170:88;20277:4;20274:1;20267:15;20301:4;20298:1;20291:15;20318:320;20362:6;20399:1;20393:4;20389:12;20379:22;;20446:1;20440:4;20436:12;20467:18;20457:81;;20523:4;20515:6;20511:17;20501:27;;20457:81;20585:2;20577:6;20574:14;20554:18;20551:38;20548:84;;20604:18;;:::i;:::-;20548:84;20369:269;20318:320;;;:::o;20644:231::-;20784:34;20780:1;20772:6;20768:14;20761:58;20853:14;20848:2;20840:6;20836:15;20829:39;20644:231;:::o;20881:366::-;21023:3;21044:67;21108:2;21103:3;21044:67;:::i;:::-;21037:74;;21120:93;21209:3;21120:93;:::i;:::-;21238:2;21233:3;21229:12;21222:19;;20881:366;;;:::o;21253:419::-;21419:4;21457:2;21446:9;21442:18;21434:26;;21506:9;21500:4;21496:20;21492:1;21481:9;21477:17;21470:47;21534:131;21660:4;21534:131;:::i;:::-;21526:139;;21253:419;;;:::o;21678:220::-;21818:34;21814:1;21806:6;21802:14;21795:58;21887:3;21882:2;21874:6;21870:15;21863:28;21678:220;:::o;21904:366::-;22046:3;22067:67;22131:2;22126:3;22067:67;:::i;:::-;22060:74;;22143:93;22232:3;22143:93;:::i;:::-;22261:2;22256:3;22252:12;22245:19;;21904:366;;;:::o;22276:419::-;22442:4;22480:2;22469:9;22465:18;22457:26;;22529:9;22523:4;22519:20;22515:1;22504:9;22500:17;22493:47;22557:131;22683:4;22557:131;:::i;:::-;22549:139;;22276:419;;;:::o;22701:243::-;22841:34;22837:1;22829:6;22825:14;22818:58;22910:26;22905:2;22897:6;22893:15;22886:51;22701:243;:::o;22950:366::-;23092:3;23113:67;23177:2;23172:3;23113:67;:::i;:::-;23106:74;;23189:93;23278:3;23189:93;:::i;:::-;23307:2;23302:3;23298:12;23291:19;;22950:366;;;:::o;23322:419::-;23488:4;23526:2;23515:9;23511:18;23503:26;;23575:9;23569:4;23565:20;23561:1;23550:9;23546:17;23539:47;23603:131;23729:4;23603:131;:::i;:::-;23595:139;;23322:419;;;:::o;23747:182::-;23887:34;23883:1;23875:6;23871:14;23864:58;23747:182;:::o;23935:366::-;24077:3;24098:67;24162:2;24157:3;24098:67;:::i;:::-;24091:74;;24174:93;24263:3;24174:93;:::i;:::-;24292:2;24287:3;24283:12;24276:19;;23935:366;;;:::o;24307:419::-;24473:4;24511:2;24500:9;24496:18;24488:26;;24560:9;24554:4;24550:20;24546:1;24535:9;24531:17;24524:47;24588:131;24714:4;24588:131;:::i;:::-;24580:139;;24307:419;;;:::o;24732:236::-;24872:34;24868:1;24860:6;24856:14;24849:58;24941:19;24936:2;24928:6;24924:15;24917:44;24732:236;:::o;24974:366::-;25116:3;25137:67;25201:2;25196:3;25137:67;:::i;:::-;25130:74;;25213:93;25302:3;25213:93;:::i;:::-;25331:2;25326:3;25322:12;25315:19;;24974:366;;;:::o;25346:419::-;25512:4;25550:2;25539:9;25535:18;25527:26;;25599:9;25593:4;25589:20;25585:1;25574:9;25570:17;25563:47;25627:131;25753:4;25627:131;:::i;:::-;25619:139;;25346:419;;;:::o;25771:225::-;25911:34;25907:1;25899:6;25895:14;25888:58;25980:8;25975:2;25967:6;25963:15;25956:33;25771:225;:::o;26002:366::-;26144:3;26165:67;26229:2;26224:3;26165:67;:::i;:::-;26158:74;;26241:93;26330:3;26241:93;:::i;:::-;26359:2;26354:3;26350:12;26343:19;;26002:366;;;:::o;26374:419::-;26540:4;26578:2;26567:9;26563:18;26555:26;;26627:9;26621:4;26617:20;26613:1;26602:9;26598:17;26591:47;26655:131;26781:4;26655:131;:::i;:::-;26647:139;;26374:419;;;:::o;26799:180::-;26847:77;26844:1;26837:88;26944:4;26941:1;26934:15;26968:4;26965:1;26958:15;26985:348;27025:7;27048:20;27066:1;27048:20;:::i;:::-;27043:25;;27082:20;27100:1;27082:20;:::i;:::-;27077:25;;27270:1;27202:66;27198:74;27195:1;27192:81;27187:1;27180:9;27173:17;27169:105;27166:131;;;27277:18;;:::i;:::-;27166:131;27325:1;27322;27318:9;27307:20;;26985:348;;;;:::o;27339:180::-;27387:77;27384:1;27377:88;27484:4;27481:1;27474:15;27508:4;27505:1;27498:15;27525:185;27565:1;27582:20;27600:1;27582:20;:::i;:::-;27577:25;;27616:20;27634:1;27616:20;:::i;:::-;27611:25;;27655:1;27645:35;;27660:18;;:::i;:::-;27645:35;27702:1;27699;27695:9;27690:14;;27525:185;;;;:::o;27716:230::-;27856:34;27852:1;27844:6;27840:14;27833:58;27925:13;27920:2;27912:6;27908:15;27901:38;27716:230;:::o;27952:366::-;28094:3;28115:67;28179:2;28174:3;28115:67;:::i;:::-;28108:74;;28191:93;28280:3;28191:93;:::i;:::-;28309:2;28304:3;28300:12;28293:19;;27952:366;;;:::o;28324:419::-;28490:4;28528:2;28517:9;28513:18;28505:26;;28577:9;28571:4;28567:20;28563:1;28552:9;28548:17;28541:47;28605:131;28731:4;28605:131;:::i;:::-;28597:139;;28324:419;;;:::o;28749:147::-;28850:11;28887:3;28872:18;;28749:147;;;;:::o;28902:114::-;;:::o;29022:398::-;29181:3;29202:83;29283:1;29278:3;29202:83;:::i;:::-;29195:90;;29294:93;29383:3;29294:93;:::i;:::-;29412:1;29407:3;29403:11;29396:18;;29022:398;;;:::o;29426:379::-;29610:3;29632:147;29775:3;29632:147;:::i;:::-;29625:154;;29796:3;29789:10;;29426:379;;;:::o;29811:166::-;29951:18;29947:1;29939:6;29935:14;29928:42;29811:166;:::o;29983:366::-;30125:3;30146:67;30210:2;30205:3;30146:67;:::i;:::-;30139:74;;30222:93;30311:3;30222:93;:::i;:::-;30340:2;30335:3;30331:12;30324:19;;29983:366;;;:::o;30355:419::-;30521:4;30559:2;30548:9;30544:18;30536:26;;30608:9;30602:4;30598:20;30594:1;30583:9;30579:17;30572:47;30636:131;30762:4;30636:131;:::i;:::-;30628:139;;30355:419;;;:::o;30780:231::-;30920:34;30916:1;30908:6;30904:14;30897:58;30989:14;30984:2;30976:6;30972:15;30965:39;30780:231;:::o;31017:366::-;31159:3;31180:67;31244:2;31239:3;31180:67;:::i;:::-;31173:74;;31256:93;31345:3;31256:93;:::i;:::-;31374:2;31369:3;31365:12;31358:19;;31017:366;;;:::o;31389:419::-;31555:4;31593:2;31582:9;31578:18;31570:26;;31642:9;31636:4;31632:20;31628:1;31617:9;31613:17;31606:47;31670:131;31796:4;31670:131;:::i;:::-;31662:139;;31389:419;;;:::o;31814:180::-;31862:77;31859:1;31852:88;31959:4;31956:1;31949:15;31983:4;31980:1;31973:15;32000:228;32140:34;32136:1;32128:6;32124:14;32117:58;32209:11;32204:2;32196:6;32192:15;32185:36;32000:228;:::o;32234:366::-;32376:3;32397:67;32461:2;32456:3;32397:67;:::i;:::-;32390:74;;32473:93;32562:3;32473:93;:::i;:::-;32591:2;32586:3;32582:12;32575:19;;32234:366;;;:::o;32606:419::-;32772:4;32810:2;32799:9;32795:18;32787:26;;32859:9;32853:4;32849:20;32845:1;32834:9;32830:17;32823:47;32887:131;33013:4;32887:131;:::i;:::-;32879:139;;32606:419;;;:::o;33031:229::-;33171:34;33167:1;33159:6;33155:14;33148:58;33240:12;33235:2;33227:6;33223:15;33216:37;33031:229;:::o;33266:366::-;33408:3;33429:67;33493:2;33488:3;33429:67;:::i;:::-;33422:74;;33505:93;33594:3;33505:93;:::i;:::-;33623:2;33618:3;33614:12;33607:19;;33266:366;;;:::o;33638:419::-;33804:4;33842:2;33831:9;33827:18;33819:26;;33891:9;33885:4;33881:20;33877:1;33866:9;33862:17;33855:47;33919:131;34045:4;33919:131;:::i;:::-;33911:139;;33638:419;;;:::o;34063:305::-;34103:3;34122:20;34140:1;34122:20;:::i;:::-;34117:25;;34156:20;34174:1;34156:20;:::i;:::-;34151:25;;34310:1;34242:66;34238:74;34235:1;34232:81;34229:107;;;34316:18;;:::i;:::-;34229:107;34360:1;34357;34353:9;34346:16;;34063:305;;;;:::o;34374:169::-;34514:21;34510:1;34502:6;34498:14;34491:45;34374:169;:::o;34549:366::-;34691:3;34712:67;34776:2;34771:3;34712:67;:::i;:::-;34705:74;;34788:93;34877:3;34788:93;:::i;:::-;34906:2;34901:3;34897:12;34890:19;;34549:366;;;:::o;34921:419::-;35087:4;35125:2;35114:9;35110:18;35102:26;;35174:9;35168:4;35164:20;35160:1;35149:9;35145:17;35138:47;35202:131;35328:4;35202:131;:::i;:::-;35194:139;;34921:419;;;:::o;35346:233::-;35385:3;35408:24;35426:5;35408:24;:::i;:::-;35399:33;;35454:66;35447:5;35444:77;35441:103;;35524:18;;:::i;:::-;35441:103;35571:1;35564:5;35560:13;35553:20;;35346:233;;;:::o;35585:234::-;35725:34;35721:1;35713:6;35709:14;35702:58;35794:17;35789:2;35781:6;35777:15;35770:42;35585:234;:::o;35825:366::-;35967:3;35988:67;36052:2;36047:3;35988:67;:::i;:::-;35981:74;;36064:93;36153:3;36064:93;:::i;:::-;36182:2;36177:3;36173:12;36166:19;;35825:366;;;:::o;36197:419::-;36363:4;36401:2;36390:9;36386:18;36378:26;;36450:9;36444:4;36440:20;36436:1;36425:9;36421:17;36414:47;36478:131;36604:4;36478:131;:::i;:::-;36470:139;;36197:419;;;:::o;36622:148::-;36724:11;36761:3;36746:18;;36622:148;;;;:::o;36776:377::-;36882:3;36910:39;36943:5;36910:39;:::i;:::-;36965:89;37047:6;37042:3;36965:89;:::i;:::-;36958:96;;37063:52;37108:6;37103:3;37096:4;37089:5;37085:16;37063:52;:::i;:::-;37140:6;37135:3;37131:16;37124:23;;36886:267;36776:377;;;;:::o;37159:435::-;37339:3;37361:95;37452:3;37443:6;37361:95;:::i;:::-;37354:102;;37473:95;37564:3;37555:6;37473:95;:::i;:::-;37466:102;;37585:3;37578:10;;37159:435;;;;;:::o;37600:176::-;37740:28;37736:1;37728:6;37724:14;37717:52;37600:176;:::o;37782:366::-;37924:3;37945:67;38009:2;38004:3;37945:67;:::i;:::-;37938:74;;38021:93;38110:3;38021:93;:::i;:::-;38139:2;38134:3;38130:12;38123:19;;37782:366;;;:::o;38154:419::-;38320:4;38358:2;38347:9;38343:18;38335:26;;38407:9;38401:4;38397:20;38393:1;38382:9;38378:17;38371:47;38435:131;38561:4;38435:131;:::i;:::-;38427:139;;38154:419;;;:::o;38579:225::-;38719:34;38715:1;38707:6;38703:14;38696:58;38788:8;38783:2;38775:6;38771:15;38764:33;38579:225;:::o;38810:366::-;38952:3;38973:67;39037:2;39032:3;38973:67;:::i;:::-;38966:74;;39049:93;39138:3;39049:93;:::i;:::-;39167:2;39162:3;39158:12;39151:19;;38810:366;;;:::o;39182:419::-;39348:4;39386:2;39375:9;39371:18;39363:26;;39435:9;39429:4;39425:20;39421:1;39410:9;39406:17;39399:47;39463:131;39589:4;39463:131;:::i;:::-;39455:139;;39182:419;;;:::o;39607:174::-;39747:26;39743:1;39735:6;39731:14;39724:50;39607:174;:::o;39787:366::-;39929:3;39950:67;40014:2;40009:3;39950:67;:::i;:::-;39943:74;;40026:93;40115:3;40026:93;:::i;:::-;40144:2;40139:3;40135:12;40128:19;;39787:366;;;:::o;40159:419::-;40325:4;40363:2;40352:9;40348:18;40340:26;;40412:9;40406:4;40402:20;40398:1;40387:9;40383:17;40376:47;40440:131;40566:4;40440:131;:::i;:::-;40432:139;;40159:419;;;:::o;40584:169::-;40724:21;40720:1;40712:6;40708:14;40701:45;40584:169;:::o;40759:366::-;40901:3;40922:67;40986:2;40981:3;40922:67;:::i;:::-;40915:74;;40998:93;41087:3;40998:93;:::i;:::-;41116:2;41111:3;41107:12;41100:19;;40759:366;;;:::o;41131:419::-;41297:4;41335:2;41324:9;41320:18;41312:26;;41384:9;41378:4;41374:20;41370:1;41359:9;41355:17;41348:47;41412:131;41538:4;41412:131;:::i;:::-;41404:139;;41131:419;;;:::o;41556:170::-;41696:22;41692:1;41684:6;41680:14;41673:46;41556:170;:::o;41732:366::-;41874:3;41895:67;41959:2;41954:3;41895:67;:::i;:::-;41888:74;;41971:93;42060:3;41971:93;:::i;:::-;42089:2;42084:3;42080:12;42073:19;;41732:366;;;:::o;42104:419::-;42270:4;42308:2;42297:9;42293:18;42285:26;;42357:9;42351:4;42347:20;42343:1;42332:9;42328:17;42321:47;42385:131;42511:4;42385:131;:::i;:::-;42377:139;;42104:419;;;:::o;42529:180::-;42669:32;42665:1;42657:6;42653:14;42646:56;42529:180;:::o;42715:366::-;42857:3;42878:67;42942:2;42937:3;42878:67;:::i;:::-;42871:74;;42954:93;43043:3;42954:93;:::i;:::-;43072:2;43067:3;43063:12;43056:19;;42715:366;;;:::o;43087:419::-;43253:4;43291:2;43280:9;43276:18;43268:26;;43340:9;43334:4;43330:20;43326:1;43315:9;43311:17;43304:47;43368:131;43494:4;43368:131;:::i;:::-;43360:139;;43087:419;;;:::o;43512:172::-;43652:24;43648:1;43640:6;43636:14;43629:48;43512:172;:::o;43690:366::-;43832:3;43853:67;43917:2;43912:3;43853:67;:::i;:::-;43846:74;;43929:93;44018:3;43929:93;:::i;:::-;44047:2;44042:3;44038:12;44031:19;;43690:366;;;:::o;44062:419::-;44228:4;44266:2;44255:9;44251:18;44243:26;;44315:9;44309:4;44305:20;44301:1;44290:9;44286:17;44279:47;44343:131;44469:4;44343:131;:::i;:::-;44335:139;;44062:419;;;:::o;44487:169::-;44627:21;44623:1;44615:6;44611:14;44604:45;44487:169;:::o;44662:366::-;44804:3;44825:67;44889:2;44884:3;44825:67;:::i;:::-;44818:74;;44901:93;44990:3;44901:93;:::i;:::-;45019:2;45014:3;45010:12;45003:19;;44662:366;;;:::o;45034:419::-;45200:4;45238:2;45227:9;45223:18;45215:26;;45287:9;45281:4;45277:20;45273:1;45262:9;45258:17;45251:47;45315:131;45441:4;45315:131;:::i;:::-;45307:139;;45034:419;;;:::o;45459:167::-;45599:19;45595:1;45587:6;45583:14;45576:43;45459:167;:::o;45632:366::-;45774:3;45795:67;45859:2;45854:3;45795:67;:::i;:::-;45788:74;;45871:93;45960:3;45871:93;:::i;:::-;45989:2;45984:3;45980:12;45973:19;;45632:366;;;:::o;46004:419::-;46170:4;46208:2;46197:9;46193:18;46185:26;;46257:9;46251:4;46247:20;46243:1;46232:9;46228:17;46221:47;46285:131;46411:4;46285:131;:::i;:::-;46277:139;;46004:419;;;:::o;46429:118::-;46516:24;46534:5;46516:24;:::i;:::-;46511:3;46504:37;46429:118;;:::o;46553:115::-;46638:23;46655:5;46638:23;:::i;:::-;46633:3;46626:36;46553:115;;:::o;46674:660::-;46877:4;46915:3;46904:9;46900:19;46892:27;;46929:71;46997:1;46986:9;46982:17;46973:6;46929:71;:::i;:::-;47010:72;47078:2;47067:9;47063:18;47054:6;47010:72;:::i;:::-;47092;47160:2;47149:9;47145:18;47136:6;47092:72;:::i;:::-;47174;47242:2;47231:9;47227:18;47218:6;47174:72;:::i;:::-;47256:71;47322:3;47311:9;47307:19;47298:6;47256:71;:::i;:::-;46674:660;;;;;;;;:::o;47340:177::-;47480:29;47476:1;47468:6;47464:14;47457:53;47340:177;:::o;47523:366::-;47665:3;47686:67;47750:2;47745:3;47686:67;:::i;:::-;47679:74;;47762:93;47851:3;47762:93;:::i;:::-;47880:2;47875:3;47871:12;47864:19;;47523:366;;;:::o;47895:419::-;48061:4;48099:2;48088:9;48084:18;48076:26;;48148:9;48142:4;48138:20;48134:1;48123:9;48119:17;48112:47;48176:131;48302:4;48176:131;:::i;:::-;48168:139;;47895:419;;;:::o;48320:182::-;48460:34;48456:1;48448:6;48444:14;48437:58;48320:182;:::o;48508:366::-;48650:3;48671:67;48735:2;48730:3;48671:67;:::i;:::-;48664:74;;48747:93;48836:3;48747:93;:::i;:::-;48865:2;48860:3;48856:12;48849:19;;48508:366;;;:::o;48880:419::-;49046:4;49084:2;49073:9;49069:18;49061:26;;49133:9;49127:4;49123:20;49119:1;49108:9;49104:17;49097:47;49161:131;49287:4;49161:131;:::i;:::-;49153:139;;48880:419;;;:::o;49305:231::-;49445:34;49441:1;49433:6;49429:14;49422:58;49514:14;49509:2;49501:6;49497:15;49490:39;49305:231;:::o;49542:366::-;49684:3;49705:67;49769:2;49764:3;49705:67;:::i;:::-;49698:74;;49781:93;49870:3;49781:93;:::i;:::-;49899:2;49894:3;49890:12;49883:19;;49542:366;;;:::o;49914:419::-;50080:4;50118:2;50107:9;50103:18;50095:26;;50167:9;50161:4;50157:20;50153:1;50142:9;50138:17;50131:47;50195:131;50321:4;50195:131;:::i;:::-;50187:139;;49914:419;;;:::o;50339:224::-;50479:34;50475:1;50467:6;50463:14;50456:58;50548:7;50543:2;50535:6;50531:15;50524:32;50339:224;:::o;50569:366::-;50711:3;50732:67;50796:2;50791:3;50732:67;:::i;:::-;50725:74;;50808:93;50897:3;50808:93;:::i;:::-;50926:2;50921:3;50917:12;50910:19;;50569:366;;;:::o;50941:419::-;51107:4;51145:2;51134:9;51130:18;51122:26;;51194:9;51188:4;51184:20;51180:1;51169:9;51165:17;51158:47;51222:131;51348:4;51222:131;:::i;:::-;51214:139;;50941:419;;;:::o;51366:223::-;51506:34;51502:1;51494:6;51490:14;51483:58;51575:6;51570:2;51562:6;51558:15;51551:31;51366:223;:::o;51595:366::-;51737:3;51758:67;51822:2;51817:3;51758:67;:::i;:::-;51751:74;;51834:93;51923:3;51834:93;:::i;:::-;51952:2;51947:3;51943:12;51936:19;;51595:366;;;:::o;51967:419::-;52133:4;52171:2;52160:9;52156:18;52148:26;;52220:9;52214:4;52210:20;52206:1;52195:9;52191:17;52184:47;52248:131;52374:4;52248:131;:::i;:::-;52240:139;;51967:419;;;:::o;52392:191::-;52432:4;52452:20;52470:1;52452:20;:::i;:::-;52447:25;;52486:20;52504:1;52486:20;:::i;:::-;52481:25;;52525:1;52522;52519:8;52516:34;;;52530:18;;:::i;:::-;52516:34;52575:1;52572;52568:9;52560:17;;52392:191;;;;:::o;52589:175::-;52729:27;52725:1;52717:6;52713:14;52706:51;52589:175;:::o;52770:366::-;52912:3;52933:67;52997:2;52992:3;52933:67;:::i;:::-;52926:74;;53009:93;53098:3;53009:93;:::i;:::-;53127:2;53122:3;53118:12;53111:19;;52770:366;;;:::o;53142:419::-;53308:4;53346:2;53335:9;53331:18;53323:26;;53395:9;53389:4;53385:20;53381:1;53370:9;53366:17;53359:47;53423:131;53549:4;53423:131;:::i;:::-;53415:139;;53142:419;;;:::o;53567:237::-;53707:34;53703:1;53695:6;53691:14;53684:58;53776:20;53771:2;53763:6;53759:15;53752:45;53567:237;:::o;53810:366::-;53952:3;53973:67;54037:2;54032:3;53973:67;:::i;:::-;53966:74;;54049:93;54138:3;54049:93;:::i;:::-;54167:2;54162:3;54158:12;54151:19;;53810:366;;;:::o;54182:419::-;54348:4;54386:2;54375:9;54371:18;54363:26;;54435:9;54429:4;54425:20;54421:1;54410:9;54406:17;54399:47;54463:131;54589:4;54463:131;:::i;:::-;54455:139;;54182:419;;;:::o;54607:176::-;54639:1;54656:20;54674:1;54656:20;:::i;:::-;54651:25;;54690:20;54708:1;54690:20;:::i;:::-;54685:25;;54729:1;54719:35;;54734:18;;:::i;:::-;54719:35;54775:1;54772;54768:9;54763:14;;54607:176;;;;:::o;54789:98::-;54840:6;54874:5;54868:12;54858:22;;54789:98;;;:::o;54893:168::-;54976:11;55010:6;55005:3;54998:19;55050:4;55045:3;55041:14;55026:29;;54893:168;;;;:::o;55067:360::-;55153:3;55181:38;55213:5;55181:38;:::i;:::-;55235:70;55298:6;55293:3;55235:70;:::i;:::-;55228:77;;55314:52;55359:6;55354:3;55347:4;55340:5;55336:16;55314:52;:::i;:::-;55391:29;55413:6;55391:29;:::i;:::-;55386:3;55382:39;55375:46;;55157:270;55067:360;;;;:::o;55433:640::-;55628:4;55666:3;55655:9;55651:19;55643:27;;55680:71;55748:1;55737:9;55733:17;55724:6;55680:71;:::i;:::-;55761:72;55829:2;55818:9;55814:18;55805:6;55761:72;:::i;:::-;55843;55911:2;55900:9;55896:18;55887:6;55843:72;:::i;:::-;55962:9;55956:4;55952:20;55947:2;55936:9;55932:18;55925:48;55990:76;56061:4;56052:6;55990:76;:::i;:::-;55982:84;;55433:640;;;;;;;:::o;56079:141::-;56135:5;56166:6;56160:13;56151:22;;56182:32;56208:5;56182:32;:::i;:::-;56079:141;;;;:::o;56226:349::-;56295:6;56344:2;56332:9;56323:7;56319:23;56315:32;56312:119;;;56350:79;;:::i;:::-;56312:119;56470:1;56495:63;56550:7;56541:6;56530:9;56526:22;56495:63;:::i;:::-;56485:73;;56441:127;56226:349;;;;:::o;56581:118::-;56668:24;56686:5;56668:24;:::i;:::-;56663:3;56656:37;56581:118;;:::o;56705:112::-;56788:22;56804:5;56788:22;:::i;:::-;56783:3;56776:35;56705:112;;:::o;56823:545::-;56996:4;57034:3;57023:9;57019:19;57011:27;;57048:71;57116:1;57105:9;57101:17;57092:6;57048:71;:::i;:::-;57129:68;57193:2;57182:9;57178:18;57169:6;57129:68;:::i;:::-;57207:72;57275:2;57264:9;57260:18;57251:6;57207:72;:::i;:::-;57289;57357:2;57346:9;57342:18;57333:6;57289:72;:::i;:::-;56823:545;;;;;;;:::o;57374:180::-;57422:77;57419:1;57412:88;57519:4;57516:1;57509:15;57543:4;57540:1;57533:15;57560:174;57700:26;57696:1;57688:6;57684:14;57677:50;57560:174;:::o;57740:366::-;57882:3;57903:67;57967:2;57962:3;57903:67;:::i;:::-;57896:74;;57979:93;58068:3;57979:93;:::i;:::-;58097:2;58092:3;58088:12;58081:19;;57740:366;;;:::o;58112:419::-;58278:4;58316:2;58305:9;58301:18;58293:26;;58365:9;58359:4;58355:20;58351:1;58340:9;58336:17;58329:47;58393:131;58519:4;58393:131;:::i;:::-;58385:139;;58112:419;;;:::o;58537:181::-;58677:33;58673:1;58665:6;58661:14;58654:57;58537:181;:::o;58724:366::-;58866:3;58887:67;58951:2;58946:3;58887:67;:::i;:::-;58880:74;;58963:93;59052:3;58963:93;:::i;:::-;59081:2;59076:3;59072:12;59065:19;;58724:366;;;:::o;59096:419::-;59262:4;59300:2;59289:9;59285:18;59277:26;;59349:9;59343:4;59339:20;59335:1;59324:9;59320:17;59313:47;59377:131;59503:4;59377:131;:::i;:::-;59369:139;;59096:419;;;:::o;59521:221::-;59661:34;59657:1;59649:6;59645:14;59638:58;59730:4;59725:2;59717:6;59713:15;59706:29;59521:221;:::o;59748:366::-;59890:3;59911:67;59975:2;59970:3;59911:67;:::i;:::-;59904:74;;59987:93;60076:3;59987:93;:::i;:::-;60105:2;60100:3;60096:12;60089:19;;59748:366;;;:::o;60120:419::-;60286:4;60324:2;60313:9;60309:18;60301:26;;60373:9;60367:4;60363:20;60359:1;60348:9;60344:17;60337:47;60401:131;60527:4;60401:131;:::i;:::-;60393:139;;60120:419;;;:::o;60545:221::-;60685:34;60681:1;60673:6;60669:14;60662:58;60754:4;60749:2;60741:6;60737:15;60730:29;60545:221;:::o;60772:366::-;60914:3;60935:67;60999:2;60994:3;60935:67;:::i;:::-;60928:74;;61011:93;61100:3;61011:93;:::i;:::-;61129:2;61124:3;61120:12;61113:19;;60772:366;;;:::o;61144:419::-;61310:4;61348:2;61337:9;61333:18;61325:26;;61397:9;61391:4;61387:20;61383:1;61372:9;61368:17;61361:47;61425:131;61551:4;61425:131;:::i;:::-;61417:139;;61144:419;;;:::o;61569:182::-;61709:34;61705:1;61697:6;61693:14;61686:58;61569:182;:::o;61757:366::-;61899:3;61920:67;61984:2;61979:3;61920:67;:::i;:::-;61913:74;;61996:93;62085:3;61996:93;:::i;:::-;62114:2;62109:3;62105:12;62098:19;;61757:366;;;:::o;62129:419::-;62295:4;62333:2;62322:9;62318:18;62310:26;;62382:9;62376:4;62372:20;62368:1;62357:9;62353:17;62346:47;62410:131;62536:4;62410:131;:::i;:::-;62402:139;;62129:419;;;:::o;62554:178::-;62694:30;62690:1;62682:6;62678:14;62671:54;62554:178;:::o;62738:366::-;62880:3;62901:67;62965:2;62960:3;62901:67;:::i;:::-;62894:74;;62977:93;63066:3;62977:93;:::i;:::-;63095:2;63090:3;63086:12;63079:19;;62738:366;;;:::o;63110:419::-;63276:4;63314:2;63303:9;63299:18;63291:26;;63363:9;63357:4;63353:20;63349:1;63338:9;63334:17;63327:47;63391:131;63517:4;63391:131;:::i;:::-;63383:139;;63110:419;;;:::o;63535:180::-;63583:77;63580:1;63573:88;63680:4;63677:1;63670:15;63704:4;63701:1;63694:15

Swarm Source

ipfs://91a46e59dd66d0c5dd1b5fd5b264a7ccf73bd2fad67e816ba2de779d9e184fe4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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