ETH Price: $2,908.13 (-4.03%)
Gas: 1 Gwei

Token

Society of the Winegrower (SOTW)
 

Overview

Max Total Supply

999 SOTW

Holders

862

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SOTW
0xadf6c68725918fab2e384e16baf14f3dbb59258f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WineGrower

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-06
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @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) {
        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.
            /// @solidity memory-safe-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 {
            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));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/WineGrower.sol


pragma solidity ^0.8.17;






contract WineGrower is ERC721URIStorage, AccessControl  {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    // role allows to generate a signature to mint a NFT
    bytes32 public constant SIGNER_ROLE = keccak256("SIGNER_ROLE");
    // role allows to modify base URI (used during in the moment of minting) and url to any already minted NFT
    bytes32 public constant URLCHANGER_ROLE = keccak256("URLCHANGER_ROLE");

    // minted token ID (not a quantity) per address. User can mint and transafer NFT, this mapping stores the id of minted NFT
    mapping(address => uint256) private _mintedByAddress;

    // extra protection to control the usage of the same urls
    mapping (bytes32 => bool) private _usedMetadata;
    // allowed NFT for each address
    uint256 public constant maxSupply = 999;


    constructor() ERC721("Society of the Winegrower", "SOTW") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(SIGNER_ROLE, msg.sender);
        _grantRole(URLCHANGER_ROLE, msg.sender);
    }

    /**
     * @notice  Overrides metadata url for the certain tokenID. Allowed for user with a role 'URLCHANGER_ROLE'
     */
    function updateMetadata(uint256 _tokenId, string calldata _tokenURI) external onlyRole(URLCHANGER_ROLE) {
        _setTokenURI(_tokenId, _tokenURI);
    }

    /**
     * @notice  Overrides metadata url for the certain tokenID. Allowed if the user address is a part of signature
     */
    function updateMetadata_signature(uint256 _tokenId, string calldata _tokenURI, bytes memory _signature) external {
        // signature is made up : {msg.sender, tokenId, tokenURL}
        address recoveredSigner = _recoverSigner(keccak256(abi.encodePacked(msg.sender, _tokenId, _tokenURI)), _signature);
        // recovered signer should have the SIGNER_ROLE role
        require(recoveredSigner!=address(0) && hasRole(SIGNER_ROLE, recoveredSigner),"invalid signature");
        _setTokenURI(_tokenId, _tokenURI);
    }

    function _recoverSigner(bytes32 _messageHash, bytes memory _signature) private pure returns (address) {
        // reject if signature is invalid
        require(_signature.length == 65, "invalid signature length!");
        // append prefix, because on the backend libary appends it to generate a signature
        bytes32 ethSignedMessageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash));
        // split signature
        bytes32 r; bytes32 s; uint8 v;
        assembly {
            r := mload(add(_signature, 32))
            s := mload(add(_signature, 64))
            v := byte(0, mload(add(_signature, 96)))
        }

        return ecrecover(ethSignedMessageHash, v, r, s);
    }

    /**
     * @notice Mint of the NFT, private method. Method allows to assign the owner of the NFT
     */
    function _mintNFT(address _to, string calldata _tokenURI, bytes memory _signature) private {
        // reject if minting is for contract address
        require(_to.code.length == 0, "address is a contract");
        require(bytes(_tokenURI).length > 0, "empty token uri");
        require(_mintedByAddress[_to] == 0, "user already minted");   
        // from 1 to 999
        require(_tokenIdCounter.current() + 1 <= maxSupply, "exceeding the max supply");
        // extra protection of sending the same url
        bytes32 _hashURL = keccak256(abi.encodePacked(_tokenURI));
        require(!_usedMetadata[_hashURL], "token uri already used"); 
        // recovery a signature.  signature is made up : {user, _tokenURI}
        address recoveredSigner = _recoverSigner(keccak256(abi.encodePacked(_to, _tokenURI)), _signature);
        // recovered signer should have the SIGNER_ROLE role
        require (recoveredSigner!=address(0) && hasRole(SIGNER_ROLE, recoveredSigner),"invalid signature");
        _usedMetadata[_hashURL] = true;
        // increment tokenId
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current(); 
        _mintedByAddress[_to] = tokenId;
        _safeMint(_to, tokenId);
        _setTokenURI(tokenId, _tokenURI);

    } 

    /**
     * @notice Allows to mint the NFTs if caller was authorized  (given signature).
     * Given NFT id is encoded into signature. If id is already used or user has minted any NFT, then transaction is declined
     */
    function mint(string calldata _tokenURL, bytes memory _signature) public  {
        _mintNFT(msg.sender, _tokenURL, _signature);
    }

    /**
     *  @notice Allows to mint the NFTs if specified user (who becomes an owner) was authorized (given signature).
     *  Given NFT id is encoded into signature. If id is already used or user has minted any NFT, then transaction is declined
     */
    function mintTo(address _to, string calldata _tokenURL, bytes memory _signature) public  {
        _mintNFT(_to, _tokenURL, _signature);
    }

    /**
     * @notice Returns minted NFT ID per address
     */
    function mintedByAddress(address user) public view virtual returns (uint256) {
        return _mintedByAddress[user];
    }
    /**
     * @notice total number of minted NFTs
     */
    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SIGNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URLCHANGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"string","name":"_tokenURL","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURL","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"mintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"updateMetadata_signature","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601981526020017f536f6369657479206f66207468652057696e6567726f776572000000000000008152506040518060400160405280600481526020017f534f54570000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000502565b508060019081620000a1919062000502565b505050620000b96000801b336200012360201b60201c565b620000eb7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f70336200012360201b60201c565b6200011d7f01e7acd7df37528444574cfc46e3918178cd4bcb3212069fd712c37f9b17d4e1336200012360201b60201c565b620005e9565b6200013582826200021560201b60201c565b620002115760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001b66200028060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030a57607f821691505b60208210810362000320576200031f620002c2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200038a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034b565b6200039686836200034b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e3620003dd620003d784620003ae565b620003b8565b620003ae565b9050919050565b6000819050919050565b620003ff83620003c2565b620004176200040e82620003ea565b84845462000358565b825550505050565b600090565b6200042e6200041f565b6200043b818484620003f4565b505050565b5b8181101562000463576200045760008262000424565b60018101905062000441565b5050565b601f821115620004b2576200047c8162000326565b62000487846200033b565b8101602085101562000497578190505b620004af620004a6856200033b565b83018262000440565b50505b505050565b600082821c905092915050565b6000620004d760001984600802620004b7565b1980831691505092915050565b6000620004f28383620004c4565b9150826002028217905092915050565b6200050d8262000288565b67ffffffffffffffff81111562000529576200052862000293565b5b620005358254620002f1565b6200054282828562000467565b600060209050601f8311600181146200057a576000841562000565578287015190505b620005718582620004e4565b865550620005e1565b601f1984166200058a8662000326565b60005b82811015620005b4578489015182556001820191506020850194506020810190506200058d565b86831015620005d45784890151620005d0601f891682620004c4565b8355505b6001600288020188555050505b505050505050565b61442a80620005f96000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636bb81488116100f9578063a9d77ee911610097578063c87b56dd11610071578063c87b56dd14610501578063d547741f14610531578063d5abeb011461054d578063e985e9c51461056b576101c4565b8063a9d77ee9146104ad578063b473ccb6146104c9578063b88d4fde146104e5576101c4565b806395d89b41116100d357806395d89b4114610437578063a1ebf35d14610455578063a217fddf14610473578063a22cb46514610491576101c4565b80636bb81488146103b957806370a08231146103d757806391d1485414610407576101c4565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e146103355780634737576e1461035157806353c8388e1461036d5780636352211e14610389576101c4565b80632f2ff15d146102cd57806336568abe146102e95780633ca63f2c14610305576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd14610281578063248a9ca31461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061284e565b61059b565b6040516101f09190612896565b60405180910390f35b6102016105ad565b60405161020e9190612941565b60405180910390f35b610231600480360381019061022c9190612999565b61063f565b60405161023e9190612a07565b60405180910390f35b610261600480360381019061025c9190612a4e565b610685565b005b61026b61079c565b6040516102789190612a9d565b60405180910390f35b61029b60048036038101906102969190612ab8565b6107ad565b005b6102b760048036038101906102b29190612b41565b61080d565b6040516102c49190612b7d565b60405180910390f35b6102e760048036038101906102e29190612b98565b61082d565b005b61030360048036038101906102fe9190612b98565b61084e565b005b61031f600480360381019061031a9190612bd8565b6108d1565b60405161032c9190612a9d565b60405180910390f35b61034f600480360381019061034a9190612ab8565b61091a565b005b61036b60048036038101906103669190612d9a565b61093a565b005b61038760048036038101906103829190612e16565b61094b565b005b6103a3600480360381019061039e9190612999565b6109c9565b6040516103b09190612a07565b60405180910390f35b6103c1610a7a565b6040516103ce9190612b7d565b60405180910390f35b6103f160048036038101906103ec9190612bd8565b610a9e565b6040516103fe9190612a9d565b60405180910390f35b610421600480360381019061041c9190612b98565b610b55565b60405161042e9190612896565b60405180910390f35b61043f610bc0565b60405161044c9190612941565b60405180910390f35b61045d610c52565b60405161046a9190612b7d565b60405180910390f35b61047b610c76565b6040516104889190612b7d565b60405180910390f35b6104ab60048036038101906104a69190612ea2565b610c7d565b005b6104c760048036038101906104c29190612ee2565b610c93565b005b6104e360048036038101906104de9190612f72565b610dc4565b005b6104ff60048036038101906104fa9190613002565b610dd6565b005b61051b60048036038101906105169190612999565b610e38565b6040516105289190612941565b60405180910390f35b61054b60048036038101906105469190612b98565b610f4a565b005b610555610f6b565b6040516105629190612a9d565b60405180910390f35b61058560048036038101906105809190613085565b610f71565b6040516105929190612896565b60405180910390f35b60006105a682611005565b9050919050565b6060600080546105bc906130f4565b80601f01602080910402602001604051908101604052809291908181526020018280546105e8906130f4565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b600061064a8261107f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610690826109c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790613197565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661071f6110ca565b73ffffffffffffffffffffffffffffffffffffffff16148061074e575061074d816107486110ca565b610f71565b5b61078d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078490613229565b60405180910390fd5b61079783836110d2565b505050565b60006107a8600861118b565b905090565b6107be6107b86110ca565b82611199565b6107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906132bb565b60405180910390fd5b61080883838361122e565b505050565b600060076000838152602001908152602001600020600101549050919050565b6108368261080d565b61083f81611494565b61084983836114a8565b505050565b6108566110ca565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba9061334d565b60405180910390fd5b6108cd8282611589565b5050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093583838360405180602001604052806000815250610dd6565b505050565b6109463384848461166b565b505050565b7f01e7acd7df37528444574cfc46e3918178cd4bcb3212069fd712c37f9b17d4e161097581611494565b6109c38484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a38565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a68906133b9565b60405180910390fd5b80915050919050565b7f01e7acd7df37528444574cfc46e3918178cd4bcb3212069fd712c37f9b17d4e181565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061344b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610bcf906130f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb906130f4565b8015610c485780601f10610c1d57610100808354040283529160200191610c48565b820191906000526020600020905b815481529060010190602001808311610c2b57829003601f168201915b5050505050905090565b7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7081565b6000801b81565b610c8f610c886110ca565b8383611aa5565b5050565b6000610ccb33868686604051602001610caf9493929190613504565b6040516020818303038152906040528051906020012083611c11565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d305750610d2f7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7082610b55565b5b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061358b565b60405180910390fd5b610dbd8585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a38565b5050505050565b610dd08484848461166b565b50505050565b610de7610de16110ca565b83611199565b610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d906132bb565b60405180910390fd5b610e3284848484611cfa565b50505050565b6060610e438261107f565b6000600660008481526020019081526020016000208054610e63906130f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f906130f4565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b505050505090506000610eed611d56565b90506000815103610f02578192505050610f45565b600082511115610f37578082604051602001610f1f9291906135dc565b60405160208183030381529060405292505050610f45565b610f4084611d6d565b925050505b919050565b610f538261080d565b610f5c81611494565b610f668383611589565b505050565b6103e781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611078575061107782611dd5565b5b9050919050565b61108881611eb7565b6110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be906133b9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611145836109c9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806111a5836109c9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111e757506111e68185610f71565b5b8061122557508373ffffffffffffffffffffffffffffffffffffffff1661120d8461063f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661124e826109c9565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90613672565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613704565b60405180910390fd5b61131e838383611f23565b6113296000826110d2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113799190613753565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d09190613787565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461148f838383611f28565b505050565b6114a5816114a06110ca565b611f2d565b50565b6114b28282610b55565b6115855760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061152a6110ca565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115938282610b55565b156116675760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061160c6110ca565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008473ffffffffffffffffffffffffffffffffffffffff163b146116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613807565b60405180910390fd5b6000838390501161170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613873565b60405180910390fd5b6000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906138df565b60405180910390fd5b6103e7600161179c600861118b565b6117a69190613787565b11156117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de9061394b565b60405180910390fd5b600083836040516020016117fc92919061396b565b604051602081830303815290604052805190602001209050600a600082815260200190815260200160002060009054906101000a900460ff1615611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906139d0565b60405180910390fd5b60006118ab86868660405160200161188f939291906139f0565b6040516020818303038152906040528051906020012084611c11565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611910575061190f7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7082610b55565b5b61194f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119469061358b565b60405180910390fd5b6001600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506119856008611fca565b6000611991600861118b565b905080600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119e18782611fe0565b611a2f8187878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a38565b50505050505050565b611a4182611eb7565b611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613a8c565b60405180910390fd5b80600660008481526020019081526020016000209081611aa09190613c58565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a90613d76565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c049190612896565b60405180910390a3505050565b60006041825114611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613de2565b60405180910390fd5b600083604051602001611c6a9190613e6f565b60405160208183030381529060405280519060200120905060008060006020860151925060408601519150606086015160001a905060018482858560405160008152602001604052604051611cc29493929190613eb1565b6020604051602081039080840390855afa158015611ce4573d6000803e3d6000fd5b5050506020604051035194505050505092915050565b611d0584848461122e565b611d1184848484611ffe565b611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790613f68565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611d788261107f565b6000611d82611d56565b90506000815111611da25760405180602001604052806000815250611dcd565b80611dac84612185565b604051602001611dbd9291906135dc565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ea057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611eb05750611eaf826122e5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b611f378282610b55565b611fc657611f5c8173ffffffffffffffffffffffffffffffffffffffff16601461234f565b611f6a8360001c602061234f565b604051602001611f7b929190614020565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd9190612941565b60405180910390fd5b5050565b6001816000016000828254019250508190555050565b611ffa82826040518060200160405280600081525061258b565b5050565b600061201f8473ffffffffffffffffffffffffffffffffffffffff166125e6565b15612178578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120486110ca565b8786866040518563ffffffff1660e01b815260040161206a94939291906140af565b6020604051808303816000875af19250505080156120a657506040513d601f19601f820116820180604052508101906120a39190614110565b60015b612128573d80600081146120d6576040519150601f19603f3d011682016040523d82523d6000602084013e6120db565b606091505b506000815103612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790613f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061217d565b600190505b949350505050565b6060600082036121cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e0565b600082905060005b600082146121fe5780806121e79061413d565b915050600a826121f791906141b4565b91506121d4565b60008167ffffffffffffffff81111561221a57612219612c6f565b5b6040519080825280601f01601f19166020018201604052801561224c5781602001600182028036833780820191505090505b5090505b600085146122d9576001826122659190613753565b9150600a8561227491906141e5565b60306122809190613787565b60f81b81838151811061229657612295614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d291906141b4565b9450612250565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026123629190614245565b61236c9190613787565b67ffffffffffffffff81111561238557612384612c6f565b5b6040519080825280601f01601f1916602001820160405280156123b75781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123ef576123ee614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061245357612452614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026124939190614245565b61249d9190613787565b90505b600181111561253d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124df576124de614216565b5b1a60f81b8282815181106124f6576124f5614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061253690614287565b90506124a0565b5060008414612581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612578906142fc565b60405180910390fd5b8091505092915050565b6125958383612609565b6125a26000848484611ffe565b6125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613f68565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90614368565b60405180910390fd5b61268181611eb7565b156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b8906143d4565b60405180910390fd5b6126cd60008383611f23565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271d9190613787565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127de60008383611f28565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61282b816127f6565b811461283657600080fd5b50565b60008135905061284881612822565b92915050565b600060208284031215612864576128636127ec565b5b600061287284828501612839565b91505092915050565b60008115159050919050565b6128908161287b565b82525050565b60006020820190506128ab6000830184612887565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128eb5780820151818401526020810190506128d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612913826128b1565b61291d81856128bc565b935061292d8185602086016128cd565b612936816128f7565b840191505092915050565b6000602082019050818103600083015261295b8184612908565b905092915050565b6000819050919050565b61297681612963565b811461298157600080fd5b50565b6000813590506129938161296d565b92915050565b6000602082840312156129af576129ae6127ec565b5b60006129bd84828501612984565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f1826129c6565b9050919050565b612a01816129e6565b82525050565b6000602082019050612a1c60008301846129f8565b92915050565b612a2b816129e6565b8114612a3657600080fd5b50565b600081359050612a4881612a22565b92915050565b60008060408385031215612a6557612a646127ec565b5b6000612a7385828601612a39565b9250506020612a8485828601612984565b9150509250929050565b612a9781612963565b82525050565b6000602082019050612ab26000830184612a8e565b92915050565b600080600060608486031215612ad157612ad06127ec565b5b6000612adf86828701612a39565b9350506020612af086828701612a39565b9250506040612b0186828701612984565b9150509250925092565b6000819050919050565b612b1e81612b0b565b8114612b2957600080fd5b50565b600081359050612b3b81612b15565b92915050565b600060208284031215612b5757612b566127ec565b5b6000612b6584828501612b2c565b91505092915050565b612b7781612b0b565b82525050565b6000602082019050612b926000830184612b6e565b92915050565b60008060408385031215612baf57612bae6127ec565b5b6000612bbd85828601612b2c565b9250506020612bce85828601612a39565b9150509250929050565b600060208284031215612bee57612bed6127ec565b5b6000612bfc84828501612a39565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612c2a57612c29612c05565b5b8235905067ffffffffffffffff811115612c4757612c46612c0a565b5b602083019150836001820283011115612c6357612c62612c0f565b5b9250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ca7826128f7565b810181811067ffffffffffffffff82111715612cc657612cc5612c6f565b5b80604052505050565b6000612cd96127e2565b9050612ce58282612c9e565b919050565b600067ffffffffffffffff821115612d0557612d04612c6f565b5b612d0e826128f7565b9050602081019050919050565b82818337600083830152505050565b6000612d3d612d3884612cea565b612ccf565b905082815260208101848484011115612d5957612d58612c6a565b5b612d64848285612d1b565b509392505050565b600082601f830112612d8157612d80612c05565b5b8135612d91848260208601612d2a565b91505092915050565b600080600060408486031215612db357612db26127ec565b5b600084013567ffffffffffffffff811115612dd157612dd06127f1565b5b612ddd86828701612c14565b9350935050602084013567ffffffffffffffff811115612e0057612dff6127f1565b5b612e0c86828701612d6c565b9150509250925092565b600080600060408486031215612e2f57612e2e6127ec565b5b6000612e3d86828701612984565b935050602084013567ffffffffffffffff811115612e5e57612e5d6127f1565b5b612e6a86828701612c14565b92509250509250925092565b612e7f8161287b565b8114612e8a57600080fd5b50565b600081359050612e9c81612e76565b92915050565b60008060408385031215612eb957612eb86127ec565b5b6000612ec785828601612a39565b9250506020612ed885828601612e8d565b9150509250929050565b60008060008060608587031215612efc57612efb6127ec565b5b6000612f0a87828801612984565b945050602085013567ffffffffffffffff811115612f2b57612f2a6127f1565b5b612f3787828801612c14565b9350935050604085013567ffffffffffffffff811115612f5a57612f596127f1565b5b612f6687828801612d6c565b91505092959194509250565b60008060008060608587031215612f8c57612f8b6127ec565b5b6000612f9a87828801612a39565b945050602085013567ffffffffffffffff811115612fbb57612fba6127f1565b5b612fc787828801612c14565b9350935050604085013567ffffffffffffffff811115612fea57612fe96127f1565b5b612ff687828801612d6c565b91505092959194509250565b6000806000806080858703121561301c5761301b6127ec565b5b600061302a87828801612a39565b945050602061303b87828801612a39565b935050604061304c87828801612984565b925050606085013567ffffffffffffffff81111561306d5761306c6127f1565b5b61307987828801612d6c565b91505092959194509250565b6000806040838503121561309c5761309b6127ec565b5b60006130aa85828601612a39565b92505060206130bb85828601612a39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310c57607f821691505b60208210810361311f5761311e6130c5565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131816021836128bc565b915061318c82613125565b604082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613213603e836128bc565b915061321e826131b7565b604082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006132a5602e836128bc565b91506132b082613249565b604082019050919050565b600060208201905081810360008301526132d481613298565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613337602f836128bc565b9150613342826132db565b604082019050919050565b600060208201905081810360008301526133668161332a565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006133a36018836128bc565b91506133ae8261336d565b602082019050919050565b600060208201905081810360008301526133d281613396565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006134356029836128bc565b9150613440826133d9565b604082019050919050565b6000602082019050818103600083015261346481613428565b9050919050565b60008160601b9050919050565b60006134838261346b565b9050919050565b600061349582613478565b9050919050565b6134ad6134a8826129e6565b61348a565b82525050565b6000819050919050565b6134ce6134c982612963565b6134b3565b82525050565b600081905092915050565b60006134eb83856134d4565b93506134f8838584612d1b565b82840190509392505050565b6000613510828761349c565b60148201915061352082866134bd565b6020820191506135318284866134df565b915081905095945050505050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006135756011836128bc565b91506135808261353f565b602082019050919050565b600060208201905081810360008301526135a481613568565b9050919050565b60006135b6826128b1565b6135c081856134d4565b93506135d08185602086016128cd565b80840191505092915050565b60006135e882856135ab565b91506135f482846135ab565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061365c6025836128bc565b915061366782613600565b604082019050919050565b6000602082019050818103600083015261368b8161364f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136ee6024836128bc565b91506136f982613692565b604082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375e82612963565b915061376983612963565b925082820390508181111561378157613780613724565b5b92915050565b600061379282612963565b915061379d83612963565b92508282019050808211156137b5576137b4613724565b5b92915050565b7f61646472657373206973206120636f6e74726163740000000000000000000000600082015250565b60006137f16015836128bc565b91506137fc826137bb565b602082019050919050565b60006020820190508181036000830152613820816137e4565b9050919050565b7f656d70747920746f6b656e207572690000000000000000000000000000000000600082015250565b600061385d600f836128bc565b915061386882613827565b602082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f7573657220616c7265616479206d696e74656400000000000000000000000000600082015250565b60006138c96013836128bc565b91506138d482613893565b602082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b7f657863656564696e6720746865206d617820737570706c790000000000000000600082015250565b60006139356018836128bc565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b60006139788284866134df565b91508190509392505050565b7f746f6b656e2075726920616c7265616479207573656400000000000000000000600082015250565b60006139ba6016836128bc565b91506139c582613984565b602082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b60006139fc828661349c565b601482019150613a0d8284866134df565b9150819050949350505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613a76602e836128bc565b9150613a8182613a1a565b604082019050919050565b60006020820190508181036000830152613aa581613a69565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ad1565b613b188683613ad1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b55613b50613b4b84612963565b613b30565b612963565b9050919050565b6000819050919050565b613b6f83613b3a565b613b83613b7b82613b5c565b848454613ade565b825550505050565b600090565b613b98613b8b565b613ba3818484613b66565b505050565b5b81811015613bc757613bbc600082613b90565b600181019050613ba9565b5050565b601f821115613c0c57613bdd81613aac565b613be684613ac1565b81016020851015613bf5578190505b613c09613c0185613ac1565b830182613ba8565b50505b505050565b600082821c905092915050565b6000613c2f60001984600802613c11565b1980831691505092915050565b6000613c488383613c1e565b9150826002028217905092915050565b613c61826128b1565b67ffffffffffffffff811115613c7a57613c79612c6f565b5b613c8482546130f4565b613c8f828285613bcb565b600060209050601f831160018114613cc25760008415613cb0578287015190505b613cba8582613c3c565b865550613d22565b601f198416613cd086613aac565b60005b82811015613cf857848901518255600182019150602085019450602081019050613cd3565b86831015613d155784890151613d11601f891682613c1e565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d606019836128bc565b9150613d6b82613d2a565b602082019050919050565b60006020820190508181036000830152613d8f81613d53565b9050919050565b7f696e76616c6964207369676e6174757265206c656e6774682100000000000000600082015250565b6000613dcc6019836128bc565b9150613dd782613d96565b602082019050919050565b60006020820190508181036000830152613dfb81613dbf565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613e38601c836134d4565b9150613e4382613e02565b601c82019050919050565b6000819050919050565b613e69613e6482612b0b565b613e4e565b82525050565b6000613e7a82613e2b565b9150613e868284613e58565b60208201915081905092915050565b600060ff82169050919050565b613eab81613e95565b82525050565b6000608082019050613ec66000830187612b6e565b613ed36020830186613ea2565b613ee06040830185612b6e565b613eed6060830184612b6e565b95945050505050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f526032836128bc565b9150613f5d82613ef6565b604082019050919050565b60006020820190508181036000830152613f8181613f45565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613fbe6017836134d4565b9150613fc982613f88565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061400a6011836134d4565b915061401582613fd4565b601182019050919050565b600061402b82613fb1565b915061403782856135ab565b915061404282613ffd565b915061404e82846135ab565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006140818261405a565b61408b8185614065565b935061409b8185602086016128cd565b6140a4816128f7565b840191505092915050565b60006080820190506140c460008301876129f8565b6140d160208301866129f8565b6140de6040830185612a8e565b81810360608301526140f08184614076565b905095945050505050565b60008151905061410a81612822565b92915050565b600060208284031215614126576141256127ec565b5b6000614134848285016140fb565b91505092915050565b600061414882612963565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361417a57614179613724565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141bf82612963565b91506141ca83612963565b9250826141da576141d9614185565b5b828204905092915050565b60006141f082612963565b91506141fb83612963565b92508261420b5761420a614185565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061425082612963565b915061425b83612963565b925082820261426981612963565b915082820484148315176142805761427f613724565b5b5092915050565b600061429282612963565b9150600082036142a5576142a4613724565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006142e66020836128bc565b91506142f1826142b0565b602082019050919050565b60006020820190508181036000830152614315816142d9565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006143526020836128bc565b915061435d8261431c565b602082019050919050565b6000602082019050818103600083015261438181614345565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143be601c836128bc565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b905091905056fea26469706673582212206f52a4d112ff913f3f7d8cd6ecf40b4fa39765dbd75d865f5be459c3c6f93fef64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636bb81488116100f9578063a9d77ee911610097578063c87b56dd11610071578063c87b56dd14610501578063d547741f14610531578063d5abeb011461054d578063e985e9c51461056b576101c4565b8063a9d77ee9146104ad578063b473ccb6146104c9578063b88d4fde146104e5576101c4565b806395d89b41116100d357806395d89b4114610437578063a1ebf35d14610455578063a217fddf14610473578063a22cb46514610491576101c4565b80636bb81488146103b957806370a08231146103d757806391d1485414610407576101c4565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e146103355780634737576e1461035157806353c8388e1461036d5780636352211e14610389576101c4565b80632f2ff15d146102cd57806336568abe146102e95780633ca63f2c14610305576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd14610281578063248a9ca31461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061284e565b61059b565b6040516101f09190612896565b60405180910390f35b6102016105ad565b60405161020e9190612941565b60405180910390f35b610231600480360381019061022c9190612999565b61063f565b60405161023e9190612a07565b60405180910390f35b610261600480360381019061025c9190612a4e565b610685565b005b61026b61079c565b6040516102789190612a9d565b60405180910390f35b61029b60048036038101906102969190612ab8565b6107ad565b005b6102b760048036038101906102b29190612b41565b61080d565b6040516102c49190612b7d565b60405180910390f35b6102e760048036038101906102e29190612b98565b61082d565b005b61030360048036038101906102fe9190612b98565b61084e565b005b61031f600480360381019061031a9190612bd8565b6108d1565b60405161032c9190612a9d565b60405180910390f35b61034f600480360381019061034a9190612ab8565b61091a565b005b61036b60048036038101906103669190612d9a565b61093a565b005b61038760048036038101906103829190612e16565b61094b565b005b6103a3600480360381019061039e9190612999565b6109c9565b6040516103b09190612a07565b60405180910390f35b6103c1610a7a565b6040516103ce9190612b7d565b60405180910390f35b6103f160048036038101906103ec9190612bd8565b610a9e565b6040516103fe9190612a9d565b60405180910390f35b610421600480360381019061041c9190612b98565b610b55565b60405161042e9190612896565b60405180910390f35b61043f610bc0565b60405161044c9190612941565b60405180910390f35b61045d610c52565b60405161046a9190612b7d565b60405180910390f35b61047b610c76565b6040516104889190612b7d565b60405180910390f35b6104ab60048036038101906104a69190612ea2565b610c7d565b005b6104c760048036038101906104c29190612ee2565b610c93565b005b6104e360048036038101906104de9190612f72565b610dc4565b005b6104ff60048036038101906104fa9190613002565b610dd6565b005b61051b60048036038101906105169190612999565b610e38565b6040516105289190612941565b60405180910390f35b61054b60048036038101906105469190612b98565b610f4a565b005b610555610f6b565b6040516105629190612a9d565b60405180910390f35b61058560048036038101906105809190613085565b610f71565b6040516105929190612896565b60405180910390f35b60006105a682611005565b9050919050565b6060600080546105bc906130f4565b80601f01602080910402602001604051908101604052809291908181526020018280546105e8906130f4565b80156106355780601f1061060a57610100808354040283529160200191610635565b820191906000526020600020905b81548152906001019060200180831161061857829003601f168201915b5050505050905090565b600061064a8261107f565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610690826109c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f790613197565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661071f6110ca565b73ffffffffffffffffffffffffffffffffffffffff16148061074e575061074d816107486110ca565b610f71565b5b61078d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078490613229565b60405180910390fd5b61079783836110d2565b505050565b60006107a8600861118b565b905090565b6107be6107b86110ca565b82611199565b6107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f4906132bb565b60405180910390fd5b61080883838361122e565b505050565b600060076000838152602001908152602001600020600101549050919050565b6108368261080d565b61083f81611494565b61084983836114a8565b505050565b6108566110ca565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba9061334d565b60405180910390fd5b6108cd8282611589565b5050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093583838360405180602001604052806000815250610dd6565b505050565b6109463384848461166b565b505050565b7f01e7acd7df37528444574cfc46e3918178cd4bcb3212069fd712c37f9b17d4e161097581611494565b6109c38484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a38565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a68906133b9565b60405180910390fd5b80915050919050565b7f01e7acd7df37528444574cfc46e3918178cd4bcb3212069fd712c37f9b17d4e181565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061344b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610bcf906130f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb906130f4565b8015610c485780601f10610c1d57610100808354040283529160200191610c48565b820191906000526020600020905b815481529060010190602001808311610c2b57829003601f168201915b5050505050905090565b7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7081565b6000801b81565b610c8f610c886110ca565b8383611aa5565b5050565b6000610ccb33868686604051602001610caf9493929190613504565b6040516020818303038152906040528051906020012083611c11565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d305750610d2f7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7082610b55565b5b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d669061358b565b60405180910390fd5b610dbd8585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a38565b5050505050565b610dd08484848461166b565b50505050565b610de7610de16110ca565b83611199565b610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d906132bb565b60405180910390fd5b610e3284848484611cfa565b50505050565b6060610e438261107f565b6000600660008481526020019081526020016000208054610e63906130f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f906130f4565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b505050505090506000610eed611d56565b90506000815103610f02578192505050610f45565b600082511115610f37578082604051602001610f1f9291906135dc565b60405160208183030381529060405292505050610f45565b610f4084611d6d565b925050505b919050565b610f538261080d565b610f5c81611494565b610f668383611589565b505050565b6103e781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611078575061107782611dd5565b5b9050919050565b61108881611eb7565b6110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be906133b9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611145836109c9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806111a5836109c9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111e757506111e68185610f71565b5b8061122557508373ffffffffffffffffffffffffffffffffffffffff1661120d8461063f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661124e826109c9565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90613672565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613704565b60405180910390fd5b61131e838383611f23565b6113296000826110d2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113799190613753565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d09190613787565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461148f838383611f28565b505050565b6114a5816114a06110ca565b611f2d565b50565b6114b28282610b55565b6115855760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061152a6110ca565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115938282610b55565b156116675760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061160c6110ca565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008473ffffffffffffffffffffffffffffffffffffffff163b146116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613807565b60405180910390fd5b6000838390501161170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613873565b60405180910390fd5b6000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906138df565b60405180910390fd5b6103e7600161179c600861118b565b6117a69190613787565b11156117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de9061394b565b60405180910390fd5b600083836040516020016117fc92919061396b565b604051602081830303815290604052805190602001209050600a600082815260200190815260200160002060009054906101000a900460ff1615611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906139d0565b60405180910390fd5b60006118ab86868660405160200161188f939291906139f0565b6040516020818303038152906040528051906020012084611c11565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611910575061190f7fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7082610b55565b5b61194f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119469061358b565b60405180910390fd5b6001600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506119856008611fca565b6000611991600861118b565b905080600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119e18782611fe0565b611a2f8187878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611a38565b50505050505050565b611a4182611eb7565b611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613a8c565b60405180910390fd5b80600660008481526020019081526020016000209081611aa09190613c58565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a90613d76565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c049190612896565b60405180910390a3505050565b60006041825114611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613de2565b60405180910390fd5b600083604051602001611c6a9190613e6f565b60405160208183030381529060405280519060200120905060008060006020860151925060408601519150606086015160001a905060018482858560405160008152602001604052604051611cc29493929190613eb1565b6020604051602081039080840390855afa158015611ce4573d6000803e3d6000fd5b5050506020604051035194505050505092915050565b611d0584848461122e565b611d1184848484611ffe565b611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790613f68565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611d788261107f565b6000611d82611d56565b90506000815111611da25760405180602001604052806000815250611dcd565b80611dac84612185565b604051602001611dbd9291906135dc565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ea057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611eb05750611eaf826122e5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b611f378282610b55565b611fc657611f5c8173ffffffffffffffffffffffffffffffffffffffff16601461234f565b611f6a8360001c602061234f565b604051602001611f7b929190614020565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd9190612941565b60405180910390fd5b5050565b6001816000016000828254019250508190555050565b611ffa82826040518060200160405280600081525061258b565b5050565b600061201f8473ffffffffffffffffffffffffffffffffffffffff166125e6565b15612178578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120486110ca565b8786866040518563ffffffff1660e01b815260040161206a94939291906140af565b6020604051808303816000875af19250505080156120a657506040513d601f19601f820116820180604052508101906120a39190614110565b60015b612128573d80600081146120d6576040519150601f19603f3d011682016040523d82523d6000602084013e6120db565b606091505b506000815103612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790613f68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061217d565b600190505b949350505050565b6060600082036121cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e0565b600082905060005b600082146121fe5780806121e79061413d565b915050600a826121f791906141b4565b91506121d4565b60008167ffffffffffffffff81111561221a57612219612c6f565b5b6040519080825280601f01601f19166020018201604052801561224c5781602001600182028036833780820191505090505b5090505b600085146122d9576001826122659190613753565b9150600a8561227491906141e5565b60306122809190613787565b60f81b81838151811061229657612295614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d291906141b4565b9450612250565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026123629190614245565b61236c9190613787565b67ffffffffffffffff81111561238557612384612c6f565b5b6040519080825280601f01601f1916602001820160405280156123b75781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106123ef576123ee614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061245357612452614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026124939190614245565b61249d9190613787565b90505b600181111561253d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106124df576124de614216565b5b1a60f81b8282815181106124f6576124f5614216565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061253690614287565b90506124a0565b5060008414612581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612578906142fc565b60405180910390fd5b8091505092915050565b6125958383612609565b6125a26000848484611ffe565b6125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613f68565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90614368565b60405180910390fd5b61268181611eb7565b156126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b8906143d4565b60405180910390fd5b6126cd60008383611f23565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271d9190613787565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127de60008383611f28565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61282b816127f6565b811461283657600080fd5b50565b60008135905061284881612822565b92915050565b600060208284031215612864576128636127ec565b5b600061287284828501612839565b91505092915050565b60008115159050919050565b6128908161287b565b82525050565b60006020820190506128ab6000830184612887565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128eb5780820151818401526020810190506128d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612913826128b1565b61291d81856128bc565b935061292d8185602086016128cd565b612936816128f7565b840191505092915050565b6000602082019050818103600083015261295b8184612908565b905092915050565b6000819050919050565b61297681612963565b811461298157600080fd5b50565b6000813590506129938161296d565b92915050565b6000602082840312156129af576129ae6127ec565b5b60006129bd84828501612984565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129f1826129c6565b9050919050565b612a01816129e6565b82525050565b6000602082019050612a1c60008301846129f8565b92915050565b612a2b816129e6565b8114612a3657600080fd5b50565b600081359050612a4881612a22565b92915050565b60008060408385031215612a6557612a646127ec565b5b6000612a7385828601612a39565b9250506020612a8485828601612984565b9150509250929050565b612a9781612963565b82525050565b6000602082019050612ab26000830184612a8e565b92915050565b600080600060608486031215612ad157612ad06127ec565b5b6000612adf86828701612a39565b9350506020612af086828701612a39565b9250506040612b0186828701612984565b9150509250925092565b6000819050919050565b612b1e81612b0b565b8114612b2957600080fd5b50565b600081359050612b3b81612b15565b92915050565b600060208284031215612b5757612b566127ec565b5b6000612b6584828501612b2c565b91505092915050565b612b7781612b0b565b82525050565b6000602082019050612b926000830184612b6e565b92915050565b60008060408385031215612baf57612bae6127ec565b5b6000612bbd85828601612b2c565b9250506020612bce85828601612a39565b9150509250929050565b600060208284031215612bee57612bed6127ec565b5b6000612bfc84828501612a39565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612c2a57612c29612c05565b5b8235905067ffffffffffffffff811115612c4757612c46612c0a565b5b602083019150836001820283011115612c6357612c62612c0f565b5b9250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ca7826128f7565b810181811067ffffffffffffffff82111715612cc657612cc5612c6f565b5b80604052505050565b6000612cd96127e2565b9050612ce58282612c9e565b919050565b600067ffffffffffffffff821115612d0557612d04612c6f565b5b612d0e826128f7565b9050602081019050919050565b82818337600083830152505050565b6000612d3d612d3884612cea565b612ccf565b905082815260208101848484011115612d5957612d58612c6a565b5b612d64848285612d1b565b509392505050565b600082601f830112612d8157612d80612c05565b5b8135612d91848260208601612d2a565b91505092915050565b600080600060408486031215612db357612db26127ec565b5b600084013567ffffffffffffffff811115612dd157612dd06127f1565b5b612ddd86828701612c14565b9350935050602084013567ffffffffffffffff811115612e0057612dff6127f1565b5b612e0c86828701612d6c565b9150509250925092565b600080600060408486031215612e2f57612e2e6127ec565b5b6000612e3d86828701612984565b935050602084013567ffffffffffffffff811115612e5e57612e5d6127f1565b5b612e6a86828701612c14565b92509250509250925092565b612e7f8161287b565b8114612e8a57600080fd5b50565b600081359050612e9c81612e76565b92915050565b60008060408385031215612eb957612eb86127ec565b5b6000612ec785828601612a39565b9250506020612ed885828601612e8d565b9150509250929050565b60008060008060608587031215612efc57612efb6127ec565b5b6000612f0a87828801612984565b945050602085013567ffffffffffffffff811115612f2b57612f2a6127f1565b5b612f3787828801612c14565b9350935050604085013567ffffffffffffffff811115612f5a57612f596127f1565b5b612f6687828801612d6c565b91505092959194509250565b60008060008060608587031215612f8c57612f8b6127ec565b5b6000612f9a87828801612a39565b945050602085013567ffffffffffffffff811115612fbb57612fba6127f1565b5b612fc787828801612c14565b9350935050604085013567ffffffffffffffff811115612fea57612fe96127f1565b5b612ff687828801612d6c565b91505092959194509250565b6000806000806080858703121561301c5761301b6127ec565b5b600061302a87828801612a39565b945050602061303b87828801612a39565b935050604061304c87828801612984565b925050606085013567ffffffffffffffff81111561306d5761306c6127f1565b5b61307987828801612d6c565b91505092959194509250565b6000806040838503121561309c5761309b6127ec565b5b60006130aa85828601612a39565b92505060206130bb85828601612a39565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310c57607f821691505b60208210810361311f5761311e6130c5565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131816021836128bc565b915061318c82613125565b604082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613213603e836128bc565b915061321e826131b7565b604082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006132a5602e836128bc565b91506132b082613249565b604082019050919050565b600060208201905081810360008301526132d481613298565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000613337602f836128bc565b9150613342826132db565b604082019050919050565b600060208201905081810360008301526133668161332a565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006133a36018836128bc565b91506133ae8261336d565b602082019050919050565b600060208201905081810360008301526133d281613396565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006134356029836128bc565b9150613440826133d9565b604082019050919050565b6000602082019050818103600083015261346481613428565b9050919050565b60008160601b9050919050565b60006134838261346b565b9050919050565b600061349582613478565b9050919050565b6134ad6134a8826129e6565b61348a565b82525050565b6000819050919050565b6134ce6134c982612963565b6134b3565b82525050565b600081905092915050565b60006134eb83856134d4565b93506134f8838584612d1b565b82840190509392505050565b6000613510828761349c565b60148201915061352082866134bd565b6020820191506135318284866134df565b915081905095945050505050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006135756011836128bc565b91506135808261353f565b602082019050919050565b600060208201905081810360008301526135a481613568565b9050919050565b60006135b6826128b1565b6135c081856134d4565b93506135d08185602086016128cd565b80840191505092915050565b60006135e882856135ab565b91506135f482846135ab565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061365c6025836128bc565b915061366782613600565b604082019050919050565b6000602082019050818103600083015261368b8161364f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136ee6024836128bc565b91506136f982613692565b604082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061375e82612963565b915061376983612963565b925082820390508181111561378157613780613724565b5b92915050565b600061379282612963565b915061379d83612963565b92508282019050808211156137b5576137b4613724565b5b92915050565b7f61646472657373206973206120636f6e74726163740000000000000000000000600082015250565b60006137f16015836128bc565b91506137fc826137bb565b602082019050919050565b60006020820190508181036000830152613820816137e4565b9050919050565b7f656d70747920746f6b656e207572690000000000000000000000000000000000600082015250565b600061385d600f836128bc565b915061386882613827565b602082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f7573657220616c7265616479206d696e74656400000000000000000000000000600082015250565b60006138c96013836128bc565b91506138d482613893565b602082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b7f657863656564696e6720746865206d617820737570706c790000000000000000600082015250565b60006139356018836128bc565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b60006139788284866134df565b91508190509392505050565b7f746f6b656e2075726920616c7265616479207573656400000000000000000000600082015250565b60006139ba6016836128bc565b91506139c582613984565b602082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b60006139fc828661349c565b601482019150613a0d8284866134df565b9150819050949350505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613a76602e836128bc565b9150613a8182613a1a565b604082019050919050565b60006020820190508181036000830152613aa581613a69565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ad1565b613b188683613ad1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b55613b50613b4b84612963565b613b30565b612963565b9050919050565b6000819050919050565b613b6f83613b3a565b613b83613b7b82613b5c565b848454613ade565b825550505050565b600090565b613b98613b8b565b613ba3818484613b66565b505050565b5b81811015613bc757613bbc600082613b90565b600181019050613ba9565b5050565b601f821115613c0c57613bdd81613aac565b613be684613ac1565b81016020851015613bf5578190505b613c09613c0185613ac1565b830182613ba8565b50505b505050565b600082821c905092915050565b6000613c2f60001984600802613c11565b1980831691505092915050565b6000613c488383613c1e565b9150826002028217905092915050565b613c61826128b1565b67ffffffffffffffff811115613c7a57613c79612c6f565b5b613c8482546130f4565b613c8f828285613bcb565b600060209050601f831160018114613cc25760008415613cb0578287015190505b613cba8582613c3c565b865550613d22565b601f198416613cd086613aac565b60005b82811015613cf857848901518255600182019150602085019450602081019050613cd3565b86831015613d155784890151613d11601f891682613c1e565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d606019836128bc565b9150613d6b82613d2a565b602082019050919050565b60006020820190508181036000830152613d8f81613d53565b9050919050565b7f696e76616c6964207369676e6174757265206c656e6774682100000000000000600082015250565b6000613dcc6019836128bc565b9150613dd782613d96565b602082019050919050565b60006020820190508181036000830152613dfb81613dbf565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000613e38601c836134d4565b9150613e4382613e02565b601c82019050919050565b6000819050919050565b613e69613e6482612b0b565b613e4e565b82525050565b6000613e7a82613e2b565b9150613e868284613e58565b60208201915081905092915050565b600060ff82169050919050565b613eab81613e95565b82525050565b6000608082019050613ec66000830187612b6e565b613ed36020830186613ea2565b613ee06040830185612b6e565b613eed6060830184612b6e565b95945050505050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f526032836128bc565b9150613f5d82613ef6565b604082019050919050565b60006020820190508181036000830152613f8181613f45565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613fbe6017836134d4565b9150613fc982613f88565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061400a6011836134d4565b915061401582613fd4565b601182019050919050565b600061402b82613fb1565b915061403782856135ab565b915061404282613ffd565b915061404e82846135ab565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b60006140818261405a565b61408b8185614065565b935061409b8185602086016128cd565b6140a4816128f7565b840191505092915050565b60006080820190506140c460008301876129f8565b6140d160208301866129f8565b6140de6040830185612a8e565b81810360608301526140f08184614076565b905095945050505050565b60008151905061410a81612822565b92915050565b600060208284031215614126576141256127ec565b5b6000614134848285016140fb565b91505092915050565b600061414882612963565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361417a57614179613724565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141bf82612963565b91506141ca83612963565b9250826141da576141d9614185565b5b828204905092915050565b60006141f082612963565b91506141fb83612963565b92508261420b5761420a614185565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061425082612963565b915061425b83612963565b925082820261426981612963565b915082820484148315176142805761427f613724565b5b5092915050565b600061429282612963565b9150600082036142a5576142a4613724565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006142e66020836128bc565b91506142f1826142b0565b602082019050919050565b60006020820190508181036000830152614315816142d9565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006143526020836128bc565b915061435d8261431c565b602082019050919050565b6000602082019050818103600083015261438181614345565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143be601c836128bc565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b905091905056fea26469706673582212206f52a4d112ff913f3f7d8cd6ecf40b4fa39765dbd75d865f5be459c3c6f93fef64736f6c63430008110033

Deployed Bytecode Sourcemap

58995:5578:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64379:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33402:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34915:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34432:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64267:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35615:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55072:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55513:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56657:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64074:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36022:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63448:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60213:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33113:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59388:70;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32844:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53532:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33571:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59207:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52637:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35158:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60511:527;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63854:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36278:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46183:624;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55953:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59810:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35384:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64379:176;64487:4;64511:36;64535:11;64511:23;:36::i;:::-;64504:43;;64379:176;;;:::o;33402:100::-;33456:13;33489:5;33482:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33402:100;:::o;34915:171::-;34991:7;35011:23;35026:7;35011:14;:23::i;:::-;35054:15;:24;35070:7;35054:24;;;;;;;;;;;;;;;;;;;;;35047:31;;34915:171;;;:::o;34432:417::-;34513:13;34529:23;34544:7;34529:14;:23::i;:::-;34513:39;;34577:5;34571:11;;:2;:11;;;34563:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34671:5;34655:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34680:37;34697:5;34704:12;:10;:12::i;:::-;34680:16;:37::i;:::-;34655:62;34633:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;34820:21;34829:2;34833:7;34820:8;:21::i;:::-;34502:347;34432:417;;:::o;64267:104::-;64311:7;64338:25;:15;:23;:25::i;:::-;64331:32;;64267:104;:::o;35615:336::-;35810:41;35829:12;:10;:12::i;:::-;35843:7;35810:18;:41::i;:::-;35802:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;35915:28;35925:4;35931:2;35935:7;35915:9;:28::i;:::-;35615:336;;;:::o;55072:131::-;55146:7;55173:6;:12;55180:4;55173:12;;;;;;;;;;;:22;;;55166:29;;55072:131;;;:::o;55513:147::-;55596:18;55609:4;55596:12;:18::i;:::-;53128:16;53139:4;53128:10;:16::i;:::-;55627:25:::1;55638:4;55644:7;55627:10;:25::i;:::-;55513:147:::0;;;:::o;56657:218::-;56764:12;:10;:12::i;:::-;56753:23;;:7;:23;;;56745:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56841:26;56853:4;56859:7;56841:11;:26::i;:::-;56657:218;;:::o;64074:125::-;64142:7;64169:16;:22;64186:4;64169:22;;;;;;;;;;;;;;;;64162:29;;64074:125;;;:::o;36022:185::-;36160:39;36177:4;36183:2;36187:7;36160:39;;;;;;;;;;;;:16;:39::i;:::-;36022:185;;;:::o;63448:136::-;63533:43;63542:10;63554:9;;63565:10;63533:8;:43::i;:::-;63448:136;;;:::o;60213:156::-;59430:28;53128:16;53139:4;53128:10;:16::i;:::-;60328:33:::1;60341:8;60351:9;;60328:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:33::i;:::-;60213:156:::0;;;;:::o;33113:222::-;33185:7;33205:13;33221:7;:16;33229:7;33221:16;;;;;;;;;;;;;;;;;;;;;33205:32;;33273:1;33256:19;;:5;:19;;;33248:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;33322:5;33315:12;;;33113:222;;;:::o;59388:70::-;59430:28;59388:70;:::o;32844:207::-;32916:7;32961:1;32944:19;;:5;:19;;;32936:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33027:9;:16;33037:5;33027:16;;;;;;;;;;;;;;;;33020:23;;32844:207;;;:::o;53532:147::-;53618:4;53642:6;:12;53649:4;53642:12;;;;;;;;;;;:20;;:29;53663:7;53642:29;;;;;;;;;;;;;;;;;;;;;;;;;53635:36;;53532:147;;;;:::o;33571:104::-;33627:13;33660:7;33653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33571:104;:::o;59207:62::-;59245:24;59207:62;:::o;52637:49::-;52682:4;52637:49;;;:::o;35158:155::-;35253:52;35272:12;:10;:12::i;:::-;35286:8;35296;35253:18;:52::i;:::-;35158:155;;:::o;60511:527::-;60702:23;60728:88;60770:10;60782:8;60792:9;;60753:49;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60743:60;;;;;;60805:10;60728:14;:88::i;:::-;60702:114;;60922:1;60897:27;;:15;:27;;;;:68;;;;;60928:37;59245:24;60949:15;60928:7;:37::i;:::-;60897:68;60889:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;60997:33;61010:8;61020:9;;60997:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:33::i;:::-;60624:414;60511:527;;;;:::o;63854:144::-;63954:36;63963:3;63968:9;;63979:10;63954:8;:36::i;:::-;63854:144;;;;:::o;36278:323::-;36452:41;36471:12;:10;:12::i;:::-;36485:7;36452:18;:41::i;:::-;36444:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;36555:38;36569:4;36575:2;36579:7;36588:4;36555:13;:38::i;:::-;36278:323;;;;:::o;46183:624::-;46256:13;46282:23;46297:7;46282:14;:23::i;:::-;46318;46344:10;:19;46355:7;46344:19;;;;;;;;;;;46318:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46374:18;46395:10;:8;:10::i;:::-;46374:31;;46503:1;46487:4;46481:18;:23;46477:72;;46528:9;46521:16;;;;;;46477:72;46679:1;46659:9;46653:23;:27;46649:108;;;46728:4;46734:9;46711:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46697:48;;;;;;46649:108;46776:23;46791:7;46776:14;:23::i;:::-;46769:30;;;;46183:624;;;;:::o;55953:149::-;56037:18;56050:4;56037:12;:18::i;:::-;53128:16;53139:4;53128:10;:16::i;:::-;56068:26:::1;56080:4;56086:7;56068:11;:26::i;:::-;55953:149:::0;;;:::o;59810:39::-;59846:3;59810:39;:::o;35384:164::-;35481:4;35505:18;:25;35524:5;35505:25;;;;;;;;;;;;;;;:35;35531:8;35505:35;;;;;;;;;;;;;;;;;;;;;;;;;35498:42;;35384:164;;;;:::o;53236:204::-;53321:4;53360:32;53345:47;;;:11;:47;;;;:87;;;;53396:36;53420:11;53396:23;:36::i;:::-;53345:87;53338:94;;53236:204;;;:::o;42890:135::-;42972:16;42980:7;42972;:16::i;:::-;42964:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42890:135;:::o;30854:98::-;30907:7;30934:10;30927:17;;30854:98;:::o;42169:174::-;42271:2;42244:15;:24;42260:7;42244:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42327:7;42323:2;42289:46;;42298:23;42313:7;42298:14;:23::i;:::-;42289:46;;;;;;;;;;;;42169:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;38402:264::-;38495:4;38512:13;38528:23;38543:7;38528:14;:23::i;:::-;38512:39;;38581:5;38570:16;;:7;:16;;;:52;;;;38590:32;38607:5;38614:7;38590:16;:32::i;:::-;38570:52;:87;;;;38650:7;38626:31;;:20;38638:7;38626:11;:20::i;:::-;:31;;;38570:87;38562:96;;;38402:264;;;;:::o;41425:625::-;41584:4;41557:31;;:23;41572:7;41557:14;:23::i;:::-;:31;;;41549:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;41663:1;41649:16;;:2;:16;;;41641:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41719:39;41740:4;41746:2;41750:7;41719:20;:39::i;:::-;41823:29;41840:1;41844:7;41823:8;:29::i;:::-;41884:1;41865:9;:15;41875:4;41865:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41913:1;41896:9;:13;41906:2;41896:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41944:2;41925:7;:16;41933:7;41925:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41983:7;41979:2;41964:27;;41973:4;41964:27;;;;;;;;;;;;42004:38;42024:4;42030:2;42034:7;42004:19;:38::i;:::-;41425:625;;;:::o;53983:105::-;54050:30;54061:4;54067:12;:10;:12::i;:::-;54050:10;:30::i;:::-;53983:105;:::o;58254:238::-;58338:22;58346:4;58352:7;58338;:22::i;:::-;58333:152;;58409:4;58377:6;:12;58384:4;58377:12;;;;;;;;;;;:20;;:29;58398:7;58377:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;58460:12;:10;:12::i;:::-;58433:40;;58451:7;58433:40;;58445:4;58433:40;;;;;;;;;;58333:152;58254:238;;:::o;58672:239::-;58756:22;58764:4;58770:7;58756;:22::i;:::-;58752:152;;;58827:5;58795:6;:12;58802:4;58795:12;;;;;;;;;;;:20;;:29;58816:7;58795:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;58879:12;:10;:12::i;:::-;58852:40;;58870:7;58852:40;;58864:4;58852:40;;;;;;;;;;58752:152;58672:239;;:::o;61905:1304::-;62088:1;62069:3;:15;;;:20;62061:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;62160:1;62140:9;;62134:23;;:27;62126:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;62225:1;62200:16;:21;62217:3;62200:21;;;;;;;;;;;;;;;;:26;62192:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59846:3;62326:1;62298:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;:42;;62290:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;62433:16;62479:9;;62462:27;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62452:38;;;;;;62433:57;;62510:13;:23;62524:8;62510:23;;;;;;;;;;;;;;;;;;;;;62509:24;62501:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;62648:23;62674:71;62716:3;62721:9;;62699:32;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62689:43;;;;;;62734:10;62674:14;:71::i;:::-;62648:97;;62852:1;62827:27;;:15;:27;;;;:68;;;;;62858:37;59245:24;62879:15;62858:7;:37::i;:::-;62827:68;62818:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;62953:4;62927:13;:23;62941:8;62927:23;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;62998:27;:15;:25;:27::i;:::-;63036:15;63054:25;:15;:23;:25::i;:::-;63036:43;;63115:7;63091:16;:21;63108:3;63091:21;;;;;;;;;;;;;;;:31;;;;63133:23;63143:3;63148:7;63133:9;:23::i;:::-;63167:32;63180:7;63189:9;;63167:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:32::i;:::-;61996:1213;;;61905:1304;;;;:::o;46963:217::-;47063:16;47071:7;47063;:16::i;:::-;47055:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;47163:9;47141:10;:19;47152:7;47141:19;;;;;;;;;;;:31;;;;;;:::i;:::-;;46963:217;;:::o;42486:315::-;42641:8;42632:17;;:5;:17;;;42624:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;42728:8;42690:18;:25;42709:5;42690:25;;;;;;;;;;;;;;;:35;42716:8;42690:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42774:8;42752:41;;42767:5;42752:41;;;42784:8;42752:41;;;;;;:::i;:::-;;;;;;;;42486:315;;;:::o;61046:739::-;61139:7;61231:2;61210:10;:17;:23;61202:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;61366:28;61460:12;61407:66;;;;;;;;:::i;:::-;;;;;;;;;;;;;61397:77;;;;;;61366:108;;61513:9;61524;61535:7;61604:2;61592:10;61588:19;61582:26;61577:31;;61649:2;61637:10;61633:19;61627:26;61622:31;;61702:2;61690:10;61686:19;61680:26;61677:1;61672:35;61667:40;;61737;61747:20;61769:1;61772;61775;61737:40;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61730:47;;;;;;61046:739;;;;:::o;37482:313::-;37638:28;37648:4;37654:2;37658:7;37638:9;:28::i;:::-;37685:47;37708:4;37714:2;37718:7;37727:4;37685:22;:47::i;:::-;37677:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;37482:313;;;;:::o;34276:94::-;34327:13;34353:9;;;;;;;;;;;;;;34276:94;:::o;33746:281::-;33819:13;33845:23;33860:7;33845:14;:23::i;:::-;33881:21;33905:10;:8;:10::i;:::-;33881:34;;33957:1;33939:7;33933:21;:25;:86;;;;;;;;;;;;;;;;;33985:7;33994:18;:7;:16;:18::i;:::-;33968:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33933:86;33926:93;;;33746:281;;;:::o;32475:305::-;32577:4;32629:25;32614:40;;;:11;:40;;;;:105;;;;32686:33;32671:48;;;:11;:48;;;;32614:105;:158;;;;32736:36;32760:11;32736:23;:36::i;:::-;32614:158;32594:178;;32475:305;;;:::o;38108:127::-;38173:4;38225:1;38197:30;;:7;:16;38205:7;38197:16;;;;;;;;;;;;;;;;;;;;;:30;;;;38190:37;;38108:127;;;:::o;45014:126::-;;;;:::o;45525:125::-;;;;:::o;54378:505::-;54467:22;54475:4;54481:7;54467;:22::i;:::-;54462:414;;54655:41;54683:7;54655:41;;54693:2;54655:19;:41::i;:::-;54769:38;54797:4;54789:13;;54804:2;54769:19;:38::i;:::-;54560:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54506:358;;;;;;;;;;;:::i;:::-;;;;;;;;54462:414;54378:505;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;39008:110::-;39084:26;39094:2;39098:7;39084:26;;;;;;;;;;;;:9;:26::i;:::-;39008:110;;:::o;43589:853::-;43743:4;43764:15;:2;:13;;;:15::i;:::-;43760:675;;;43816:2;43800:36;;;43837:12;:10;:12::i;:::-;43851:4;43857:7;43866:4;43800:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43796:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44058:1;44041:6;:13;:18;44037:328;;44084:60;;;;;;;;;;:::i;:::-;;;;;;;;44037:328;44315:6;44309:13;44300:6;44296:2;44292:15;44285:38;43796:584;43932:41;;;43922:51;;;:6;:51;;;;43915:58;;;;;43760:675;44419:4;44412:11;;43589:853;;;;;;;:::o;19135:723::-;19191:13;19421:1;19412:5;:10;19408:53;;19439:10;;;;;;;;;;;;;;;;;;;;;19408:53;19471:12;19486:5;19471:20;;19502:14;19527:78;19542:1;19534:4;:9;19527:78;;19560:8;;;;;:::i;:::-;;;;19591:2;19583:10;;;;;:::i;:::-;;;19527:78;;;19615:19;19647:6;19637:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19615:39;;19665:154;19681:1;19672:5;:10;19665:154;;19709:1;19699:11;;;;;:::i;:::-;;;19776:2;19768:5;:10;;;;:::i;:::-;19755:2;:24;;;;:::i;:::-;19742:39;;19725:6;19732;19725:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19805:2;19796:11;;;;;:::i;:::-;;;19665:154;;;19843:6;19829:21;;;;;19135:723;;;;:::o;18541:157::-;18626:4;18665:25;18650:40;;;:11;:40;;;;18643:47;;18541:157;;;:::o;20436:451::-;20511:13;20537:19;20582:1;20573:6;20569:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20559:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20537:47;;20595:15;:6;20602:1;20595:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20621;:6;20628:1;20621:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20652:9;20677:1;20668:6;20664:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20652:26;;20647:135;20684:1;20680;:5;20647:135;;;20719:12;20740:3;20732:5;:11;20719:25;;;;;;;:::i;:::-;;;;;20707:6;20714:1;20707:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;20769:1;20759:11;;;;;20687:3;;;;:::i;:::-;;;20647:135;;;;20809:1;20800:5;:10;20792:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20872:6;20858:21;;;20436:451;;;;:::o;39345:319::-;39474:18;39480:2;39484:7;39474:5;:18::i;:::-;39525:53;39556:1;39560:2;39564:7;39573:4;39525:22;:53::i;:::-;39503:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;39345:319;;;:::o;2698:326::-;2758:4;3015:1;2993:7;:19;;;:23;2986:30;;2698:326;;;:::o;40000:439::-;40094:1;40080:16;;:2;:16;;;40072:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40153:16;40161:7;40153;:16::i;:::-;40152:17;40144:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40215:45;40244:1;40248:2;40252:7;40215:20;:45::i;:::-;40290:1;40273:9;:13;40283:2;40273:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40321:2;40302:7;:16;40310:7;40302:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40366:7;40362:2;40341:33;;40358:1;40341:33;;;;;;;;;;;;40387:44;40415:1;40419:2;40423:7;40387:19;:44::i;:::-;40000:439;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:122::-;6023:24;6041:5;6023:24;:::i;:::-;6016:5;6013:35;6003:63;;6062:1;6059;6052:12;6003:63;5950:122;:::o;6078:139::-;6124:5;6162:6;6149:20;6140:29;;6178:33;6205:5;6178:33;:::i;:::-;6078:139;;;;:::o;6223:329::-;6282:6;6331:2;6319:9;6310:7;6306:23;6302:32;6299:119;;;6337:79;;:::i;:::-;6299:119;6457:1;6482:53;6527:7;6518:6;6507:9;6503:22;6482:53;:::i;:::-;6472:63;;6428:117;6223:329;;;;:::o;6558:118::-;6645:24;6663:5;6645:24;:::i;:::-;6640:3;6633:37;6558:118;;:::o;6682:222::-;6775:4;6813:2;6802:9;6798:18;6790:26;;6826:71;6894:1;6883:9;6879:17;6870:6;6826:71;:::i;:::-;6682:222;;;;:::o;6910:474::-;6978:6;6986;7035:2;7023:9;7014:7;7010:23;7006:32;7003:119;;;7041:79;;:::i;:::-;7003:119;7161:1;7186:53;7231:7;7222:6;7211:9;7207:22;7186:53;:::i;:::-;7176:63;;7132:117;7288:2;7314:53;7359:7;7350:6;7339:9;7335:22;7314:53;:::i;:::-;7304:63;;7259:118;6910:474;;;;;:::o;7390:329::-;7449:6;7498:2;7486:9;7477:7;7473:23;7469:32;7466:119;;;7504:79;;:::i;:::-;7466:119;7624:1;7649:53;7694:7;7685:6;7674:9;7670:22;7649:53;:::i;:::-;7639:63;;7595:117;7390:329;;;;:::o;7725:117::-;7834:1;7831;7824:12;7848:117;7957:1;7954;7947:12;7971:117;8080:1;8077;8070:12;8108:553;8166:8;8176:6;8226:3;8219:4;8211:6;8207:17;8203:27;8193:122;;8234:79;;:::i;:::-;8193:122;8347:6;8334:20;8324:30;;8377:18;8369:6;8366:30;8363:117;;;8399:79;;:::i;:::-;8363:117;8513:4;8505:6;8501:17;8489:29;;8567:3;8559:4;8551:6;8547:17;8537:8;8533:32;8530:41;8527:128;;;8574:79;;:::i;:::-;8527:128;8108:553;;;;;:::o;8667:117::-;8776:1;8773;8766:12;8790:180;8838:77;8835:1;8828:88;8935:4;8932:1;8925:15;8959:4;8956:1;8949:15;8976:281;9059:27;9081:4;9059:27;:::i;:::-;9051:6;9047:40;9189:6;9177:10;9174:22;9153:18;9141:10;9138:34;9135:62;9132:88;;;9200:18;;:::i;:::-;9132:88;9240:10;9236:2;9229:22;9019:238;8976:281;;:::o;9263:129::-;9297:6;9324:20;;:::i;:::-;9314:30;;9353:33;9381:4;9373:6;9353:33;:::i;:::-;9263:129;;;:::o;9398:307::-;9459:4;9549:18;9541:6;9538:30;9535:56;;;9571:18;;:::i;:::-;9535:56;9609:29;9631:6;9609:29;:::i;:::-;9601:37;;9693:4;9687;9683:15;9675:23;;9398:307;;;:::o;9711:146::-;9808:6;9803:3;9798;9785:30;9849:1;9840:6;9835:3;9831:16;9824:27;9711:146;;;:::o;9863:423::-;9940:5;9965:65;9981:48;10022:6;9981:48;:::i;:::-;9965:65;:::i;:::-;9956:74;;10053:6;10046:5;10039:21;10091:4;10084:5;10080:16;10129:3;10120:6;10115:3;10111:16;10108:25;10105:112;;;10136:79;;:::i;:::-;10105:112;10226:54;10273:6;10268:3;10263;10226:54;:::i;:::-;9946:340;9863:423;;;;;:::o;10305:338::-;10360:5;10409:3;10402:4;10394:6;10390:17;10386:27;10376:122;;10417:79;;:::i;:::-;10376:122;10534:6;10521:20;10559:78;10633:3;10625:6;10618:4;10610:6;10606:17;10559:78;:::i;:::-;10550:87;;10366:277;10305:338;;;;:::o;10649:852::-;10738:6;10746;10754;10803:2;10791:9;10782:7;10778:23;10774:32;10771:119;;;10809:79;;:::i;:::-;10771:119;10957:1;10946:9;10942:17;10929:31;10987:18;10979:6;10976:30;10973:117;;;11009:79;;:::i;:::-;10973:117;11122:65;11179:7;11170:6;11159:9;11155:22;11122:65;:::i;:::-;11104:83;;;;10900:297;11264:2;11253:9;11249:18;11236:32;11295:18;11287:6;11284:30;11281:117;;;11317:79;;:::i;:::-;11281:117;11422:62;11476:7;11467:6;11456:9;11452:22;11422:62;:::i;:::-;11412:72;;11207:287;10649:852;;;;;:::o;11507:674::-;11587:6;11595;11603;11652:2;11640:9;11631:7;11627:23;11623:32;11620:119;;;11658:79;;:::i;:::-;11620:119;11778:1;11803:53;11848:7;11839:6;11828:9;11824:22;11803:53;:::i;:::-;11793:63;;11749:117;11933:2;11922:9;11918:18;11905:32;11964:18;11956:6;11953:30;11950:117;;;11986:79;;:::i;:::-;11950:117;12099:65;12156:7;12147:6;12136:9;12132:22;12099:65;:::i;:::-;12081:83;;;;11876:298;11507:674;;;;;:::o;12187:116::-;12257:21;12272:5;12257:21;:::i;:::-;12250:5;12247:32;12237:60;;12293:1;12290;12283:12;12237:60;12187:116;:::o;12309:133::-;12352:5;12390:6;12377:20;12368:29;;12406:30;12430:5;12406:30;:::i;:::-;12309:133;;;;:::o;12448:468::-;12513:6;12521;12570:2;12558:9;12549:7;12545:23;12541:32;12538:119;;;12576:79;;:::i;:::-;12538:119;12696:1;12721:53;12766:7;12757:6;12746:9;12742:22;12721:53;:::i;:::-;12711:63;;12667:117;12823:2;12849:50;12891:7;12882:6;12871:9;12867:22;12849:50;:::i;:::-;12839:60;;12794:115;12448:468;;;;;:::o;12922:997::-;13020:6;13028;13036;13044;13093:2;13081:9;13072:7;13068:23;13064:32;13061:119;;;13099:79;;:::i;:::-;13061:119;13219:1;13244:53;13289:7;13280:6;13269:9;13265:22;13244:53;:::i;:::-;13234:63;;13190:117;13374:2;13363:9;13359:18;13346:32;13405:18;13397:6;13394:30;13391:117;;;13427:79;;:::i;:::-;13391:117;13540:65;13597:7;13588:6;13577:9;13573:22;13540:65;:::i;:::-;13522:83;;;;13317:298;13682:2;13671:9;13667:18;13654:32;13713:18;13705:6;13702:30;13699:117;;;13735:79;;:::i;:::-;13699:117;13840:62;13894:7;13885:6;13874:9;13870:22;13840:62;:::i;:::-;13830:72;;13625:287;12922:997;;;;;;;:::o;13925:::-;14023:6;14031;14039;14047;14096:2;14084:9;14075:7;14071:23;14067:32;14064:119;;;14102:79;;:::i;:::-;14064:119;14222:1;14247:53;14292:7;14283:6;14272:9;14268:22;14247:53;:::i;:::-;14237:63;;14193:117;14377:2;14366:9;14362:18;14349:32;14408:18;14400:6;14397:30;14394:117;;;14430:79;;:::i;:::-;14394:117;14543:65;14600:7;14591:6;14580:9;14576:22;14543:65;:::i;:::-;14525:83;;;;14320:298;14685:2;14674:9;14670:18;14657:32;14716:18;14708:6;14705:30;14702:117;;;14738:79;;:::i;:::-;14702:117;14843:62;14897:7;14888:6;14877:9;14873:22;14843:62;:::i;:::-;14833:72;;14628:287;13925:997;;;;;;;:::o;14928:943::-;15023:6;15031;15039;15047;15096:3;15084:9;15075:7;15071:23;15067:33;15064:120;;;15103:79;;:::i;:::-;15064:120;15223:1;15248:53;15293:7;15284:6;15273:9;15269:22;15248:53;:::i;:::-;15238:63;;15194:117;15350:2;15376:53;15421:7;15412:6;15401:9;15397:22;15376:53;:::i;:::-;15366:63;;15321:118;15478:2;15504:53;15549:7;15540:6;15529:9;15525:22;15504:53;:::i;:::-;15494:63;;15449:118;15634:2;15623:9;15619:18;15606:32;15665:18;15657:6;15654:30;15651:117;;;15687:79;;:::i;:::-;15651:117;15792:62;15846:7;15837:6;15826:9;15822:22;15792:62;:::i;:::-;15782:72;;15577:287;14928:943;;;;;;;:::o;15877:474::-;15945:6;15953;16002:2;15990:9;15981:7;15977:23;15973:32;15970:119;;;16008:79;;:::i;:::-;15970:119;16128:1;16153:53;16198:7;16189:6;16178:9;16174:22;16153:53;:::i;:::-;16143:63;;16099:117;16255:2;16281:53;16326:7;16317:6;16306:9;16302:22;16281:53;:::i;:::-;16271:63;;16226:118;15877:474;;;;;:::o;16357:180::-;16405:77;16402:1;16395:88;16502:4;16499:1;16492:15;16526:4;16523:1;16516:15;16543:320;16587:6;16624:1;16618:4;16614:12;16604:22;;16671:1;16665:4;16661:12;16692:18;16682:81;;16748:4;16740:6;16736:17;16726:27;;16682:81;16810:2;16802:6;16799:14;16779:18;16776:38;16773:84;;16829:18;;:::i;:::-;16773:84;16594:269;16543:320;;;:::o;16869:220::-;17009:34;17005:1;16997:6;16993:14;16986:58;17078:3;17073:2;17065:6;17061:15;17054:28;16869:220;:::o;17095:366::-;17237:3;17258:67;17322:2;17317:3;17258:67;:::i;:::-;17251:74;;17334:93;17423:3;17334:93;:::i;:::-;17452:2;17447:3;17443:12;17436:19;;17095:366;;;:::o;17467:419::-;17633:4;17671:2;17660:9;17656:18;17648:26;;17720:9;17714:4;17710:20;17706:1;17695:9;17691:17;17684:47;17748:131;17874:4;17748:131;:::i;:::-;17740:139;;17467:419;;;:::o;17892:249::-;18032:34;18028:1;18020:6;18016:14;18009:58;18101:32;18096:2;18088:6;18084:15;18077:57;17892:249;:::o;18147:366::-;18289:3;18310:67;18374:2;18369:3;18310:67;:::i;:::-;18303:74;;18386:93;18475:3;18386:93;:::i;:::-;18504:2;18499:3;18495:12;18488:19;;18147:366;;;:::o;18519:419::-;18685:4;18723:2;18712:9;18708:18;18700:26;;18772:9;18766:4;18762:20;18758:1;18747:9;18743:17;18736:47;18800:131;18926:4;18800:131;:::i;:::-;18792:139;;18519:419;;;:::o;18944:233::-;19084:34;19080:1;19072:6;19068:14;19061:58;19153:16;19148:2;19140:6;19136:15;19129:41;18944:233;:::o;19183:366::-;19325:3;19346:67;19410:2;19405:3;19346:67;:::i;:::-;19339:74;;19422:93;19511:3;19422:93;:::i;:::-;19540:2;19535:3;19531:12;19524:19;;19183:366;;;:::o;19555:419::-;19721:4;19759:2;19748:9;19744:18;19736:26;;19808:9;19802:4;19798:20;19794:1;19783:9;19779:17;19772:47;19836:131;19962:4;19836:131;:::i;:::-;19828:139;;19555:419;;;:::o;19980:234::-;20120:34;20116:1;20108:6;20104:14;20097:58;20189:17;20184:2;20176:6;20172:15;20165:42;19980:234;:::o;20220:366::-;20362:3;20383:67;20447:2;20442:3;20383:67;:::i;:::-;20376:74;;20459:93;20548:3;20459:93;:::i;:::-;20577:2;20572:3;20568:12;20561:19;;20220:366;;;:::o;20592:419::-;20758:4;20796:2;20785:9;20781:18;20773:26;;20845:9;20839:4;20835:20;20831:1;20820:9;20816:17;20809:47;20873:131;20999:4;20873:131;:::i;:::-;20865:139;;20592:419;;;:::o;21017:174::-;21157:26;21153:1;21145:6;21141:14;21134:50;21017:174;:::o;21197:366::-;21339:3;21360:67;21424:2;21419:3;21360:67;:::i;:::-;21353:74;;21436:93;21525:3;21436:93;:::i;:::-;21554:2;21549:3;21545:12;21538:19;;21197:366;;;:::o;21569:419::-;21735:4;21773:2;21762:9;21758:18;21750:26;;21822:9;21816:4;21812:20;21808:1;21797:9;21793:17;21786:47;21850:131;21976:4;21850:131;:::i;:::-;21842:139;;21569:419;;;:::o;21994:228::-;22134:34;22130:1;22122:6;22118:14;22111:58;22203:11;22198:2;22190:6;22186:15;22179:36;21994:228;:::o;22228:366::-;22370:3;22391:67;22455:2;22450:3;22391:67;:::i;:::-;22384:74;;22467:93;22556:3;22467:93;:::i;:::-;22585:2;22580:3;22576:12;22569:19;;22228:366;;;:::o;22600:419::-;22766:4;22804:2;22793:9;22789:18;22781:26;;22853:9;22847:4;22843:20;22839:1;22828:9;22824:17;22817:47;22881:131;23007:4;22881:131;:::i;:::-;22873:139;;22600:419;;;:::o;23025:94::-;23058:8;23106:5;23102:2;23098:14;23077:35;;23025:94;;;:::o;23125:::-;23164:7;23193:20;23207:5;23193:20;:::i;:::-;23182:31;;23125:94;;;:::o;23225:100::-;23264:7;23293:26;23313:5;23293:26;:::i;:::-;23282:37;;23225:100;;;:::o;23331:157::-;23436:45;23456:24;23474:5;23456:24;:::i;:::-;23436:45;:::i;:::-;23431:3;23424:58;23331:157;;:::o;23494:79::-;23533:7;23562:5;23551:16;;23494:79;;;:::o;23579:157::-;23684:45;23704:24;23722:5;23704:24;:::i;:::-;23684:45;:::i;:::-;23679:3;23672:58;23579:157;;:::o;23742:148::-;23844:11;23881:3;23866:18;;23742:148;;;;:::o;23920:330::-;24036:3;24057:89;24139:6;24134:3;24057:89;:::i;:::-;24050:96;;24156:56;24205:6;24200:3;24193:5;24156:56;:::i;:::-;24237:6;24232:3;24228:16;24221:23;;23920:330;;;;;:::o;24256:577::-;24454:3;24469:75;24540:3;24531:6;24469:75;:::i;:::-;24569:2;24564:3;24560:12;24553:19;;24582:75;24653:3;24644:6;24582:75;:::i;:::-;24682:2;24677:3;24673:12;24666:19;;24702:105;24803:3;24794:6;24786;24702:105;:::i;:::-;24695:112;;24824:3;24817:10;;24256:577;;;;;;;:::o;24839:167::-;24979:19;24975:1;24967:6;24963:14;24956:43;24839:167;:::o;25012:366::-;25154:3;25175:67;25239:2;25234:3;25175:67;:::i;:::-;25168:74;;25251:93;25340:3;25251:93;:::i;:::-;25369:2;25364:3;25360:12;25353:19;;25012:366;;;:::o;25384:419::-;25550:4;25588:2;25577:9;25573:18;25565:26;;25637:9;25631:4;25627:20;25623:1;25612:9;25608:17;25601:47;25665:131;25791:4;25665:131;:::i;:::-;25657:139;;25384:419;;;:::o;25809:390::-;25915:3;25943:39;25976:5;25943:39;:::i;:::-;25998:89;26080:6;26075:3;25998:89;:::i;:::-;25991:96;;26096:65;26154:6;26149:3;26142:4;26135:5;26131:16;26096:65;:::i;:::-;26186:6;26181:3;26177:16;26170:23;;25919:280;25809:390;;;;:::o;26205:435::-;26385:3;26407:95;26498:3;26489:6;26407:95;:::i;:::-;26400:102;;26519:95;26610:3;26601:6;26519:95;:::i;:::-;26512:102;;26631:3;26624:10;;26205:435;;;;;:::o;26646:224::-;26786:34;26782:1;26774:6;26770:14;26763:58;26855:7;26850:2;26842:6;26838:15;26831:32;26646:224;:::o;26876:366::-;27018:3;27039:67;27103:2;27098:3;27039:67;:::i;:::-;27032:74;;27115:93;27204:3;27115:93;:::i;:::-;27233:2;27228:3;27224:12;27217:19;;26876:366;;;:::o;27248:419::-;27414:4;27452:2;27441:9;27437:18;27429:26;;27501:9;27495:4;27491:20;27487:1;27476:9;27472:17;27465:47;27529:131;27655:4;27529:131;:::i;:::-;27521:139;;27248:419;;;:::o;27673:223::-;27813:34;27809:1;27801:6;27797:14;27790:58;27882:6;27877:2;27869:6;27865:15;27858:31;27673:223;:::o;27902:366::-;28044:3;28065:67;28129:2;28124:3;28065:67;:::i;:::-;28058:74;;28141:93;28230:3;28141:93;:::i;:::-;28259:2;28254:3;28250:12;28243:19;;27902:366;;;:::o;28274:419::-;28440:4;28478:2;28467:9;28463:18;28455:26;;28527:9;28521:4;28517:20;28513:1;28502:9;28498:17;28491:47;28555:131;28681:4;28555:131;:::i;:::-;28547:139;;28274:419;;;:::o;28699:180::-;28747:77;28744:1;28737:88;28844:4;28841:1;28834:15;28868:4;28865:1;28858:15;28885:194;28925:4;28945:20;28963:1;28945:20;:::i;:::-;28940:25;;28979:20;28997:1;28979:20;:::i;:::-;28974:25;;29023:1;29020;29016:9;29008:17;;29047:1;29041:4;29038:11;29035:37;;;29052:18;;:::i;:::-;29035:37;28885:194;;;;:::o;29085:191::-;29125:3;29144:20;29162:1;29144:20;:::i;:::-;29139:25;;29178:20;29196:1;29178:20;:::i;:::-;29173:25;;29221:1;29218;29214:9;29207:16;;29242:3;29239:1;29236:10;29233:36;;;29249:18;;:::i;:::-;29233:36;29085:191;;;;:::o;29282:171::-;29422:23;29418:1;29410:6;29406:14;29399:47;29282:171;:::o;29459:366::-;29601:3;29622:67;29686:2;29681:3;29622:67;:::i;:::-;29615:74;;29698:93;29787:3;29698:93;:::i;:::-;29816:2;29811:3;29807:12;29800:19;;29459:366;;;:::o;29831:419::-;29997:4;30035:2;30024:9;30020:18;30012:26;;30084:9;30078:4;30074:20;30070:1;30059:9;30055:17;30048:47;30112:131;30238:4;30112:131;:::i;:::-;30104:139;;29831:419;;;:::o;30256:165::-;30396:17;30392:1;30384:6;30380:14;30373:41;30256:165;:::o;30427:366::-;30569:3;30590:67;30654:2;30649:3;30590:67;:::i;:::-;30583:74;;30666:93;30755:3;30666:93;:::i;:::-;30784:2;30779:3;30775:12;30768:19;;30427:366;;;:::o;30799:419::-;30965:4;31003:2;30992:9;30988:18;30980:26;;31052:9;31046:4;31042:20;31038:1;31027:9;31023:17;31016:47;31080:131;31206:4;31080:131;:::i;:::-;31072:139;;30799:419;;;:::o;31224:169::-;31364:21;31360:1;31352:6;31348:14;31341:45;31224:169;:::o;31399:366::-;31541:3;31562:67;31626:2;31621:3;31562:67;:::i;:::-;31555:74;;31638:93;31727:3;31638:93;:::i;:::-;31756:2;31751:3;31747:12;31740:19;;31399:366;;;:::o;31771:419::-;31937:4;31975:2;31964:9;31960:18;31952:26;;32024:9;32018:4;32014:20;32010:1;31999:9;31995:17;31988:47;32052:131;32178:4;32052:131;:::i;:::-;32044:139;;31771:419;;;:::o;32196:174::-;32336:26;32332:1;32324:6;32320:14;32313:50;32196:174;:::o;32376:366::-;32518:3;32539:67;32603:2;32598:3;32539:67;:::i;:::-;32532:74;;32615:93;32704:3;32615:93;:::i;:::-;32733:2;32728:3;32724:12;32717:19;;32376:366;;;:::o;32748:419::-;32914:4;32952:2;32941:9;32937:18;32929:26;;33001:9;32995:4;32991:20;32987:1;32976:9;32972:17;32965:47;33029:131;33155:4;33029:131;:::i;:::-;33021:139;;32748:419;;;:::o;33173:295::-;33315:3;33337:105;33438:3;33429:6;33421;33337:105;:::i;:::-;33330:112;;33459:3;33452:10;;33173:295;;;;;:::o;33474:172::-;33614:24;33610:1;33602:6;33598:14;33591:48;33474:172;:::o;33652:366::-;33794:3;33815:67;33879:2;33874:3;33815:67;:::i;:::-;33808:74;;33891:93;33980:3;33891:93;:::i;:::-;34009:2;34004:3;34000:12;33993:19;;33652:366;;;:::o;34024:419::-;34190:4;34228:2;34217:9;34213:18;34205:26;;34277:9;34271:4;34267:20;34263:1;34252:9;34248:17;34241:47;34305:131;34431:4;34305:131;:::i;:::-;34297:139;;34024:419;;;:::o;34449:436::-;34619:3;34634:75;34705:3;34696:6;34634:75;:::i;:::-;34734:2;34729:3;34725:12;34718:19;;34754:105;34855:3;34846:6;34838;34754:105;:::i;:::-;34747:112;;34876:3;34869:10;;34449:436;;;;;;:::o;34891:233::-;35031:34;35027:1;35019:6;35015:14;35008:58;35100:16;35095:2;35087:6;35083:15;35076:41;34891:233;:::o;35130:366::-;35272:3;35293:67;35357:2;35352:3;35293:67;:::i;:::-;35286:74;;35369:93;35458:3;35369:93;:::i;:::-;35487:2;35482:3;35478:12;35471:19;;35130:366;;;:::o;35502:419::-;35668:4;35706:2;35695:9;35691:18;35683:26;;35755:9;35749:4;35745:20;35741:1;35730:9;35726:17;35719:47;35783:131;35909:4;35783:131;:::i;:::-;35775:139;;35502:419;;;:::o;35927:141::-;35976:4;35999:3;35991:11;;36022:3;36019:1;36012:14;36056:4;36053:1;36043:18;36035:26;;35927:141;;;:::o;36074:93::-;36111:6;36158:2;36153;36146:5;36142:14;36138:23;36128:33;;36074:93;;;:::o;36173:107::-;36217:8;36267:5;36261:4;36257:16;36236:37;;36173:107;;;;:::o;36286:393::-;36355:6;36405:1;36393:10;36389:18;36428:97;36458:66;36447:9;36428:97;:::i;:::-;36546:39;36576:8;36565:9;36546:39;:::i;:::-;36534:51;;36618:4;36614:9;36607:5;36603:21;36594:30;;36667:4;36657:8;36653:19;36646:5;36643:30;36633:40;;36362:317;;36286:393;;;;;:::o;36685:60::-;36713:3;36734:5;36727:12;;36685:60;;;:::o;36751:142::-;36801:9;36834:53;36852:34;36861:24;36879:5;36861:24;:::i;:::-;36852:34;:::i;:::-;36834:53;:::i;:::-;36821:66;;36751:142;;;:::o;36899:75::-;36942:3;36963:5;36956:12;;36899:75;;;:::o;36980:269::-;37090:39;37121:7;37090:39;:::i;:::-;37151:91;37200:41;37224:16;37200:41;:::i;:::-;37192:6;37185:4;37179:11;37151:91;:::i;:::-;37145:4;37138:105;37056:193;36980:269;;;:::o;37255:73::-;37300:3;37255:73;:::o;37334:189::-;37411:32;;:::i;:::-;37452:65;37510:6;37502;37496:4;37452:65;:::i;:::-;37387:136;37334:189;;:::o;37529:186::-;37589:120;37606:3;37599:5;37596:14;37589:120;;;37660:39;37697:1;37690:5;37660:39;:::i;:::-;37633:1;37626:5;37622:13;37613:22;;37589:120;;;37529:186;;:::o;37721:543::-;37822:2;37817:3;37814:11;37811:446;;;37856:38;37888:5;37856:38;:::i;:::-;37940:29;37958:10;37940:29;:::i;:::-;37930:8;37926:44;38123:2;38111:10;38108:18;38105:49;;;38144:8;38129:23;;38105:49;38167:80;38223:22;38241:3;38223:22;:::i;:::-;38213:8;38209:37;38196:11;38167:80;:::i;:::-;37826:431;;37811:446;37721:543;;;:::o;38270:117::-;38324:8;38374:5;38368:4;38364:16;38343:37;;38270:117;;;;:::o;38393:169::-;38437:6;38470:51;38518:1;38514:6;38506:5;38503:1;38499:13;38470:51;:::i;:::-;38466:56;38551:4;38545;38541:15;38531:25;;38444:118;38393:169;;;;:::o;38567:295::-;38643:4;38789:29;38814:3;38808:4;38789:29;:::i;:::-;38781:37;;38851:3;38848:1;38844:11;38838:4;38835:21;38827:29;;38567:295;;;;:::o;38867:1395::-;38984:37;39017:3;38984:37;:::i;:::-;39086:18;39078:6;39075:30;39072:56;;;39108:18;;:::i;:::-;39072:56;39152:38;39184:4;39178:11;39152:38;:::i;:::-;39237:67;39297:6;39289;39283:4;39237:67;:::i;:::-;39331:1;39355:4;39342:17;;39387:2;39379:6;39376:14;39404:1;39399:618;;;;40061:1;40078:6;40075:77;;;40127:9;40122:3;40118:19;40112:26;40103:35;;40075:77;40178:67;40238:6;40231:5;40178:67;:::i;:::-;40172:4;40165:81;40034:222;39369:887;;39399:618;39451:4;39447:9;39439:6;39435:22;39485:37;39517:4;39485:37;:::i;:::-;39544:1;39558:208;39572:7;39569:1;39566:14;39558:208;;;39651:9;39646:3;39642:19;39636:26;39628:6;39621:42;39702:1;39694:6;39690:14;39680:24;;39749:2;39738:9;39734:18;39721:31;;39595:4;39592:1;39588:12;39583:17;;39558:208;;;39794:6;39785:7;39782:19;39779:179;;;39852:9;39847:3;39843:19;39837:26;39895:48;39937:4;39929:6;39925:17;39914:9;39895:48;:::i;:::-;39887:6;39880:64;39802:156;39779:179;40004:1;40000;39992:6;39988:14;39984:22;39978:4;39971:36;39406:611;;;39369:887;;38959:1303;;;38867:1395;;:::o;40268:175::-;40408:27;40404:1;40396:6;40392:14;40385:51;40268:175;:::o;40449:366::-;40591:3;40612:67;40676:2;40671:3;40612:67;:::i;:::-;40605:74;;40688:93;40777:3;40688:93;:::i;:::-;40806:2;40801:3;40797:12;40790:19;;40449:366;;;:::o;40821:419::-;40987:4;41025:2;41014:9;41010:18;41002:26;;41074:9;41068:4;41064:20;41060:1;41049:9;41045:17;41038:47;41102:131;41228:4;41102:131;:::i;:::-;41094:139;;40821:419;;;:::o;41246:175::-;41386:27;41382:1;41374:6;41370:14;41363:51;41246:175;:::o;41427:366::-;41569:3;41590:67;41654:2;41649:3;41590:67;:::i;:::-;41583:74;;41666:93;41755:3;41666:93;:::i;:::-;41784:2;41779:3;41775:12;41768:19;;41427:366;;;:::o;41799:419::-;41965:4;42003:2;41992:9;41988:18;41980:26;;42052:9;42046:4;42042:20;42038:1;42027:9;42023:17;42016:47;42080:131;42206:4;42080:131;:::i;:::-;42072:139;;41799:419;;;:::o;42224:214::-;42364:66;42360:1;42352:6;42348:14;42341:90;42224:214;:::o;42444:402::-;42604:3;42625:85;42707:2;42702:3;42625:85;:::i;:::-;42618:92;;42719:93;42808:3;42719:93;:::i;:::-;42837:2;42832:3;42828:12;42821:19;;42444:402;;;:::o;42852:79::-;42891:7;42920:5;42909:16;;42852:79;;;:::o;42937:157::-;43042:45;43062:24;43080:5;43062:24;:::i;:::-;43042:45;:::i;:::-;43037:3;43030:58;42937:157;;:::o;43100:522::-;43313:3;43335:148;43479:3;43335:148;:::i;:::-;43328:155;;43493:75;43564:3;43555:6;43493:75;:::i;:::-;43593:2;43588:3;43584:12;43577:19;;43613:3;43606:10;;43100:522;;;;:::o;43628:86::-;43663:7;43703:4;43696:5;43692:16;43681:27;;43628:86;;;:::o;43720:112::-;43803:22;43819:5;43803:22;:::i;:::-;43798:3;43791:35;43720:112;;:::o;43838:545::-;44011:4;44049:3;44038:9;44034:19;44026:27;;44063:71;44131:1;44120:9;44116:17;44107:6;44063:71;:::i;:::-;44144:68;44208:2;44197:9;44193:18;44184:6;44144:68;:::i;:::-;44222:72;44290:2;44279:9;44275:18;44266:6;44222:72;:::i;:::-;44304;44372:2;44361:9;44357:18;44348:6;44304:72;:::i;:::-;43838:545;;;;;;;:::o;44389:237::-;44529:34;44525:1;44517:6;44513:14;44506:58;44598:20;44593:2;44585:6;44581:15;44574:45;44389:237;:::o;44632:366::-;44774:3;44795:67;44859:2;44854:3;44795:67;:::i;:::-;44788:74;;44871:93;44960:3;44871:93;:::i;:::-;44989:2;44984:3;44980:12;44973:19;;44632:366;;;:::o;45004:419::-;45170:4;45208:2;45197:9;45193:18;45185:26;;45257:9;45251:4;45247:20;45243:1;45232:9;45228:17;45221:47;45285:131;45411:4;45285:131;:::i;:::-;45277:139;;45004:419;;;:::o;45429:173::-;45569:25;45565:1;45557:6;45553:14;45546:49;45429:173;:::o;45608:402::-;45768:3;45789:85;45871:2;45866:3;45789:85;:::i;:::-;45782:92;;45883:93;45972:3;45883:93;:::i;:::-;46001:2;45996:3;45992:12;45985:19;;45608:402;;;:::o;46016:167::-;46156:19;46152:1;46144:6;46140:14;46133:43;46016:167;:::o;46189:402::-;46349:3;46370:85;46452:2;46447:3;46370:85;:::i;:::-;46363:92;;46464:93;46553:3;46464:93;:::i;:::-;46582:2;46577:3;46573:12;46566:19;;46189:402;;;:::o;46597:967::-;46979:3;47001:148;47145:3;47001:148;:::i;:::-;46994:155;;47166:95;47257:3;47248:6;47166:95;:::i;:::-;47159:102;;47278:148;47422:3;47278:148;:::i;:::-;47271:155;;47443:95;47534:3;47525:6;47443:95;:::i;:::-;47436:102;;47555:3;47548:10;;46597:967;;;;;:::o;47570:98::-;47621:6;47655:5;47649:12;47639:22;;47570:98;;;:::o;47674:168::-;47757:11;47791:6;47786:3;47779:19;47831:4;47826:3;47822:14;47807:29;;47674:168;;;;:::o;47848:373::-;47934:3;47962:38;47994:5;47962:38;:::i;:::-;48016:70;48079:6;48074:3;48016:70;:::i;:::-;48009:77;;48095:65;48153:6;48148:3;48141:4;48134:5;48130:16;48095:65;:::i;:::-;48185:29;48207:6;48185:29;:::i;:::-;48180:3;48176:39;48169:46;;47938:283;47848:373;;;;:::o;48227:640::-;48422:4;48460:3;48449:9;48445:19;48437:27;;48474:71;48542:1;48531:9;48527:17;48518:6;48474:71;:::i;:::-;48555:72;48623:2;48612:9;48608:18;48599:6;48555:72;:::i;:::-;48637;48705:2;48694:9;48690:18;48681:6;48637:72;:::i;:::-;48756:9;48750:4;48746:20;48741:2;48730:9;48726:18;48719:48;48784:76;48855:4;48846:6;48784:76;:::i;:::-;48776:84;;48227:640;;;;;;;:::o;48873:141::-;48929:5;48960:6;48954:13;48945:22;;48976:32;49002:5;48976:32;:::i;:::-;48873:141;;;;:::o;49020:349::-;49089:6;49138:2;49126:9;49117:7;49113:23;49109:32;49106:119;;;49144:79;;:::i;:::-;49106:119;49264:1;49289:63;49344:7;49335:6;49324:9;49320:22;49289:63;:::i;:::-;49279:73;;49235:127;49020:349;;;;:::o;49375:233::-;49414:3;49437:24;49455:5;49437:24;:::i;:::-;49428:33;;49483:66;49476:5;49473:77;49470:103;;49553:18;;:::i;:::-;49470:103;49600:1;49593:5;49589:13;49582:20;;49375:233;;;:::o;49614:180::-;49662:77;49659:1;49652:88;49759:4;49756:1;49749:15;49783:4;49780:1;49773:15;49800:185;49840:1;49857:20;49875:1;49857:20;:::i;:::-;49852:25;;49891:20;49909:1;49891:20;:::i;:::-;49886:25;;49930:1;49920:35;;49935:18;;:::i;:::-;49920:35;49977:1;49974;49970:9;49965:14;;49800:185;;;;:::o;49991:176::-;50023:1;50040:20;50058:1;50040:20;:::i;:::-;50035:25;;50074:20;50092:1;50074:20;:::i;:::-;50069:25;;50113:1;50103:35;;50118:18;;:::i;:::-;50103:35;50159:1;50156;50152:9;50147:14;;49991:176;;;;:::o;50173:180::-;50221:77;50218:1;50211:88;50318:4;50315:1;50308:15;50342:4;50339:1;50332:15;50359:410;50399:7;50422:20;50440:1;50422:20;:::i;:::-;50417:25;;50456:20;50474:1;50456:20;:::i;:::-;50451:25;;50511:1;50508;50504:9;50533:30;50551:11;50533:30;:::i;:::-;50522:41;;50712:1;50703:7;50699:15;50696:1;50693:22;50673:1;50666:9;50646:83;50623:139;;50742:18;;:::i;:::-;50623:139;50407:362;50359:410;;;;:::o;50775:171::-;50814:3;50837:24;50855:5;50837:24;:::i;:::-;50828:33;;50883:4;50876:5;50873:15;50870:41;;50891:18;;:::i;:::-;50870:41;50938:1;50931:5;50927:13;50920:20;;50775:171;;;:::o;50952:182::-;51092:34;51088:1;51080:6;51076:14;51069:58;50952:182;:::o;51140:366::-;51282:3;51303:67;51367:2;51362:3;51303:67;:::i;:::-;51296:74;;51379:93;51468:3;51379:93;:::i;:::-;51497:2;51492:3;51488:12;51481:19;;51140:366;;;:::o;51512:419::-;51678:4;51716:2;51705:9;51701:18;51693:26;;51765:9;51759:4;51755:20;51751:1;51740:9;51736:17;51729:47;51793:131;51919:4;51793:131;:::i;:::-;51785:139;;51512:419;;;:::o;51937:182::-;52077:34;52073:1;52065:6;52061:14;52054:58;51937:182;:::o;52125:366::-;52267:3;52288:67;52352:2;52347:3;52288:67;:::i;:::-;52281:74;;52364:93;52453:3;52364:93;:::i;:::-;52482:2;52477:3;52473:12;52466:19;;52125:366;;;:::o;52497:419::-;52663:4;52701:2;52690:9;52686:18;52678:26;;52750:9;52744:4;52740:20;52736:1;52725:9;52721:17;52714:47;52778:131;52904:4;52778:131;:::i;:::-;52770:139;;52497:419;;;:::o;52922:178::-;53062:30;53058:1;53050:6;53046:14;53039:54;52922:178;:::o;53106:366::-;53248:3;53269:67;53333:2;53328:3;53269:67;:::i;:::-;53262:74;;53345:93;53434:3;53345:93;:::i;:::-;53463:2;53458:3;53454:12;53447:19;;53106:366;;;:::o;53478:419::-;53644:4;53682:2;53671:9;53667:18;53659:26;;53731:9;53725:4;53721:20;53717:1;53706:9;53702:17;53695:47;53759:131;53885:4;53759:131;:::i;:::-;53751:139;;53478:419;;;:::o

Swarm Source

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