ETH Price: $2,387.56 (-3.64%)

Token

The Starry Night Original (The Starry Night Original)
 

Overview

Max Total Supply

78 The Starry Night Original

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
undergrind.eth
Balance
1 The Starry Night Original
0xC5CB7E5a2292d7661683250C911Ac6470C4eA7D1
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:
The_Starry_Night_Original

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-22
*/

// 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.8.0) (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 // Deprecated in v4.8
    }

    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");
        }
    }

    /**
     * @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 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/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: StarryNightOriginal.sol



pragma solidity ^0.8.0;






/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    // Mapping to keep track of used token IDs
    mapping(uint256 => bool) private _usedTokenIds;

    function _mintRandom(address to, uint256 quantity) internal virtual {
        if (to == address(0)) {
            revert MintToZeroAddress();
        }
        if (quantity == 0) {
            revert MintZeroQuantity();
        }
        _beforeTokenTransfers(address(0), to, 0, quantity);

        uint256[] memory tokenIds = new uint256[](quantity);
        uint256[] memory allTokenIds = new uint256[](254);
        for (uint256 i = 0; i < 254; i++) {
            allTokenIds[i] = i + 36;
        }

        // Shuffle the array of all possible token IDs
        for (uint256 i = 253; i > 0; i--) {
            uint256 j = uint256(keccak256(abi.encodePacked(block.timestamp, i))) % (i + 1);
            (allTokenIds[i], allTokenIds[j]) = (allTokenIds[j], allTokenIds[i]);
        }

        // Select the first `quantity` shuffled token IDs as the ones to mint
        for (uint256 i = 0; i < quantity; i++) {
            uint256 tokenId = allTokenIds[i];
            _usedTokenIds[tokenId] = true;
            tokenIds[i] = tokenId;

            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            assembly {
                let toMasked := and(to, _BITMASK_ADDRESS)
                log4(
                    0,
                0,
                _TRANSFER_EVENT_SIGNATURE,
                0,
                toMasked,
                tokenId
                )
            }
        }

        _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
        _currentIndex += quantity;

        _afterTokenTransfers(address(0), to, 0, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}


/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))
            // prettier-ignore
            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if `from` is a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For gas efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperator(address from, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // This code prioritizes runtime gas costs on a chain with the registry.
            // As such, we will not use `extcodesize`, but rather abuse the behavior
            // of `staticcall` returning 1 when called on an empty / missing contract,
            // to avoid reverting when a chain does not have the registry.

            if enabled {
                // Check if `from` is not equal to `msg.sender`,
                // discarding the upper 96 bits of `from` in case they are dirty.
                if iszero(eq(shr(96, shl(96, from)), caller())) {
                    // Store the function selector of `isOperatorAllowed(address,address)`,
                    // shifted left by 6 bytes, which is enough for 8tb of memory.
                    // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
                    mstore(0x00, 0xc6171134001122334455)
                    // Store the `address(this)`.
                    mstore(0x1a, address())
                    // Store the `msg.sender`.
                    mstore(0x3a, caller())

                    // `isOperatorAllowed` always returns true if it does not revert.
                    if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                        // Bubble up the revert if the staticcall reverts.
                        returndatacopy(0x00, 0x00, returndatasize())
                        revert(0x00, returndatasize())
                    }

                    // We'll skip checking if `from` is inside the blacklist.
                    // Even though that can block transferring out of wrapper contracts,
                    // we don't want tokens to be stuck.

                    // Restore the part of the free memory pointer that was overwritten,
                    // which is guaranteed to be zero, if less than 8tb of memory is used.
                    mstore(0x3a, 0)
                }
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // For more information on the optimization techniques used,
            // see the comments in `onlyAllowedOperator`.

            if enabled {
                // Store the function selector of `isOperatorAllowed(address,address)`,
                mstore(0x00, 0xc6171134001122334455)
                // Store the `address(this)`.
                mstore(0x1a, address())
                // Store the `operator`, discarding the upper 96 bits in case they are dirty.
                mstore(0x3a, shr(96, shl(96, operator)))

                // `isOperatorAllowed` always returns true if it does not revert.
                if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                    // Bubble up the revert if the staticcall reverts.
                    returndatacopy(0x00, 0x00, returndatasize())
                    revert(0x00, returndatasize())
                }

                // Restore the part of the free memory pointer that was overwritten.
                mstore(0x3a, 0)
            }
        }
        _;
    }
}

error AlreadyReservedTokens();
error CallerNotOffsetter();
error FunctionLocked();
error InsufficientValue();
error InsufficientMints();
error InsufficientSupply();
error InvalidSignature();
error NoContractMinting();
error ProvenanceHashAlreadySet();
error ProvenanceHashNotSet();
error TokenOffsetAlreadySet();
error TokenOffsetNotSet();
error WithdrawFailed();

interface Offsetable { function setOffset(uint256 randomness) external; }




contract The_Starry_Night_Original is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;
    string public baseExtension = ".json";
    uint256 public constant RESERVED = 35;
    uint256 public publicMintSupply = 136;
    uint256 public claimSupply = 118;
    uint256 public constant MAX_SUPPLY = 289;    
    uint256 public MAX_MINT_PER_ACCOUNT = 1;
    uint256 public MAX_CLAIM_PER_ACCOUNT = 1;
    bool public mintStarted = false;
    bool public claimStarted = false; 
    uint256 public mintPrice = 0.11 ether;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;
    mapping(address => uint) public userNftCount;
    mapping(address => uint) public userClaimCount;
    mapping(address => bool) public whitelist;
    mapping(address => bool) public allowlist;
    mapping(address => bool) public claimed;
    uint256 public publicMintCount = 0;
    uint256 public claimCount = 0;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A("The Starry Night Original", "The Starry Night Original")
    {

        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;

        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

    /**
     * @notice Modifier applied to functions that will be disabled when they're no longer needed
     */
    modifier lockable() {
        if (functionLocked[msg.sig]) revert FunctionLocked();
        _;
    }

    /**
     * @inheritdoc ERC721A
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }

    /**
     * @notice Override ERC721A _baseURI function to use base URI pattern
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

    /**
     * @notice Return the number of tokens an address has minted
     * @param account Address to return the number of tokens minted for
     */
    function numberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    /**
     * @notice Lock a function so that it can no longer be called
     * @dev WARNING: THIS CANNOT BE UNDONE
     * @param id Function signature
     */
    function lockFunction(bytes4 id) external onlyOwner {
        functionLocked[id] = true;
    }

    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value) external lockable onlyOwner {
        operatorFilteringEnabled = value;
    }

    /**
     * @notice Set new royalties settings for the collection
     * @param receiver Address to receive royalties
     * @param royaltyFraction Royalty fee respective to fee denominator (10_000)
     */
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }

    /**
     * @notice Set token metadata base URI
     * @param _newBaseURI New base URI
     */
    function setBaseURI(string calldata _newBaseURI) external lockable onlyOwner {
        _baseTokenURI = _newBaseURI;
    }

    /**
     * @notice Set provenance hash for the collection
     * @param _provenanceHash New hash of the metadata
     */
    function setProvenanceHash(string calldata _provenanceHash) external lockable onlyOwner {
        if (bytes(provenanceHash).length != 0) revert ProvenanceHashAlreadySet();

        provenanceHash = _provenanceHash;
    }


    /**
     * @notice Mint `RESERVED` amount of tokens to an address
     * @param to Address to send the reserved tokens
     */
    function reserve(address to) external lockable onlyOwner {
        if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens();
        _mint(to, RESERVED);
    }


    function mintForAll(uint256 amount, bool _isUK) external payable {
        require(mintStarted == true, "Minting is not yet open.");
        require(publicMintCount + amount <= publicMintSupply, "Sold Out.");
        require(amount <= MAX_MINT_PER_ACCOUNT, "Amount Exceeds Maximum Mints Allowed Per Account.");
        require(userNftCount[msg.sender] + amount <= MAX_MINT_PER_ACCOUNT, "You can not mint more than Max Mint Limit.");
        require(_totalMinted() + amount <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        uint totalCost = amount * mintPrice;
        if (_isUK == true) {
            totalCost = totalCost * 120 / 100; // add 20% VAT tax for UK
        }        
        require( msg.value >= totalCost, "Ether sent is not correct." );
        _mintRandom(msg.sender, amount);
        publicMintCount += amount;
        userNftCount[msg.sender] += amount;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function claim(uint256 amount) external {
        require(claimStarted == true, "Please wait, Claim is not enabled yet.");
        require(isWhitelisted(msg.sender) == true, "This account is not Whitelisted.");
        require(claimed[msg.sender] == false, "Already Claimed");
        require(claimCount + amount <= claimSupply,"All NFTs claimed from this Collection, try second Collection.");
        require(_totalMinted() + amount <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        require(userClaimCount[msg.sender] + amount < MAX_CLAIM_PER_ACCOUNT, "You can not claim more than MAX_CLAIM_PER_ACCOUNT");
        _mintRandom(msg.sender, amount);
        claimCount += amount;
        claimed[msg.sender] = true;
    }

    function isWhitelisted(address user) public view returns(bool) {
        return whitelist[user];
    }

    function isAllowlisted(address user) public view returns(bool) {
        return allowlist[user];
    }

    function updateWhitelist(address[] memory users, bool _isWhitelisted) external onlyOwner {
        require(users.length < 501,"You can whitelist only 500 users in one transaction.");
        for(uint i=0; i<users.length; i++){
            whitelist[users[i]] = _isWhitelisted;
        }

    } 

    function updateAllowlist(address[] memory users, bool _isallowlisted) external onlyOwner {
        require(users.length < 501,"You can allowlist only 500 users in one transaction.");
        for(uint i=0; i<users.length; i++){
            allowlist[users[i]] = _isallowlisted;
        }

    }     

    function setMintPrice(uint256 _newPrice) external onlyOwner() {
        mintPrice = _newPrice;
    }
 
    
    function setMintStart(bool _mintStarted) external onlyOwner() {
        mintStarted = _mintStarted;
    }

    function setClaimStart (bool _claimStarted) external onlyOwner() {
        claimStarted = _claimStarted;
    }

    function setMaxMintPerAccount(uint256 _maxmintlimit) external onlyOwner() {
        MAX_MINT_PER_ACCOUNT = _maxmintlimit;
    } 

    function setMaxClaimPerAccount(uint256 _maxclaimlimit) external onlyOwner() {
        MAX_CLAIM_PER_ACCOUNT = _maxclaimlimit;
    }

    function setPublicMintSupply(uint256 _publicsupply) external onlyOwner() {
        publicMintSupply = _publicsupply;
    }

    function setClaimSupply(uint256 _claimSupply) external onlyOwner() {
        claimSupply = _claimSupply;
    }

    /**
     * @notice Withdraw all ETH sent to the contract
     */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        if (!success) revert WithdrawFailed();
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.approve(operator, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_CLAIM_PER_ACCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ACCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isAllowlisted","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":[{"internalType":"address","name":"user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"_isUK","type":"bool"}],"name":"mintForAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimStarted","type":"bool"}],"name":"setClaimStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimSupply","type":"uint256"}],"name":"setClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxclaimlimit","type":"uint256"}],"name":"setMaxClaimPerAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxmintlimit","type":"uint256"}],"name":"setMaxMintPerAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintStarted","type":"bool"}],"name":"setMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicsupply","type":"uint256"}],"name":"setPublicMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"_isallowlisted","type":"bool"}],"name":"updateAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userClaimCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userNftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200004a919062000774565b506088600e556076600f55600160105560016011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550670186cc6acd4b00006013556000601c556000601d55348015620000b857600080fd5b5060405162006375380380620063758339818101604052810190620000de91906200090e565b6040518060400160405280601981526020017f54686520537461727279204e69676874204f726967696e616c000000000000008152506040518060400160405280601981526020017f54686520537461727279204e69676874204f726967696e616c0000000000000081525081600290816200015b919062000774565b5080600390816200016d919062000774565b506200017e620001eb60201b60201c565b6000819055505050620001a66200019a620001f460201b60201c565b620001fc60201b60201c565b620001b6620002c260201b60201c565b6001601560006101000a81548160ff021916908315150217905550620001e38282620002eb60201b60201c565b505062000a70565b60006001905090565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e9733cc6cdda760b79bafa08df41ecfa224f810dceb660016200048e60201b60201c565b565b620002fb620004f060201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200035c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035390620009dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c59062000a4e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c925081620004bd5782620004b557634420e4869050620004bd565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057c57607f821691505b60208210810362000592576200059162000534565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005bd565b620006088683620005bd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006556200064f620006498462000620565b6200062a565b62000620565b9050919050565b6000819050919050565b620006718362000634565b6200068962000680826200065c565b848454620005ca565b825550505050565b600090565b620006a062000691565b620006ad81848462000666565b505050565b5b81811015620006d557620006c960008262000696565b600181019050620006b3565b5050565b601f8211156200072457620006ee8162000598565b620006f984620005ad565b8101602085101562000709578190505b620007216200071885620005ad565b830182620006b2565b50505b505050565b600082821c905092915050565b6000620007496000198460080262000729565b1980831691505092915050565b600062000764838362000736565b9150826002028217905092915050565b6200077f82620004fa565b67ffffffffffffffff8111156200079b576200079a62000505565b5b620007a7825462000563565b620007b4828285620006d9565b600060209050601f831160018114620007ec5760008415620007d7578287015190505b620007e3858262000756565b86555062000853565b601f198416620007fc8662000598565b60005b828110156200082657848901518255600182019150602085019450602081019050620007ff565b8683101562000846578489015162000842601f89168262000736565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200088d8262000860565b9050919050565b6200089f8162000880565b8114620008ab57600080fd5b50565b600081519050620008bf8162000894565b92915050565b60006bffffffffffffffffffffffff82169050919050565b620008e881620008c5565b8114620008f457600080fd5b50565b6000815190506200090881620008dd565b92915050565b600080604083850312156200092857620009276200085b565b5b60006200093885828601620008ae565b92505060206200094b85828601620008f7565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009c4602a8362000955565b9150620009d18262000966565b604082019050919050565b60006020820190508181036000830152620009f781620009b5565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a3660198362000955565b915062000a4382620009fe565b602082019050919050565b6000602082019050818103600083015262000a698162000a27565b9050919050565b6158f58062000a806000396000f3fe6080604052600436106103975760003560e01c806385f29ca8116101dc578063bbadfe7611610102578063d9b3e7dd116100a0578063e985e9c51161006f578063e985e9c514610d7e578063f2fde38b14610dbb578063f4a0a52814610de4578063fb796e6c14610e0d57610397565b8063d9b3e7dd14610cc6578063da3ef23f14610cef578063dc33e68114610d18578063e75179a414610d5557610397565b8063c6682862116100dc578063c668286214610bf6578063c6ab67a314610c21578063c87b56dd14610c4c578063c884ef8314610c8957610397565b8063bbadfe7614610b65578063c1664b1314610ba2578063c21b471b14610bcd57610397565b8063a7b8e90f1161017a578063aff177ca11610149578063aff177ca14610acc578063b53124a314610af5578063b7c0b8e814610b20578063b88d4fde14610b4957610397565b8063a7b8e90f14610a10578063a7cd52cb14610a39578063a9722cf314610a76578063aa592f2514610aa157610397565b806395d89b41116101b657806395d89b41146109565780639b19251a14610981578063a22cb465146109be578063a7ab14c2146109e757610397565b806385f29ca8146108d55780638da4d3c9146109005780638da5cb5b1461092b57610397565b80633418f565116102c15780634e9a09601161025f57806370a082311161022e57806370a082311461081b578063715018a6146108585780637daf90361461086f57806380a2a55d146108ac57610397565b80634e9a09601461076e57806355f804b31461078a5780636352211e146107b35780636817c76c146107f057610397565b80633af32abf1161029b5780633af32abf146106d55780633ccfd60b1461071257806342842e0e1461072957806348c5bdaa1461074557610397565b80633418f565146106465780633453182814610683578063379607f5146106ac57610397565b80630ad29ec31161033957806322e8d8cd1161030857806322e8d8cd1461059857806323b872dd146105c15780632a55205a146105dd57806332cb6b0c1461061b57610397565b80630ad29ec3146104ee5780630d84d1ce14610519578063109695231461054457806318160ddd1461056d57610397565b806306fdde031161037557806306fdde03146104415780630715d7041461046c578063081812fc14610495578063095ea7b3146104d257610397565b806301ffc9a71461039c57806305a3b809146103d9578063066453df14610416575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613e24565b610e38565b6040516103d09190613e6c565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613ee5565b610e5a565b60405161040d9190613e6c565b60405180910390f35b34801561042257600080fd5b5061042b610eb0565b6040516104389190613f2b565b60405180910390f35b34801561044d57600080fd5b50610456610eb6565b6040516104639190613fd6565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190614024565b610f48565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061407d565b610f6d565b6040516104c991906140b9565b60405180910390f35b6104ec60048036038101906104e791906140d4565b610fec565b005b3480156104fa57600080fd5b5061050361105b565b6040516105109190613f2b565b60405180910390f35b34801561052557600080fd5b5061052e611061565b60405161053b9190613f2b565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190614179565b611067565b005b34801561057957600080fd5b50610582611186565b60405161058f9190613f2b565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba919061407d565b61119d565b005b6105db60048036038101906105d691906141c6565b6111af565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190614219565b611228565b604051610612929190614259565b60405180910390f35b34801561062757600080fd5b50610630611412565b60405161063d9190613f2b565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613ee5565b611418565b60405161067a9190613f2b565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190613e24565b611430565b005b3480156106b857600080fd5b506106d360048036038101906106ce919061407d565b6114a5565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613ee5565b611792565b6040516107099190613e6c565b60405180910390f35b34801561071e57600080fd5b506107276117e8565b005b610743600480360381019061073e91906141c6565b611896565b005b34801561075157600080fd5b5061076c6004803603810190610767919061407d565b61190f565b005b61078860048036038101906107839190614282565b611921565b005b34801561079657600080fd5b506107b160048036038101906107ac9190614179565b611c4a565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061407d565b611d21565b6040516107e791906140b9565b60405180910390f35b3480156107fc57600080fd5b50610805611d33565b6040516108129190613f2b565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613ee5565b611d39565b60405161084f9190613f2b565b60405180910390f35b34801561086457600080fd5b5061086d611df1565b005b34801561087b57600080fd5b5061089660048036038101906108919190613ee5565b611e05565b6040516108a39190613f2b565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce919061407d565b611e1d565b005b3480156108e157600080fd5b506108ea611e2f565b6040516108f79190613f2b565b60405180910390f35b34801561090c57600080fd5b50610915611e35565b6040516109229190613f2b565b60405180910390f35b34801561093757600080fd5b50610940611e3b565b60405161094d91906140b9565b60405180910390f35b34801561096257600080fd5b5061096b611e65565b6040516109789190613fd6565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613ee5565b611ef7565b6040516109b59190613e6c565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906142c2565b611f17565b005b3480156109f357600080fd5b50610a0e6004803603810190610a099190614024565b611f86565b005b348015610a1c57600080fd5b50610a376004803603810190610a32919061407d565b611fab565b005b348015610a4557600080fd5b50610a606004803603810190610a5b9190613ee5565b611fbd565b604051610a6d9190613e6c565b60405180910390f35b348015610a8257600080fd5b50610a8b611fdd565b604051610a989190613e6c565b60405180910390f35b348015610aad57600080fd5b50610ab6611ff0565b604051610ac39190613f2b565b60405180910390f35b348015610ad857600080fd5b50610af36004803603810190610aee9190614440565b611ff5565b005b348015610b0157600080fd5b50610b0a6120d7565b604051610b179190613f2b565b60405180910390f35b348015610b2c57600080fd5b50610b476004803603810190610b429190614024565b6120dd565b005b610b636004803603810190610b5e9190614551565b6121bb565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190613e24565b612236565b604051610b999190613e6c565b60405180910390f35b348015610bae57600080fd5b50610bb7612256565b604051610bc49190613e6c565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190614618565b612269565b005b348015610c0257600080fd5b50610c0b61227f565b604051610c189190613fd6565b60405180910390f35b348015610c2d57600080fd5b50610c3661230d565b604051610c439190613fd6565b60405180910390f35b348015610c5857600080fd5b50610c736004803603810190610c6e919061407d565b61239b565b604051610c809190613fd6565b60405180910390f35b348015610c9557600080fd5b50610cb06004803603810190610cab9190613ee5565b612445565b604051610cbd9190613e6c565b60405180910390f35b348015610cd257600080fd5b50610ced6004803603810190610ce89190614440565b612465565b005b348015610cfb57600080fd5b50610d166004803603810190610d1191906146f9565b612547565b005b348015610d2457600080fd5b50610d3f6004803603810190610d3a9190613ee5565b612562565b604051610d4c9190613f2b565b60405180910390f35b348015610d6157600080fd5b50610d7c6004803603810190610d779190613ee5565b612574565b005b348015610d8a57600080fd5b50610da56004803603810190610da09190614742565b612684565b604051610db29190613e6c565b60405180910390f35b348015610dc757600080fd5b50610de26004803603810190610ddd9190613ee5565b612718565b005b348015610df057600080fd5b50610e0b6004803603810190610e06919061407d565b61279b565b005b348015610e1957600080fd5b50610e226127ad565b604051610e2f9190613e6c565b60405180910390f35b6000610e43826127c0565b80610e535750610e5282612852565b5b9050919050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b606060028054610ec5906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef1906147b1565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b5050505050905090565b610f506128cc565b80601260006101000a81548160ff02191690831515021790555050565b6000610f788261294a565b610fae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601560009054906101000a900460ff16801561104b5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611045573d6000803e3d6000fd5b6000603a525b61105584846129a9565b50505050565b600f5481565b601c5481565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611120576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111286128cc565b600060148054611137906147b1565b905014611170576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160149182611181929190614999565b505050565b6000611190612aed565b6001546000540303905090565b6111a56128cc565b80600f8190555050565b82601560009054906101000a900460ff16801561121657338260601b60601c146112155769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61120f573d6000803e3d6000fd5b6000603a525b5b611221858585612af6565b5050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036113bd5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006113c7612e18565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866113f39190614a98565b6113fd9190614b09565b90508160000151819350935050509250929050565b61012181565b60176020528060005260406000206000915090505481565b6114386128cc565b600160166000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60011515601260019054906101000a900460ff161515146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614bac565b60405180910390fd5b6001151561150833611792565b15151461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614c18565b60405180910390fd5b60001515601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490614c84565b60405180910390fd5b600f5481601d546115ee9190614ca4565b111561162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614d4a565b60405180910390fd5b6101218161163b612e22565b6116459190614ca4565b1115611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614db6565b60405180910390fd5b60115481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d49190614ca4565b10611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614e48565b60405180910390fd5b61171e3382612e35565b80601d60008282546117309190614ca4565b925050819055506001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6117f06128cc565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161181690614e99565b60006040518083038185875af1925050503d8060008114611853576040519150601f19603f3d011682016040523d82523d6000602084013e611858565b606091505b5050905080611893576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b82601560009054906101000a900460ff1680156118fd57338260601b60601c146118fc5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6118f6573d6000803e3d6000fd5b6000603a525b5b611908858585613242565b5050505050565b6119176128cc565b8060108190555050565b60011515601260009054906101000a900460ff16151514611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614efa565b60405180910390fd5b600e5482601c546119889190614ca4565b11156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614f66565b60405180910390fd5b601054821115611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614ff8565b60405180910390fd5b60105482601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a5c9190614ca4565b1115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a949061508a565b60405180910390fd5b61012182611aa9612e22565b611ab39190614ca4565b1115611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90614db6565b60405180910390fd5b600060135483611b049190614a98565b90506001151582151503611b2e576064607882611b219190614a98565b611b2b9190614b09565b90505b80341015611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906150f6565b60405180910390fd5b611b7b3384612e35565b82601c6000828254611b8d9190614ca4565b9250508190555082601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be39190614ca4565b9250508190555080341115611c45573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611c189190615116565b9081150290604051600060405180830381858888f19350505050158015611c43573d6000803e3d6000fd5b505b505050565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611d03576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d0b6128cc565b8181600c9182611d1c929190614999565b505050565b6000611d2c82613262565b9050919050565b60135481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611df96128cc565b611e03600061332e565b565b60186020528060005260406000206000915090505481565b611e256128cc565b8060118190555050565b600e5481565b601d5481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611e74906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea0906147b1565b8015611eed5780601f10611ec257610100808354040283529160200191611eed565b820191906000526020600020905b815481529060010190602001808311611ed057829003601f168201915b5050505050905090565b60196020528060005260406000206000915054906101000a900460ff1681565b81601560009054906101000a900460ff168015611f765769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611f70573d6000803e3d6000fd5b6000603a525b611f8084846133f4565b50505050565b611f8e6128cc565b80601260016101000a81548160ff02191690831515021790555050565b611fb36128cc565b80600e8190555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b601260009054906101000a900460ff1681565b602381565b611ffd6128cc565b6101f5825110612042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612039906151bc565b60405180910390fd5b60005b82518110156120d2578160196000858481518110612066576120656151dc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120ca9061520b565b915050612045565b505050565b60115481565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615612196576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61219e6128cc565b80601560006101000a81548160ff02191690831515021790555050565b83601560009054906101000a900460ff16801561222257338260601b60601c146122215769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61221b573d6000803e3d6000fd5b6000603a525b5b61222e868686866134ff565b505050505050565b60166020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6122716128cc565b61227b8282613572565b5050565b600d805461228c906147b1565b80601f01602080910402602001604051908101604052809291908181526020018280546122b8906147b1565b80156123055780601f106122da57610100808354040283529160200191612305565b820191906000526020600020905b8154815290600101906020018083116122e857829003601f168201915b505050505081565b6014805461231a906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054612346906147b1565b80156123935780601f1061236857610100808354040283529160200191612393565b820191906000526020600020905b81548152906001019060200180831161237657829003601f168201915b505050505081565b60606123a68261294a565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906152c5565b60405180910390fd5b60006123ef613707565b9050600081511161240f576040518060200160405280600081525061243d565b8061241984613799565b600d60405160200161242d939291906153a4565b6040516020818303038152906040525b915050919050565b601b6020528060005260406000206000915054906101000a900460ff1681565b61246d6128cc565b6101f58251106124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990615447565b60405180910390fd5b60005b82518110156125425781601a60008584815181106124d6576124d56151dc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061253a9061520b565b9150506124b5565b505050565b61254f6128cc565b80600d908161255e9190615467565b5050565b600061256d826138f9565b9050919050565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561262d576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126356128cc565b602361263f612e22565b10612676576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612681816023613950565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127206128cc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361278f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612786906155ab565b60405180910390fd5b6127988161332e565b50565b6127a36128cc565b8060138190555050565b601560009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061281b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061284b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128c557506128c482613b0b565b5b9050919050565b6128d4613b75565b73ffffffffffffffffffffffffffffffffffffffff166128f2611e3b565b73ffffffffffffffffffffffffffffffffffffffff1614612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90615617565b60405180910390fd5b565b600081612955612aed565b11158015612964575060005482105b80156129a2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006129b482611d21565b90508073ffffffffffffffffffffffffffffffffffffffff166129d5613b7d565b73ffffffffffffffffffffffffffffffffffffffff1614612a3857612a01816129fc613b7d565b612684565b612a37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612b0182613262565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b68576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612b7484613b85565b91509150612b8a8187612b85613b7d565b613bac565b612bd657612b9f86612b9a613b7d565b612684565b612bd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c498686866001613bf0565b8015612c5457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612d2285612cfe888887613bf6565b7c020000000000000000000000000000000000000000000000000000000017613c1e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612da85760006001850190506000600460008381526020019081526020016000205403612da6576000548114612da5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e108686866001613c49565b505050505050565b6000612710905090565b6000612e2c612aed565b60005403905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e9b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612ed5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ee3600083600084613bf0565b60008167ffffffffffffffff811115612eff57612efe614302565b5b604051908082528060200260200182016040528015612f2d5781602001602082028036833780820191505090505b509050600060fe67ffffffffffffffff811115612f4d57612f4c614302565b5b604051908082528060200260200182016040528015612f7b5781602001602082028036833780820191505090505b50905060005b60fe811015612fc957602481612f979190614ca4565b828281518110612faa57612fa96151dc565b5b6020026020010181815250508080612fc19061520b565b915050612f81565b50600060fd90505b60008111156130a9576000600182612fe99190614ca4565b4283604051602001612ffc929190615658565b6040516020818303038152906040528051906020012060001c61301f9190615684565b9050828181518110613034576130336151dc565b5b602002602001015183838151811061304f5761304e6151dc565b5b602002602001015184848151811061306a576130696151dc565b5b60200260200101858481518110613084576130836151dc565b5b60200260200101828152508281525050505080806130a1906156b5565b915050612fd1565b5060005b838110156131ac5760008282815181106130ca576130c96151dc565b5b6020026020010151905060016008600083815260200190815260200160002060006101000a81548160ff02191690831515021790555080848381518110613114576131136151dc565b5b602002602001018181525050613140866131316000896000613bf6565b61313a88613c4f565b17613c1e565b600460008381526020019081526020016000208190555073ffffffffffffffffffffffffffffffffffffffff8616818160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4505080806131a49061520b565b9150506130ad565b50600160406001901b17836131c19190614a98565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461320f9190614ca4565b92505081905550826000808282546132279190614ca4565b9250508190555061323c600085600086613c49565b50505050565b61325d838383604051806020016040528060008152506121bb565b505050565b60008082905080613271612aed565b116132f7576000548110156132f65760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036132f4575b600081036132ea5760046000836001900393508381526020019081526020016000205490506132c0565b8092505050613329565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000613401613b7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166134ae613b7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134f39190613e6c565b60405180910390a35050565b61350a8484846111af565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461356c5761353584848484613c5f565b61356b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61357a612e18565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156135d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135cf90615750565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e906157bc565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600c8054613716906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054613742906147b1565b801561378f5780601f106137645761010080835404028352916020019161378f565b820191906000526020600020905b81548152906001019060200180831161377257829003601f168201915b5050505050905090565b6060600082036137e0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138f4565b600082905060005b600082146138125780806137fb9061520b565b915050600a8261380b9190614b09565b91506137e8565b60008167ffffffffffffffff81111561382e5761382d614302565b5b6040519080825280601f01601f1916602001820160405280156138605781602001600182028036833780820191505090505b5090505b600085146138ed576001826138799190615116565b9150600a856138889190615684565b60306138949190614ca4565b60f81b8183815181106138aa576138a96151dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138e69190614b09565b9450613864565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008054905060008203613990576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61399d6000848385613bf0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613a1483613a056000866000613bf6565b613a0e85613c4f565b17613c1e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613ab557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a7a565b5060008203613af0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613b066000848385613c49565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613c0d868684613daf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c85613b7d565b8786866040518563ffffffff1660e01b8152600401613ca79493929190615831565b6020604051808303816000875af1925050508015613ce357506040513d601f19601f82011682018060405250810190613ce09190615892565b60015b613d5c573d8060008114613d13576040519150601f19603f3d011682016040523d82523d6000602084013e613d18565b606091505b506000815103613d54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e0181613dcc565b8114613e0c57600080fd5b50565b600081359050613e1e81613df8565b92915050565b600060208284031215613e3a57613e39613dc2565b5b6000613e4884828501613e0f565b91505092915050565b60008115159050919050565b613e6681613e51565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613eb282613e87565b9050919050565b613ec281613ea7565b8114613ecd57600080fd5b50565b600081359050613edf81613eb9565b92915050565b600060208284031215613efb57613efa613dc2565b5b6000613f0984828501613ed0565b91505092915050565b6000819050919050565b613f2581613f12565b82525050565b6000602082019050613f406000830184613f1c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f80578082015181840152602081019050613f65565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fa882613f46565b613fb28185613f51565b9350613fc2818560208601613f62565b613fcb81613f8c565b840191505092915050565b60006020820190508181036000830152613ff08184613f9d565b905092915050565b61400181613e51565b811461400c57600080fd5b50565b60008135905061401e81613ff8565b92915050565b60006020828403121561403a57614039613dc2565b5b60006140488482850161400f565b91505092915050565b61405a81613f12565b811461406557600080fd5b50565b60008135905061407781614051565b92915050565b60006020828403121561409357614092613dc2565b5b60006140a184828501614068565b91505092915050565b6140b381613ea7565b82525050565b60006020820190506140ce60008301846140aa565b92915050565b600080604083850312156140eb576140ea613dc2565b5b60006140f985828601613ed0565b925050602061410a85828601614068565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261413957614138614114565b5b8235905067ffffffffffffffff81111561415657614155614119565b5b6020830191508360018202830111156141725761417161411e565b5b9250929050565b600080602083850312156141905761418f613dc2565b5b600083013567ffffffffffffffff8111156141ae576141ad613dc7565b5b6141ba85828601614123565b92509250509250929050565b6000806000606084860312156141df576141de613dc2565b5b60006141ed86828701613ed0565b93505060206141fe86828701613ed0565b925050604061420f86828701614068565b9150509250925092565b600080604083850312156142305761422f613dc2565b5b600061423e85828601614068565b925050602061424f85828601614068565b9150509250929050565b600060408201905061426e60008301856140aa565b61427b6020830184613f1c565b9392505050565b6000806040838503121561429957614298613dc2565b5b60006142a785828601614068565b92505060206142b88582860161400f565b9150509250929050565b600080604083850312156142d9576142d8613dc2565b5b60006142e785828601613ed0565b92505060206142f88582860161400f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61433a82613f8c565b810181811067ffffffffffffffff8211171561435957614358614302565b5b80604052505050565b600061436c613db8565b90506143788282614331565b919050565b600067ffffffffffffffff82111561439857614397614302565b5b602082029050602081019050919050565b60006143bc6143b78461437d565b614362565b905080838252602082019050602084028301858111156143df576143de61411e565b5b835b8181101561440857806143f48882613ed0565b8452602084019350506020810190506143e1565b5050509392505050565b600082601f83011261442757614426614114565b5b81356144378482602086016143a9565b91505092915050565b6000806040838503121561445757614456613dc2565b5b600083013567ffffffffffffffff81111561447557614474613dc7565b5b61448185828601614412565b92505060206144928582860161400f565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156144bc576144bb614302565b5b6144c582613f8c565b9050602081019050919050565b82818337600083830152505050565b60006144f46144ef846144a1565b614362565b9050828152602081018484840111156145105761450f61449c565b5b61451b8482856144d2565b509392505050565b600082601f83011261453857614537614114565b5b81356145488482602086016144e1565b91505092915050565b6000806000806080858703121561456b5761456a613dc2565b5b600061457987828801613ed0565b945050602061458a87828801613ed0565b935050604061459b87828801614068565b925050606085013567ffffffffffffffff8111156145bc576145bb613dc7565b5b6145c887828801614523565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b6145f5816145d4565b811461460057600080fd5b50565b600081359050614612816145ec565b92915050565b6000806040838503121561462f5761462e613dc2565b5b600061463d85828601613ed0565b925050602061464e85828601614603565b9150509250929050565b600067ffffffffffffffff82111561467357614672614302565b5b61467c82613f8c565b9050602081019050919050565b600061469c61469784614658565b614362565b9050828152602081018484840111156146b8576146b761449c565b5b6146c38482856144d2565b509392505050565b600082601f8301126146e0576146df614114565b5b81356146f0848260208601614689565b91505092915050565b60006020828403121561470f5761470e613dc2565b5b600082013567ffffffffffffffff81111561472d5761472c613dc7565b5b614739848285016146cb565b91505092915050565b6000806040838503121561475957614758613dc2565b5b600061476785828601613ed0565b925050602061477885828601613ed0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147c957607f821691505b6020821081036147dc576147db614782565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261484f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614812565b6148598683614812565b95508019841693508086168417925050509392505050565b6000819050919050565b600061489661489161488c84613f12565b614871565b613f12565b9050919050565b6000819050919050565b6148b08361487b565b6148c46148bc8261489d565b84845461481f565b825550505050565b600090565b6148d96148cc565b6148e48184846148a7565b505050565b5b81811015614908576148fd6000826148d1565b6001810190506148ea565b5050565b601f82111561494d5761491e816147ed565b61492784614802565b81016020851015614936578190505b61494a61494285614802565b8301826148e9565b50505b505050565b600082821c905092915050565b600061497060001984600802614952565b1980831691505092915050565b6000614989838361495f565b9150826002028217905092915050565b6149a383836147e2565b67ffffffffffffffff8111156149bc576149bb614302565b5b6149c682546147b1565b6149d182828561490c565b6000601f831160018114614a0057600084156149ee578287013590505b6149f8858261497d565b865550614a60565b601f198416614a0e866147ed565b60005b82811015614a3657848901358255600182019150602085019450602081019050614a11565b86831015614a535784890135614a4f601f89168261495f565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aa382613f12565b9150614aae83613f12565b9250828202614abc81613f12565b91508282048414831517614ad357614ad2614a69565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b1482613f12565b9150614b1f83613f12565b925082614b2f57614b2e614ada565b5b828204905092915050565b7f506c6561736520776169742c20436c61696d206973206e6f7420656e61626c6560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b6000614b96602683613f51565b9150614ba182614b3a565b604082019050919050565b60006020820190508181036000830152614bc581614b89565b9050919050565b7f54686973206163636f756e74206973206e6f742057686974656c69737465642e600082015250565b6000614c02602083613f51565b9150614c0d82614bcc565b602082019050919050565b60006020820190508181036000830152614c3181614bf5565b9050919050565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b6000614c6e600f83613f51565b9150614c7982614c38565b602082019050919050565b60006020820190508181036000830152614c9d81614c61565b9050919050565b6000614caf82613f12565b9150614cba83613f12565b9250828201905080821115614cd257614cd1614a69565b5b92915050565b7f416c6c204e46547320636c61696d65642066726f6d207468697320436f6c6c6560008201527f6374696f6e2c20747279207365636f6e6420436f6c6c656374696f6e2e000000602082015250565b6000614d34603d83613f51565b9150614d3f82614cd8565b604082019050919050565b60006020820190508181036000830152614d6381614d27565b9050919050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b6000614da0601683613f51565b9150614dab82614d6a565b602082019050919050565b60006020820190508181036000830152614dcf81614d93565b9050919050565b7f596f752063616e206e6f7420636c61696d206d6f7265207468616e204d41585f60008201527f434c41494d5f5045525f4143434f554e54000000000000000000000000000000602082015250565b6000614e32603183613f51565b9150614e3d82614dd6565b604082019050919050565b60006020820190508181036000830152614e6181614e25565b9050919050565b600081905092915050565b50565b6000614e83600083614e68565b9150614e8e82614e73565b600082019050919050565b6000614ea482614e76565b9150819050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000614ee4601883613f51565b9150614eef82614eae565b602082019050919050565b60006020820190508181036000830152614f1381614ed7565b9050919050565b7f536f6c64204f75742e0000000000000000000000000000000000000000000000600082015250565b6000614f50600983613f51565b9150614f5b82614f1a565b602082019050919050565b60006020820190508181036000830152614f7f81614f43565b9050919050565b7f416d6f756e742045786365656473204d6178696d756d204d696e747320416c6c60008201527f6f77656420506572204163636f756e742e000000000000000000000000000000602082015250565b6000614fe2603183613f51565b9150614fed82614f86565b604082019050919050565b6000602082019050818103600083015261501181614fd5565b9050919050565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e204d6178204d60008201527f696e74204c696d69742e00000000000000000000000000000000000000000000602082015250565b6000615074602a83613f51565b915061507f82615018565b604082019050919050565b600060208201905081810360008301526150a381615067565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b60006150e0601a83613f51565b91506150eb826150aa565b602082019050919050565b6000602082019050818103600083015261510f816150d3565b9050919050565b600061512182613f12565b915061512c83613f12565b925082820390508181111561514457615143614a69565b5b92915050565b7f596f752063616e2077686974656c697374206f6e6c792035303020757365727360008201527f20696e206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b60006151a6603483613f51565b91506151b18261514a565b604082019050919050565b600060208201905081810360008301526151d581615199565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061521682613f12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361524857615247614a69565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006152af602f83613f51565b91506152ba82615253565b604082019050919050565b600060208201905081810360008301526152de816152a2565b9050919050565b600081905092915050565b60006152fb82613f46565b61530581856152e5565b9350615315818560208601613f62565b80840191505092915050565b6000815461532e816147b1565b61533881866152e5565b9450600182166000811461535357600181146153685761539b565b60ff198316865281151582028601935061539b565b615371856147ed565b60005b8381101561539357815481890152600182019150602081019050615374565b838801955050505b50505092915050565b60006153b082866152f0565b91506153bc82856152f0565b91506153c88284615321565b9150819050949350505050565b7f596f752063616e20616c6c6f776c697374206f6e6c792035303020757365727360008201527f20696e206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b6000615431603483613f51565b915061543c826153d5565b604082019050919050565b6000602082019050818103600083015261546081615424565b9050919050565b61547082613f46565b67ffffffffffffffff81111561548957615488614302565b5b61549382546147b1565b61549e82828561490c565b600060209050601f8311600181146154d157600084156154bf578287015190505b6154c9858261497d565b865550615531565b601f1984166154df866147ed565b60005b82811015615507578489015182556001820191506020850194506020810190506154e2565b868310156155245784890151615520601f89168261495f565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615595602683613f51565b91506155a082615539565b604082019050919050565b600060208201905081810360008301526155c481615588565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615601602083613f51565b915061560c826155cb565b602082019050919050565b60006020820190508181036000830152615630816155f4565b9050919050565b6000819050919050565b61565261564d82613f12565b615637565b82525050565b60006156648285615641565b6020820191506156748284615641565b6020820191508190509392505050565b600061568f82613f12565b915061569a83613f12565b9250826156aa576156a9614ada565b5b828206905092915050565b60006156c082613f12565b9150600082036156d3576156d2614a69565b5b600182039050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061573a602a83613f51565b9150615745826156de565b604082019050919050565b600060208201905081810360008301526157698161572d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006157a6601983613f51565b91506157b182615770565b602082019050919050565b600060208201905081810360008301526157d581615799565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615803826157dc565b61580d81856157e7565b935061581d818560208601613f62565b61582681613f8c565b840191505092915050565b600060808201905061584660008301876140aa565b61585360208301866140aa565b6158606040830185613f1c565b818103606083015261587281846157f8565b905095945050505050565b60008151905061588c81613df8565b92915050565b6000602082840312156158a8576158a7613dc2565b5b60006158b68482850161587d565b9150509291505056fea264697066735822122092bf85666118f8d9b037dd5a7e3469ac37a93cfe3cec4a95771c42e2a5fe7f3064736f6c6343000813003300000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106103975760003560e01c806385f29ca8116101dc578063bbadfe7611610102578063d9b3e7dd116100a0578063e985e9c51161006f578063e985e9c514610d7e578063f2fde38b14610dbb578063f4a0a52814610de4578063fb796e6c14610e0d57610397565b8063d9b3e7dd14610cc6578063da3ef23f14610cef578063dc33e68114610d18578063e75179a414610d5557610397565b8063c6682862116100dc578063c668286214610bf6578063c6ab67a314610c21578063c87b56dd14610c4c578063c884ef8314610c8957610397565b8063bbadfe7614610b65578063c1664b1314610ba2578063c21b471b14610bcd57610397565b8063a7b8e90f1161017a578063aff177ca11610149578063aff177ca14610acc578063b53124a314610af5578063b7c0b8e814610b20578063b88d4fde14610b4957610397565b8063a7b8e90f14610a10578063a7cd52cb14610a39578063a9722cf314610a76578063aa592f2514610aa157610397565b806395d89b41116101b657806395d89b41146109565780639b19251a14610981578063a22cb465146109be578063a7ab14c2146109e757610397565b806385f29ca8146108d55780638da4d3c9146109005780638da5cb5b1461092b57610397565b80633418f565116102c15780634e9a09601161025f57806370a082311161022e57806370a082311461081b578063715018a6146108585780637daf90361461086f57806380a2a55d146108ac57610397565b80634e9a09601461076e57806355f804b31461078a5780636352211e146107b35780636817c76c146107f057610397565b80633af32abf1161029b5780633af32abf146106d55780633ccfd60b1461071257806342842e0e1461072957806348c5bdaa1461074557610397565b80633418f565146106465780633453182814610683578063379607f5146106ac57610397565b80630ad29ec31161033957806322e8d8cd1161030857806322e8d8cd1461059857806323b872dd146105c15780632a55205a146105dd57806332cb6b0c1461061b57610397565b80630ad29ec3146104ee5780630d84d1ce14610519578063109695231461054457806318160ddd1461056d57610397565b806306fdde031161037557806306fdde03146104415780630715d7041461046c578063081812fc14610495578063095ea7b3146104d257610397565b806301ffc9a71461039c57806305a3b809146103d9578063066453df14610416575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613e24565b610e38565b6040516103d09190613e6c565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613ee5565b610e5a565b60405161040d9190613e6c565b60405180910390f35b34801561042257600080fd5b5061042b610eb0565b6040516104389190613f2b565b60405180910390f35b34801561044d57600080fd5b50610456610eb6565b6040516104639190613fd6565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190614024565b610f48565b005b3480156104a157600080fd5b506104bc60048036038101906104b7919061407d565b610f6d565b6040516104c991906140b9565b60405180910390f35b6104ec60048036038101906104e791906140d4565b610fec565b005b3480156104fa57600080fd5b5061050361105b565b6040516105109190613f2b565b60405180910390f35b34801561052557600080fd5b5061052e611061565b60405161053b9190613f2b565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190614179565b611067565b005b34801561057957600080fd5b50610582611186565b60405161058f9190613f2b565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba919061407d565b61119d565b005b6105db60048036038101906105d691906141c6565b6111af565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190614219565b611228565b604051610612929190614259565b60405180910390f35b34801561062757600080fd5b50610630611412565b60405161063d9190613f2b565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613ee5565b611418565b60405161067a9190613f2b565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190613e24565b611430565b005b3480156106b857600080fd5b506106d360048036038101906106ce919061407d565b6114a5565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613ee5565b611792565b6040516107099190613e6c565b60405180910390f35b34801561071e57600080fd5b506107276117e8565b005b610743600480360381019061073e91906141c6565b611896565b005b34801561075157600080fd5b5061076c6004803603810190610767919061407d565b61190f565b005b61078860048036038101906107839190614282565b611921565b005b34801561079657600080fd5b506107b160048036038101906107ac9190614179565b611c4a565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061407d565b611d21565b6040516107e791906140b9565b60405180910390f35b3480156107fc57600080fd5b50610805611d33565b6040516108129190613f2b565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613ee5565b611d39565b60405161084f9190613f2b565b60405180910390f35b34801561086457600080fd5b5061086d611df1565b005b34801561087b57600080fd5b5061089660048036038101906108919190613ee5565b611e05565b6040516108a39190613f2b565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce919061407d565b611e1d565b005b3480156108e157600080fd5b506108ea611e2f565b6040516108f79190613f2b565b60405180910390f35b34801561090c57600080fd5b50610915611e35565b6040516109229190613f2b565b60405180910390f35b34801561093757600080fd5b50610940611e3b565b60405161094d91906140b9565b60405180910390f35b34801561096257600080fd5b5061096b611e65565b6040516109789190613fd6565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613ee5565b611ef7565b6040516109b59190613e6c565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906142c2565b611f17565b005b3480156109f357600080fd5b50610a0e6004803603810190610a099190614024565b611f86565b005b348015610a1c57600080fd5b50610a376004803603810190610a32919061407d565b611fab565b005b348015610a4557600080fd5b50610a606004803603810190610a5b9190613ee5565b611fbd565b604051610a6d9190613e6c565b60405180910390f35b348015610a8257600080fd5b50610a8b611fdd565b604051610a989190613e6c565b60405180910390f35b348015610aad57600080fd5b50610ab6611ff0565b604051610ac39190613f2b565b60405180910390f35b348015610ad857600080fd5b50610af36004803603810190610aee9190614440565b611ff5565b005b348015610b0157600080fd5b50610b0a6120d7565b604051610b179190613f2b565b60405180910390f35b348015610b2c57600080fd5b50610b476004803603810190610b429190614024565b6120dd565b005b610b636004803603810190610b5e9190614551565b6121bb565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190613e24565b612236565b604051610b999190613e6c565b60405180910390f35b348015610bae57600080fd5b50610bb7612256565b604051610bc49190613e6c565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190614618565b612269565b005b348015610c0257600080fd5b50610c0b61227f565b604051610c189190613fd6565b60405180910390f35b348015610c2d57600080fd5b50610c3661230d565b604051610c439190613fd6565b60405180910390f35b348015610c5857600080fd5b50610c736004803603810190610c6e919061407d565b61239b565b604051610c809190613fd6565b60405180910390f35b348015610c9557600080fd5b50610cb06004803603810190610cab9190613ee5565b612445565b604051610cbd9190613e6c565b60405180910390f35b348015610cd257600080fd5b50610ced6004803603810190610ce89190614440565b612465565b005b348015610cfb57600080fd5b50610d166004803603810190610d1191906146f9565b612547565b005b348015610d2457600080fd5b50610d3f6004803603810190610d3a9190613ee5565b612562565b604051610d4c9190613f2b565b60405180910390f35b348015610d6157600080fd5b50610d7c6004803603810190610d779190613ee5565b612574565b005b348015610d8a57600080fd5b50610da56004803603810190610da09190614742565b612684565b604051610db29190613e6c565b60405180910390f35b348015610dc757600080fd5b50610de26004803603810190610ddd9190613ee5565b612718565b005b348015610df057600080fd5b50610e0b6004803603810190610e06919061407d565b61279b565b005b348015610e1957600080fd5b50610e226127ad565b604051610e2f9190613e6c565b60405180910390f35b6000610e43826127c0565b80610e535750610e5282612852565b5b9050919050565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b606060028054610ec5906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef1906147b1565b8015610f3e5780601f10610f1357610100808354040283529160200191610f3e565b820191906000526020600020905b815481529060010190602001808311610f2157829003601f168201915b5050505050905090565b610f506128cc565b80601260006101000a81548160ff02191690831515021790555050565b6000610f788261294a565b610fae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601560009054906101000a900460ff16801561104b5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611045573d6000803e3d6000fd5b6000603a525b61105584846129a9565b50505050565b600f5481565b601c5481565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611120576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111286128cc565b600060148054611137906147b1565b905014611170576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160149182611181929190614999565b505050565b6000611190612aed565b6001546000540303905090565b6111a56128cc565b80600f8190555050565b82601560009054906101000a900460ff16801561121657338260601b60601c146112155769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61120f573d6000803e3d6000fd5b6000603a525b5b611221858585612af6565b5050505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036113bd5760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006113c7612e18565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866113f39190614a98565b6113fd9190614b09565b90508160000151819350935050509250929050565b61012181565b60176020528060005260406000206000915090505481565b6114386128cc565b600160166000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60011515601260019054906101000a900460ff161515146114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614bac565b60405180910390fd5b6001151561150833611792565b15151461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614c18565b60405180910390fd5b60001515601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490614c84565b60405180910390fd5b600f5481601d546115ee9190614ca4565b111561162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690614d4a565b60405180910390fd5b6101218161163b612e22565b6116459190614ca4565b1115611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614db6565b60405180910390fd5b60115481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d49190614ca4565b10611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614e48565b60405180910390fd5b61171e3382612e35565b80601d60008282546117309190614ca4565b925050819055506001601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6117f06128cc565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161181690614e99565b60006040518083038185875af1925050503d8060008114611853576040519150601f19603f3d011682016040523d82523d6000602084013e611858565b606091505b5050905080611893576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b82601560009054906101000a900460ff1680156118fd57338260601b60601c146118fc5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6118f6573d6000803e3d6000fd5b6000603a525b5b611908858585613242565b5050505050565b6119176128cc565b8060108190555050565b60011515601260009054906101000a900460ff16151514611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90614efa565b60405180910390fd5b600e5482601c546119889190614ca4565b11156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614f66565b60405180910390fd5b601054821115611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614ff8565b60405180910390fd5b60105482601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a5c9190614ca4565b1115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a949061508a565b60405180910390fd5b61012182611aa9612e22565b611ab39190614ca4565b1115611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90614db6565b60405180910390fd5b600060135483611b049190614a98565b90506001151582151503611b2e576064607882611b219190614a98565b611b2b9190614b09565b90505b80341015611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b68906150f6565b60405180910390fd5b611b7b3384612e35565b82601c6000828254611b8d9190614ca4565b9250508190555082601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611be39190614ca4565b9250508190555080341115611c45573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611c189190615116565b9081150290604051600060405180830381858888f19350505050158015611c43573d6000803e3d6000fd5b505b505050565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611d03576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d0b6128cc565b8181600c9182611d1c929190614999565b505050565b6000611d2c82613262565b9050919050565b60135481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611df96128cc565b611e03600061332e565b565b60186020528060005260406000206000915090505481565b611e256128cc565b8060118190555050565b600e5481565b601d5481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611e74906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea0906147b1565b8015611eed5780601f10611ec257610100808354040283529160200191611eed565b820191906000526020600020905b815481529060010190602001808311611ed057829003601f168201915b5050505050905090565b60196020528060005260406000206000915054906101000a900460ff1681565b81601560009054906101000a900460ff168015611f765769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611f70573d6000803e3d6000fd5b6000603a525b611f8084846133f4565b50505050565b611f8e6128cc565b80601260016101000a81548160ff02191690831515021790555050565b611fb36128cc565b80600e8190555050565b601a6020528060005260406000206000915054906101000a900460ff1681565b601260009054906101000a900460ff1681565b602381565b611ffd6128cc565b6101f5825110612042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612039906151bc565b60405180910390fd5b60005b82518110156120d2578160196000858481518110612066576120656151dc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120ca9061520b565b915050612045565b505050565b60115481565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615612196576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61219e6128cc565b80601560006101000a81548160ff02191690831515021790555050565b83601560009054906101000a900460ff16801561222257338260601b60601c146122215769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61221b573d6000803e3d6000fd5b6000603a525b5b61222e868686866134ff565b505050505050565b60166020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6122716128cc565b61227b8282613572565b5050565b600d805461228c906147b1565b80601f01602080910402602001604051908101604052809291908181526020018280546122b8906147b1565b80156123055780601f106122da57610100808354040283529160200191612305565b820191906000526020600020905b8154815290600101906020018083116122e857829003601f168201915b505050505081565b6014805461231a906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054612346906147b1565b80156123935780601f1061236857610100808354040283529160200191612393565b820191906000526020600020905b81548152906001019060200180831161237657829003601f168201915b505050505081565b60606123a68261294a565b6123e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dc906152c5565b60405180910390fd5b60006123ef613707565b9050600081511161240f576040518060200160405280600081525061243d565b8061241984613799565b600d60405160200161242d939291906153a4565b6040516020818303038152906040525b915050919050565b601b6020528060005260406000206000915054906101000a900460ff1681565b61246d6128cc565b6101f58251106124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990615447565b60405180910390fd5b60005b82518110156125425781601a60008584815181106124d6576124d56151dc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061253a9061520b565b9150506124b5565b505050565b61254f6128cc565b80600d908161255e9190615467565b5050565b600061256d826138f9565b9050919050565b6016600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561262d576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126356128cc565b602361263f612e22565b10612676576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612681816023613950565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127206128cc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361278f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612786906155ab565b60405180910390fd5b6127988161332e565b50565b6127a36128cc565b8060138190555050565b601560009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061281b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061284b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128c557506128c482613b0b565b5b9050919050565b6128d4613b75565b73ffffffffffffffffffffffffffffffffffffffff166128f2611e3b565b73ffffffffffffffffffffffffffffffffffffffff1614612948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293f90615617565b60405180910390fd5b565b600081612955612aed565b11158015612964575060005482105b80156129a2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006129b482611d21565b90508073ffffffffffffffffffffffffffffffffffffffff166129d5613b7d565b73ffffffffffffffffffffffffffffffffffffffff1614612a3857612a01816129fc613b7d565b612684565b612a37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612b0182613262565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b68576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612b7484613b85565b91509150612b8a8187612b85613b7d565b613bac565b612bd657612b9f86612b9a613b7d565b612684565b612bd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c3c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c498686866001613bf0565b8015612c5457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612d2285612cfe888887613bf6565b7c020000000000000000000000000000000000000000000000000000000017613c1e565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612da85760006001850190506000600460008381526020019081526020016000205403612da6576000548114612da5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e108686866001613c49565b505050505050565b6000612710905090565b6000612e2c612aed565b60005403905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e9b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612ed5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ee3600083600084613bf0565b60008167ffffffffffffffff811115612eff57612efe614302565b5b604051908082528060200260200182016040528015612f2d5781602001602082028036833780820191505090505b509050600060fe67ffffffffffffffff811115612f4d57612f4c614302565b5b604051908082528060200260200182016040528015612f7b5781602001602082028036833780820191505090505b50905060005b60fe811015612fc957602481612f979190614ca4565b828281518110612faa57612fa96151dc565b5b6020026020010181815250508080612fc19061520b565b915050612f81565b50600060fd90505b60008111156130a9576000600182612fe99190614ca4565b4283604051602001612ffc929190615658565b6040516020818303038152906040528051906020012060001c61301f9190615684565b9050828181518110613034576130336151dc565b5b602002602001015183838151811061304f5761304e6151dc565b5b602002602001015184848151811061306a576130696151dc565b5b60200260200101858481518110613084576130836151dc565b5b60200260200101828152508281525050505080806130a1906156b5565b915050612fd1565b5060005b838110156131ac5760008282815181106130ca576130c96151dc565b5b6020026020010151905060016008600083815260200190815260200160002060006101000a81548160ff02191690831515021790555080848381518110613114576131136151dc565b5b602002602001018181525050613140866131316000896000613bf6565b61313a88613c4f565b17613c1e565b600460008381526020019081526020016000208190555073ffffffffffffffffffffffffffffffffffffffff8616818160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4505080806131a49061520b565b9150506130ad565b50600160406001901b17836131c19190614a98565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461320f9190614ca4565b92505081905550826000808282546132279190614ca4565b9250508190555061323c600085600086613c49565b50505050565b61325d838383604051806020016040528060008152506121bb565b505050565b60008082905080613271612aed565b116132f7576000548110156132f65760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036132f4575b600081036132ea5760046000836001900393508381526020019081526020016000205490506132c0565b8092505050613329565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000613401613b7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166134ae613b7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134f39190613e6c565b60405180910390a35050565b61350a8484846111af565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461356c5761353584848484613c5f565b61356b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61357a612e18565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156135d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135cf90615750565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e906157bc565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600c8054613716906147b1565b80601f0160208091040260200160405190810160405280929190818152602001828054613742906147b1565b801561378f5780601f106137645761010080835404028352916020019161378f565b820191906000526020600020905b81548152906001019060200180831161377257829003601f168201915b5050505050905090565b6060600082036137e0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138f4565b600082905060005b600082146138125780806137fb9061520b565b915050600a8261380b9190614b09565b91506137e8565b60008167ffffffffffffffff81111561382e5761382d614302565b5b6040519080825280601f01601f1916602001820160405280156138605781602001600182028036833780820191505090505b5090505b600085146138ed576001826138799190615116565b9150600a856138889190615684565b60306138949190614ca4565b60f81b8183815181106138aa576138a96151dc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138e69190614b09565b9450613864565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008054905060008203613990576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61399d6000848385613bf0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613a1483613a056000866000613bf6565b613a0e85613c4f565b17613c1e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613ab557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a7a565b5060008203613af0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613b066000848385613c49565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613c0d868684613daf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c85613b7d565b8786866040518563ffffffff1660e01b8152600401613ca79493929190615831565b6020604051808303816000875af1925050508015613ce357506040513d601f19601f82011682018060405250810190613ce09190615892565b60015b613d5c573d8060008114613d13576040519150601f19603f3d011682016040523d82523d6000602084013e613d18565b606091505b506000815103613d54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e0181613dcc565b8114613e0c57600080fd5b50565b600081359050613e1e81613df8565b92915050565b600060208284031215613e3a57613e39613dc2565b5b6000613e4884828501613e0f565b91505092915050565b60008115159050919050565b613e6681613e51565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613eb282613e87565b9050919050565b613ec281613ea7565b8114613ecd57600080fd5b50565b600081359050613edf81613eb9565b92915050565b600060208284031215613efb57613efa613dc2565b5b6000613f0984828501613ed0565b91505092915050565b6000819050919050565b613f2581613f12565b82525050565b6000602082019050613f406000830184613f1c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f80578082015181840152602081019050613f65565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fa882613f46565b613fb28185613f51565b9350613fc2818560208601613f62565b613fcb81613f8c565b840191505092915050565b60006020820190508181036000830152613ff08184613f9d565b905092915050565b61400181613e51565b811461400c57600080fd5b50565b60008135905061401e81613ff8565b92915050565b60006020828403121561403a57614039613dc2565b5b60006140488482850161400f565b91505092915050565b61405a81613f12565b811461406557600080fd5b50565b60008135905061407781614051565b92915050565b60006020828403121561409357614092613dc2565b5b60006140a184828501614068565b91505092915050565b6140b381613ea7565b82525050565b60006020820190506140ce60008301846140aa565b92915050565b600080604083850312156140eb576140ea613dc2565b5b60006140f985828601613ed0565b925050602061410a85828601614068565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261413957614138614114565b5b8235905067ffffffffffffffff81111561415657614155614119565b5b6020830191508360018202830111156141725761417161411e565b5b9250929050565b600080602083850312156141905761418f613dc2565b5b600083013567ffffffffffffffff8111156141ae576141ad613dc7565b5b6141ba85828601614123565b92509250509250929050565b6000806000606084860312156141df576141de613dc2565b5b60006141ed86828701613ed0565b93505060206141fe86828701613ed0565b925050604061420f86828701614068565b9150509250925092565b600080604083850312156142305761422f613dc2565b5b600061423e85828601614068565b925050602061424f85828601614068565b9150509250929050565b600060408201905061426e60008301856140aa565b61427b6020830184613f1c565b9392505050565b6000806040838503121561429957614298613dc2565b5b60006142a785828601614068565b92505060206142b88582860161400f565b9150509250929050565b600080604083850312156142d9576142d8613dc2565b5b60006142e785828601613ed0565b92505060206142f88582860161400f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61433a82613f8c565b810181811067ffffffffffffffff8211171561435957614358614302565b5b80604052505050565b600061436c613db8565b90506143788282614331565b919050565b600067ffffffffffffffff82111561439857614397614302565b5b602082029050602081019050919050565b60006143bc6143b78461437d565b614362565b905080838252602082019050602084028301858111156143df576143de61411e565b5b835b8181101561440857806143f48882613ed0565b8452602084019350506020810190506143e1565b5050509392505050565b600082601f83011261442757614426614114565b5b81356144378482602086016143a9565b91505092915050565b6000806040838503121561445757614456613dc2565b5b600083013567ffffffffffffffff81111561447557614474613dc7565b5b61448185828601614412565b92505060206144928582860161400f565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156144bc576144bb614302565b5b6144c582613f8c565b9050602081019050919050565b82818337600083830152505050565b60006144f46144ef846144a1565b614362565b9050828152602081018484840111156145105761450f61449c565b5b61451b8482856144d2565b509392505050565b600082601f83011261453857614537614114565b5b81356145488482602086016144e1565b91505092915050565b6000806000806080858703121561456b5761456a613dc2565b5b600061457987828801613ed0565b945050602061458a87828801613ed0565b935050604061459b87828801614068565b925050606085013567ffffffffffffffff8111156145bc576145bb613dc7565b5b6145c887828801614523565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b6145f5816145d4565b811461460057600080fd5b50565b600081359050614612816145ec565b92915050565b6000806040838503121561462f5761462e613dc2565b5b600061463d85828601613ed0565b925050602061464e85828601614603565b9150509250929050565b600067ffffffffffffffff82111561467357614672614302565b5b61467c82613f8c565b9050602081019050919050565b600061469c61469784614658565b614362565b9050828152602081018484840111156146b8576146b761449c565b5b6146c38482856144d2565b509392505050565b600082601f8301126146e0576146df614114565b5b81356146f0848260208601614689565b91505092915050565b60006020828403121561470f5761470e613dc2565b5b600082013567ffffffffffffffff81111561472d5761472c613dc7565b5b614739848285016146cb565b91505092915050565b6000806040838503121561475957614758613dc2565b5b600061476785828601613ed0565b925050602061477885828601613ed0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147c957607f821691505b6020821081036147dc576147db614782565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261484f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614812565b6148598683614812565b95508019841693508086168417925050509392505050565b6000819050919050565b600061489661489161488c84613f12565b614871565b613f12565b9050919050565b6000819050919050565b6148b08361487b565b6148c46148bc8261489d565b84845461481f565b825550505050565b600090565b6148d96148cc565b6148e48184846148a7565b505050565b5b81811015614908576148fd6000826148d1565b6001810190506148ea565b5050565b601f82111561494d5761491e816147ed565b61492784614802565b81016020851015614936578190505b61494a61494285614802565b8301826148e9565b50505b505050565b600082821c905092915050565b600061497060001984600802614952565b1980831691505092915050565b6000614989838361495f565b9150826002028217905092915050565b6149a383836147e2565b67ffffffffffffffff8111156149bc576149bb614302565b5b6149c682546147b1565b6149d182828561490c565b6000601f831160018114614a0057600084156149ee578287013590505b6149f8858261497d565b865550614a60565b601f198416614a0e866147ed565b60005b82811015614a3657848901358255600182019150602085019450602081019050614a11565b86831015614a535784890135614a4f601f89168261495f565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aa382613f12565b9150614aae83613f12565b9250828202614abc81613f12565b91508282048414831517614ad357614ad2614a69565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b1482613f12565b9150614b1f83613f12565b925082614b2f57614b2e614ada565b5b828204905092915050565b7f506c6561736520776169742c20436c61696d206973206e6f7420656e61626c6560008201527f64207965742e0000000000000000000000000000000000000000000000000000602082015250565b6000614b96602683613f51565b9150614ba182614b3a565b604082019050919050565b60006020820190508181036000830152614bc581614b89565b9050919050565b7f54686973206163636f756e74206973206e6f742057686974656c69737465642e600082015250565b6000614c02602083613f51565b9150614c0d82614bcc565b602082019050919050565b60006020820190508181036000830152614c3181614bf5565b9050919050565b7f416c726561647920436c61696d65640000000000000000000000000000000000600082015250565b6000614c6e600f83613f51565b9150614c7982614c38565b602082019050919050565b60006020820190508181036000830152614c9d81614c61565b9050919050565b6000614caf82613f12565b9150614cba83613f12565b9250828201905080821115614cd257614cd1614a69565b5b92915050565b7f416c6c204e46547320636c61696d65642066726f6d207468697320436f6c6c6560008201527f6374696f6e2c20747279207365636f6e6420436f6c6c656374696f6e2e000000602082015250565b6000614d34603d83613f51565b9150614d3f82614cd8565b604082019050919050565b60006020820190508181036000830152614d6381614d27565b9050919050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b6000614da0601683613f51565b9150614dab82614d6a565b602082019050919050565b60006020820190508181036000830152614dcf81614d93565b9050919050565b7f596f752063616e206e6f7420636c61696d206d6f7265207468616e204d41585f60008201527f434c41494d5f5045525f4143434f554e54000000000000000000000000000000602082015250565b6000614e32603183613f51565b9150614e3d82614dd6565b604082019050919050565b60006020820190508181036000830152614e6181614e25565b9050919050565b600081905092915050565b50565b6000614e83600083614e68565b9150614e8e82614e73565b600082019050919050565b6000614ea482614e76565b9150819050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000614ee4601883613f51565b9150614eef82614eae565b602082019050919050565b60006020820190508181036000830152614f1381614ed7565b9050919050565b7f536f6c64204f75742e0000000000000000000000000000000000000000000000600082015250565b6000614f50600983613f51565b9150614f5b82614f1a565b602082019050919050565b60006020820190508181036000830152614f7f81614f43565b9050919050565b7f416d6f756e742045786365656473204d6178696d756d204d696e747320416c6c60008201527f6f77656420506572204163636f756e742e000000000000000000000000000000602082015250565b6000614fe2603183613f51565b9150614fed82614f86565b604082019050919050565b6000602082019050818103600083015261501181614fd5565b9050919050565b7f596f752063616e206e6f74206d696e74206d6f7265207468616e204d6178204d60008201527f696e74204c696d69742e00000000000000000000000000000000000000000000602082015250565b6000615074602a83613f51565b915061507f82615018565b604082019050919050565b600060208201905081810360008301526150a381615067565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b60006150e0601a83613f51565b91506150eb826150aa565b602082019050919050565b6000602082019050818103600083015261510f816150d3565b9050919050565b600061512182613f12565b915061512c83613f12565b925082820390508181111561514457615143614a69565b5b92915050565b7f596f752063616e2077686974656c697374206f6e6c792035303020757365727360008201527f20696e206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b60006151a6603483613f51565b91506151b18261514a565b604082019050919050565b600060208201905081810360008301526151d581615199565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061521682613f12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361524857615247614a69565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006152af602f83613f51565b91506152ba82615253565b604082019050919050565b600060208201905081810360008301526152de816152a2565b9050919050565b600081905092915050565b60006152fb82613f46565b61530581856152e5565b9350615315818560208601613f62565b80840191505092915050565b6000815461532e816147b1565b61533881866152e5565b9450600182166000811461535357600181146153685761539b565b60ff198316865281151582028601935061539b565b615371856147ed565b60005b8381101561539357815481890152600182019150602081019050615374565b838801955050505b50505092915050565b60006153b082866152f0565b91506153bc82856152f0565b91506153c88284615321565b9150819050949350505050565b7f596f752063616e20616c6c6f776c697374206f6e6c792035303020757365727360008201527f20696e206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b6000615431603483613f51565b915061543c826153d5565b604082019050919050565b6000602082019050818103600083015261546081615424565b9050919050565b61547082613f46565b67ffffffffffffffff81111561548957615488614302565b5b61549382546147b1565b61549e82828561490c565b600060209050601f8311600181146154d157600084156154bf578287015190505b6154c9858261497d565b865550615531565b601f1984166154df866147ed565b60005b82811015615507578489015182556001820191506020850194506020810190506154e2565b868310156155245784890151615520601f89168261495f565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615595602683613f51565b91506155a082615539565b604082019050919050565b600060208201905081810360008301526155c481615588565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615601602083613f51565b915061560c826155cb565b602082019050919050565b60006020820190508181036000830152615630816155f4565b9050919050565b6000819050919050565b61565261564d82613f12565b615637565b82525050565b60006156648285615641565b6020820191506156748284615641565b6020820191508190509392505050565b600061568f82613f12565b915061569a83613f12565b9250826156aa576156a9614ada565b5b828206905092915050565b60006156c082613f12565b9150600082036156d3576156d2614a69565b5b600182039050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061573a602a83613f51565b9150615745826156de565b604082019050919050565b600060208201905081810360008301526157698161572d565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006157a6601983613f51565b91506157b182615770565b602082019050919050565b600060208201905081810360008301526157d581615799565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615803826157dc565b61580d81856157e7565b935061581d818560208601613f62565b61582681613f8c565b840191505092915050565b600060808201905061584660008301876140aa565b61585360208301866140aa565b6158606040830185613f1c565b818103606083015261587281846157f8565b905095945050505050565b60008151905061588c81613df8565b92915050565b6000602082840312156158a8576158a7613dc2565b5b60006158b68482850161587d565b9150509291505056fea264697066735822122092bf85666118f8d9b037dd5a7e3469ac37a93cfe3cec4a95771c42e2a5fe7f3064736f6c63430008130033

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

00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x59dE7273191E6bf1907d614e94eCFbe8e5FB7318
Arg [1] : _royaltyFraction (uint96): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb7318
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

82053:10637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83711:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88808:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82431:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89657:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47467:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91232:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82341:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83022:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86393:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36727:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90303:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91624:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15758:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;82380:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82776:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85237:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87957:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88696:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90495:183;;;;;;;;;;;;;:::i;:::-;;92015:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89892:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86940:1009;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86133:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42369:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82602:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37911:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:103;;;;;;;;;;;;;:::i;:::-;;82827:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90030:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82297:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83063:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20383:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41152:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82880:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90838:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89772:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90171:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82928:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82524:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82253:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88920:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82477:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85525:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92414:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82724:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82562:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85876:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82209:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82646:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84344:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82976:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89228:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84208:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84944:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86762:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48416:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21289:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89540:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82681:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83711:274;83842:4;83884:38;83910:11;83884:25;:38::i;:::-;:93;;;;83939:38;83965:11;83939:25;:38::i;:::-;83884:93;83864:113;;83711:274;;;:::o;88808:104::-;88865:4;88889:9;:15;88899:4;88889:15;;;;;;;;;;;;;;;;;;;;;;;;;88882:22;;88808:104;;;:::o;82431:39::-;;;;:::o;40976:100::-;41030:13;41063:5;41056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40976:100;:::o;89657:107::-;20269:13;:11;:13::i;:::-;89744:12:::1;89730:11;;:26;;;;;;;;;;;;;;;;;;89657:107:::0;:::o;47467:218::-;47543:7;47568:16;47576:7;47568;:16::i;:::-;47563:64;;47593:34;;;;;;;;;;;;;;47563:64;47647:15;:24;47663:7;47647:24;;;;;;;;;;;:30;;;;;;;;;;;;47640:37;;47467:218;;;:::o;91232:232::-;91372:8;91382:24;;;;;;;;;;;80632:7;80629:925;;;80761:22;80755:4;80748:36;80862:9;80856:4;80849:23;81014:8;81010:2;81006:17;81002:2;80998:26;80992:4;80985:40;81201:4;81195;81189;81183;81156:25;81149:5;81138:68;81128:290;;81330:16;81324:4;81318;81303:44;81382:16;81376:4;81369:30;81128:290;81537:1;81531:4;81524:15;80629:925;91424:32:::1;91438:8;91448:7;91424:13;:32::i;:::-;91232:232:::0;;;;:::o;82341:32::-;;;;:::o;83022:34::-;;;;:::o;86393:224::-;83589:14;:23;83604:7;;;;83589:23;;;;;;;;;;;;;;;;;;;;;;;;;;;83585:52;;;83621:16;;;;;;;;;;;;;;83585:52;20269:13:::1;:11;:13::i;:::-;86528:1:::2;86502:14;86496:28;;;;;:::i;:::-;;;:33;86492:72;;86538:26;;;;;;;;;;;;;;86492:72;86594:15;;86577:14;:32;;;;;;;:::i;:::-;;86393:224:::0;;:::o;36727:323::-;36788:7;37016:15;:13;:15::i;:::-;37001:12;;36985:13;;:28;:46;36978:53;;36727:323;:::o;90303:112::-;20269:13;:11;:13::i;:::-;90395:12:::1;90381:11;:26;;;;90303:112:::0;:::o;91624:231::-;91767:4;91773:24;;;;;;;;;;;78405:7;78402:1643;;;78618:8;78610:4;78606:2;78602:13;78598:2;78594:22;78591:36;78581:1449;;78933:22;78927:4;78920:36;79042:9;79036:4;79029:23;79135:8;79129:4;79122:22;79328:4;79322;79316;79310;79283:25;79276:5;79265:68;79255:306;;79465:16;79459:4;79453;79438:44;79521:16;79515:4;79508:30;79255:306;80009:1;80003:4;79996:15;78581:1449;78402:1643;91810:37:::1;91829:4;91835:2;91839:7;91810:18;:37::i;:::-;91624:231:::0;;;;;:::o;15758:442::-;15855:7;15864;15884:26;15913:17;:27;15931:8;15913:27;;;;;;;;;;;15884:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15985:1;15957:30;;:7;:16;;;:30;;;15953:92;;16014:19;16004:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15953:92;16057:21;16122:17;:15;:17::i;:::-;16081:58;;16095:7;:23;;;16082:36;;:10;:36;;;;:::i;:::-;16081:58;;;;:::i;:::-;16057:82;;16160:7;:16;;;16178:13;16152:40;;;;;;15758:442;;;;;:::o;82380:40::-;82417:3;82380:40;:::o;82776:44::-;;;;;;;;;;;;;;;;;:::o;85237:96::-;20269:13;:11;:13::i;:::-;85321:4:::1;85300:14;:18;85315:2;85300:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;85237:96:::0;:::o;87957:731::-;88032:4;88016:20;;:12;;;;;;;;;;;:20;;;88008:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;88127:4;88098:33;;:25;88112:10;88098:13;:25::i;:::-;:33;;;88090:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;88210:5;88187:28;;:7;:19;88195:10;88187:19;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;88179:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;88277:11;;88267:6;88254:10;;:19;;;;:::i;:::-;:34;;88246:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;82417:3;88389:6;88372:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;88364:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;88495:21;;88486:6;88457:14;:26;88472:10;88457:26;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:59;88449:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;88581:31;88593:10;88605:6;88581:11;:31::i;:::-;88637:6;88623:10;;:20;;;;;;;:::i;:::-;;;;;;;;88676:4;88654:7;:19;88662:10;88654:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;87957:731;:::o;88696:104::-;88753:4;88777:9;:15;88787:4;88777:15;;;;;;;;;;;;;;;;;;;;;;;;;88770:22;;88696:104;;;:::o;90495:183::-;20269:13;:11;:13::i;:::-;90546:12:::1;90572:10;90564:24;;90596:21;90564:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90545:77;;;90638:7;90633:37;;90654:16;;;;;;;;;;;;;;90633:37;90534:144;90495:183::o:0;92015:239::-;92162:4;92168:24;;;;;;;;;;;78405:7;78402:1643;;;78618:8;78610:4;78606:2;78602:13;78598:2;78594:22;78591:36;78581:1449;;78933:22;78927:4;78920:36;79042:9;79036:4;79029:23;79135:8;79129:4;79122:22;79328:4;79322;79316;79310;79283:25;79276:5;79265:68;79255:306;;79465:16;79459:4;79453;79438:44;79521:16;79515:4;79508:30;79255:306;80009:1;80003:4;79996:15;78581:1449;78402:1643;92205:41:::1;92228:4;92234:2;92238:7;92205:22;:41::i;:::-;92015:239:::0;;;;;:::o;89892:129::-;20269:13;:11;:13::i;:::-;90000::::1;89977:20;:36;;;;89892:129:::0;:::o;86940:1009::-;87039:4;87024:19;;:11;;;;;;;;;;;:19;;;87016:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;87119:16;;87109:6;87091:15;;:24;;;;:::i;:::-;:44;;87083:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;87178:20;;87168:6;:30;;87160:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;87308:20;;87298:6;87271:12;:24;87284:10;87271:24;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:57;;87263:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;82417:3;87411:6;87394:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;87386:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;87471:14;87497:9;;87488:6;:18;;;;:::i;:::-;87471:35;;87530:4;87521:13;;:5;:13;;;87517:105;;87581:3;87575;87563:9;:15;;;;:::i;:::-;:21;;;;:::i;:::-;87551:33;;87517:105;87662:9;87649;:22;;87640:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;87714:31;87726:10;87738:6;87714:11;:31::i;:::-;87775:6;87756:15;;:25;;;;;;;:::i;:::-;;;;;;;;87820:6;87792:12;:24;87805:10;87792:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;87853:9;87841;:21;87837:105;;;87887:10;87879:28;;:51;87920:9;87908;:21;;;;:::i;:::-;87879:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87837:105;87005:944;86940:1009;;:::o;86133:123::-;83589:14;:23;83604:7;;;;83589:23;;;;;;;;;;;;;;;;;;;;;;;;;;;83585:52;;;83621:16;;;;;;;;;;;;;;83585:52;20269:13:::1;:11;:13::i;:::-;86237:11:::2;;86221:13;:27;;;;;;;:::i;:::-;;86133:123:::0;;:::o;42369:152::-;42441:7;42484:27;42503:7;42484:18;:27::i;:::-;42461:52;;42369:152;;;:::o;82602:37::-;;;;:::o;37911:233::-;37983:7;38024:1;38007:19;;:5;:19;;;38003:60;;38035:28;;;;;;;;;;;;;;38003:60;32070:13;38081:18;:25;38100:5;38081:25;;;;;;;;;;;;;;;;:55;38074:62;;37911:233;;;:::o;21031:103::-;20269:13;:11;:13::i;:::-;21096:30:::1;21123:1;21096:18;:30::i;:::-;21031:103::o:0;82827:46::-;;;;;;;;;;;;;;;;;:::o;90030:133::-;20269:13;:11;:13::i;:::-;90141:14:::1;90117:21;:38;;;;90030:133:::0;:::o;82297:37::-;;;;:::o;83063:29::-;;;;:::o;20383:87::-;20429:7;20456:6;;;;;;;;;;;20449:13;;20383:87;:::o;41152:104::-;41208:13;41241:7;41234:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41152:104;:::o;82880:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;90838:234::-;90969:8;90979:24;;;;;;;;;;;80632:7;80629:925;;;80761:22;80755:4;80748:36;80862:9;80856:4;80849:23;81014:8;81010:2;81006:17;81002:2;80998:26;80992:4;80985:40;81201:4;81195;81189;81183;81156:25;81149:5;81138:68;81128:290;;81330:16;81324:4;81318;81303:44;81382:16;81376:4;81369:30;81128:290;81537:1;81531:4;81524:15;80629:925;91021:43:::1;91045:8;91055;91021:23;:43::i;:::-;90838:234:::0;;;;:::o;89772:112::-;20269:13;:11;:13::i;:::-;89863::::1;89848:12;;:28;;;;;;;;;;;;;;;;;;89772:112:::0;:::o;90171:124::-;20269:13;:11;:13::i;:::-;90274::::1;90255:16;:32;;;;90171:124:::0;:::o;82928:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;82524:31::-;;;;;;;;;;;;;:::o;82253:37::-;82288:2;82253:37;:::o;88920:299::-;20269:13;:11;:13::i;:::-;89043:3:::1;89028:5;:12;:18;89020:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;89117:6;89113:97;89129:5;:12;89127:1;:14;89113:97;;;89184:14;89162:9;:19;89172:5;89178:1;89172:8;;;;;;;;:::i;:::-;;;;;;;;89162:19;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;89143:3;;;;;:::i;:::-;;;;89113:97;;;;88920:299:::0;;:::o;82477:40::-;;;;:::o;85525:128::-;83589:14;:23;83604:7;;;;83589:23;;;;;;;;;;;;;;;;;;;;;;;;;;;83585:52;;;83621:16;;;;;;;;;;;;;;83585:52;20269:13:::1;:11;:13::i;:::-;85640:5:::2;85613:24;;:32;;;;;;;;;;;;;;;;;;85525:128:::0;:::o;92414:273::-;92589:4;92595:24;;;;;;;;;;;78405:7;78402:1643;;;78618:8;78610:4;78606:2;78602:13;78598:2;78594:22;78591:36;78581:1449;;78933:22;78927:4;78920:36;79042:9;79036:4;79029:23;79135:8;79129:4;79122:22;79328:4;79322;79316;79310;79283:25;79276:5;79265:68;79255:306;;79465:16;79459:4;79453;79438:44;79521:16;79515:4;79508:30;79255:306;80009:1;80003:4;79996:15;78581:1449;78402:1643;92632:47:::1;92655:4;92661:2;92665:7;92674:4;92632:22;:47::i;:::-;92414:273:::0;;;;;;:::o;82724:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;82562:32::-;;;;;;;;;;;;;:::o;85876:147::-;20269:13;:11;:13::i;:::-;85970:45:::1;85989:8;85999:15;85970:18;:45::i;:::-;85876:147:::0;;:::o;82209:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82646:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84344:434::-;84442:13;84485:16;84493:7;84485;:16::i;:::-;84469:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;84575:28;84606:10;:8;:10::i;:::-;84575:41;;84661:1;84636:14;84630:28;:32;:140;;;;;;;;;;;;;;;;;84698:14;84714:25;84731:7;84714:16;:25::i;:::-;84741:13;84681:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84630:140;84623:147;;;84344:434;;;:::o;82976:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;89228:299::-;20269:13;:11;:13::i;:::-;89351:3:::1;89336:5;:12;:18;89328:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;89425:6;89421:97;89437:5;:12;89435:1;:14;89421:97;;;89492:14;89470:9;:19;89480:5;89486:1;89480:8;;;;;;;;:::i;:::-;;;;;;;;89470:19;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;89451:3;;;;;:::i;:::-;;;;89421:97;;;;89228:299:::0;;:::o;84208:128::-;20269:13;:11;:13::i;:::-;84311:17:::1;84295:13;:33;;;;;;:::i;:::-;;84208:128:::0;:::o;84944:119::-;85006:7;85033:22;85047:7;85033:13;:22::i;:::-;85026:29;;84944:119;;;:::o;86762:168::-;83589:14;:23;83604:7;;;;83589:23;;;;;;;;;;;;;;;;;;;;;;;;;;;83585:52;;;83621:16;;;;;;;;;;;;;;83585:52;20269:13:::1;:11;:13::i;:::-;82288:2:::2;86834:14;:12;:14::i;:::-;:26;86830:62;;86869:23;;;;;;;;;;;;;;86830:62;86903:19;86909:2;82288;86903:5;:19::i;:::-;86762:168:::0;:::o;48416:164::-;48513:4;48537:18;:25;48556:5;48537:25;;;;;;;;;;;;;;;:35;48563:8;48537:35;;;;;;;;;;;;;;;;;;;;;;;;;48530:42;;48416:164;;;;:::o;21289:201::-;20269:13;:11;:13::i;:::-;21398:1:::1;21378:22;;:8;:22;;::::0;21370:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21454:28;21473:8;21454:18;:28::i;:::-;21289:201:::0;:::o;89540:102::-;20269:13;:11;:13::i;:::-;89625:9:::1;89613;:21;;;;89540:102:::0;:::o;82681:36::-;;;;;;;;;;;;;:::o;40074:639::-;40159:4;40498:10;40483:25;;:11;:25;;;;:102;;;;40575:10;40560:25;;:11;:25;;;;40483:102;:179;;;;40652:10;40637:25;;:11;:25;;;;40483:179;40463:199;;40074:639;;;:::o;15488:215::-;15590:4;15629:26;15614:41;;;:11;:41;;;;:81;;;;15659:36;15683:11;15659:23;:36::i;:::-;15614:81;15607:88;;15488:215;;;:::o;20548:132::-;20623:12;:10;:12::i;:::-;20612:23;;:7;:5;:7::i;:::-;:23;;;20604:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20548:132::o;48838:282::-;48903:4;48959:7;48940:15;:13;:15::i;:::-;:26;;:66;;;;;48993:13;;48983:7;:23;48940:66;:153;;;;;49092:1;32846:8;49044:17;:26;49062:7;49044:26;;;;;;;;;;;;:44;:49;48940:153;48920:173;;48838:282;;;:::o;46900:408::-;46989:13;47005:16;47013:7;47005;:16::i;:::-;46989:32;;47061:5;47038:28;;:19;:17;:19::i;:::-;:28;;;47034:175;;47086:44;47103:5;47110:19;:17;:19::i;:::-;47086:16;:44::i;:::-;47081:128;;47158:35;;;;;;;;;;;;;;47081:128;47034:175;47254:2;47221:15;:24;47237:7;47221:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;47292:7;47288:2;47272:28;;47281:5;47272:28;;;;;;;;;;;;46978:330;46900:408;;:::o;36243:92::-;36299:7;36326:1;36319:8;;36243:92;:::o;51106:2825::-;51248:27;51278;51297:7;51278:18;:27::i;:::-;51248:57;;51363:4;51322:45;;51338:19;51322:45;;;51318:86;;51376:28;;;;;;;;;;;;;;51318:86;51418:27;51447:23;51474:35;51501:7;51474:26;:35::i;:::-;51417:92;;;;51609:68;51634:15;51651:4;51657:19;:17;:19::i;:::-;51609:24;:68::i;:::-;51604:180;;51697:43;51714:4;51720:19;:17;:19::i;:::-;51697:16;:43::i;:::-;51692:92;;51749:35;;;;;;;;;;;;;;51692:92;51604:180;51815:1;51801:16;;:2;:16;;;51797:52;;51826:23;;;;;;;;;;;;;;51797:52;51862:43;51884:4;51890:2;51894:7;51903:1;51862:21;:43::i;:::-;51998:15;51995:160;;;52138:1;52117:19;52110:30;51995:160;52535:18;:24;52554:4;52535:24;;;;;;;;;;;;;;;;52533:26;;;;;;;;;;;;52604:18;:22;52623:2;52604:22;;;;;;;;;;;;;;;;52602:24;;;;;;;;;;;52926:146;52963:2;53012:45;53027:4;53033:2;53037:19;53012:14;:45::i;:::-;33126:8;52984:73;52926:18;:146::i;:::-;52897:17;:26;52915:7;52897:26;;;;;;;;;;;:175;;;;53243:1;33126:8;53192:19;:47;:52;53188:627;;53265:19;53297:1;53287:7;:11;53265:33;;53454:1;53420:17;:30;53438:11;53420:30;;;;;;;;;;;;:35;53416:384;;53558:13;;53543:11;:28;53539:242;;53738:19;53705:17;:30;53723:11;53705:30;;;;;;;;;;;:52;;;;53539:242;53416:384;53246:569;53188:627;53862:7;53858:2;53843:27;;53852:4;53843:27;;;;;;;;;;;;53881:42;53902:4;53908:2;53912:7;53921:1;53881:20;:42::i;:::-;51237:2694;;;51106:2825;;;:::o;16482:97::-;16540:6;16566:5;16559:12;;16482:97;:::o;37148:296::-;37203:7;37410:15;:13;:15::i;:::-;37394:13;;:31;37387:38;;37148:296;:::o;61564:1748::-;61661:1;61647:16;;:2;:16;;;61643:75;;61687:19;;;;;;;;;;;;;;61643:75;61744:1;61732:8;:13;61728:71;;61769:18;;;;;;;;;;;;;;61728:71;61809:50;61839:1;61843:2;61847:1;61850:8;61809:21;:50::i;:::-;61872:25;61914:8;61900:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61872:51;;61934:28;61979:3;61965:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61934:49;;61999:9;61994:84;62018:3;62014:1;:7;61994:84;;;62064:2;62060:1;:6;;;;:::i;:::-;62043:11;62055:1;62043:14;;;;;;;;:::i;:::-;;;;;;;:23;;;;;62023:3;;;;;:::i;:::-;;;;61994:84;;;;62151:9;62163:3;62151:15;;62146:221;62172:1;62168;:5;62146:221;;;62195:9;62271:1;62267;:5;;;;:::i;:::-;62242:15;62259:1;62225:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62215:47;;;;;;62207:56;;:66;;;;:::i;:::-;62195:78;;62324:11;62336:1;62324:14;;;;;;;;:::i;:::-;;;;;;;;62340:11;62352:1;62340:14;;;;;;;;:::i;:::-;;;;;;;;62289:11;62301:1;62289:14;;;;;;;;:::i;:::-;;;;;;;62305:11;62317:1;62305:14;;;;;;;;:::i;:::-;;;;;;;62288:67;;;;;;;;;;62180:187;62175:3;;;;;:::i;:::-;;;;62146:221;;;;62463:9;62458:665;62482:8;62478:1;:12;62458:665;;;62512:15;62530:11;62542:1;62530:14;;;;;;;;:::i;:::-;;;;;;;;62512:32;;62584:4;62559:13;:22;62573:7;62559:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62617:7;62603:8;62612:1;62603:11;;;;;;;;:::i;:::-;;;;;;;:21;;;;;62670:139;62707:2;62761:33;62784:1;62788:2;62792:1;62761:14;:33::i;:::-;62728:30;62749:8;62728:20;:30::i;:::-;:66;62670:18;:139::i;:::-;62641:17;:26;62659:7;62641:26;;;;;;;;;;;:168;;;;62878:16;62874:2;62870:25;63071:7;63044:8;63024:1;62980:25;62960:1;62940;62913:184;62835:277;;62492:3;;;;;:::i;:::-;;;;62458:665;;;;63204:1;32208:2;63174:1;:26;;63173:32;63161:8;:45;;;;:::i;:::-;63135:18;:22;63154:2;63135:22;;;;;;;;;;;;;;;;:71;;;;;;;:::i;:::-;;;;;;;;63234:8;63217:13;;:25;;;;;;;:::i;:::-;;;;;;;;63255:49;63284:1;63288:2;63292:1;63295:8;63255:20;:49::i;:::-;61632:1680;;61564:1748;;:::o;54027:193::-;54173:39;54190:4;54196:2;54200:7;54173:39;;;;;;;;;;;;:16;:39::i;:::-;54027:193;;;:::o;43524:1275::-;43591:7;43611:12;43626:7;43611:22;;43694:4;43675:15;:13;:15::i;:::-;:23;43671:1061;;43728:13;;43721:4;:20;43717:1015;;;43766:14;43783:17;:23;43801:4;43783:23;;;;;;;;;;;;43766:40;;43900:1;32846:8;43872:6;:24;:29;43868:845;;44537:113;44554:1;44544:6;:11;44537:113;;44597:17;:25;44615:6;;;;;;;44597:25;;;;;;;;;;;;44588:34;;44537:113;;;44683:6;44676:13;;;;;;43868:845;43743:989;43717:1015;43671:1061;44760:31;;;;;;;;;;;;;;43524:1275;;;;:::o;21650:191::-;21724:16;21743:6;;;;;;;;;;;21724:25;;21769:8;21760:6;;:17;;;;;;;;;;;;;;;;;;21824:8;21793:40;;21814:8;21793:40;;;;;;;;;;;;21713:128;21650:191;:::o;48025:234::-;48172:8;48120:18;:39;48139:19;:17;:19::i;:::-;48120:39;;;;;;;;;;;;;;;:49;48160:8;48120:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;48232:8;48196:55;;48211:19;:17;:19::i;:::-;48196:55;;;48242:8;48196:55;;;;;;:::i;:::-;;;;;;;;48025:234;;:::o;54818:407::-;54993:31;55006:4;55012:2;55016:7;54993:12;:31::i;:::-;55057:1;55039:2;:14;;;:19;55035:183;;55078:56;55109:4;55115:2;55119:7;55128:5;55078:30;:56::i;:::-;55073:145;;55162:40;;;;;;;;;;;;;;55073:145;55035:183;54818:407;;;;:::o;16850:332::-;16969:17;:15;:17::i;:::-;16953:33;;:12;:33;;;;16945:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;17072:1;17052:22;;:8;:22;;;17044:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;17139:35;;;;;;;;17151:8;17139:35;;;;;;17161:12;17139:35;;;;;17117:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16850:332;;:::o;84086:114::-;84146:13;84179;84172:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84086:114;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;38226:178::-;38287:7;32070:13;32208:2;38315:18;:25;38334:5;38315:25;;;;;;;;;;;;;;;;:50;;38314:82;38307:89;;38226:178;;;:::o;58487:2966::-;58560:20;58583:13;;58560:36;;58623:1;58611:8;:13;58607:44;;58633:18;;;;;;;;;;;;;;58607:44;58664:61;58694:1;58698:2;58702:12;58716:8;58664:21;:61::i;:::-;59208:1;32208:2;59178:1;:26;;59177:32;59165:8;:45;59139:18;:22;59158:2;59139:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;59487:139;59524:2;59578:33;59601:1;59605:2;59609:1;59578:14;:33::i;:::-;59545:30;59566:8;59545:20;:30::i;:::-;:66;59487:18;:139::i;:::-;59453:17;:31;59471:12;59453:31;;;;;;;;;;;:173;;;;59643:16;59674:11;59703:8;59688:12;:23;59674:37;;60224:16;60220:2;60216:25;60204:37;;60596:12;60556:8;60515:1;60453:25;60394:1;60333;60306:335;60967:1;60953:12;60949:20;60907:346;61008:3;60999:7;60996:16;60907:346;;61226:7;61216:8;61213:1;61186:25;61183:1;61180;61175:59;61061:1;61052:7;61048:15;61037:26;;60907:346;;;60911:77;61298:1;61286:8;:13;61282:45;;61308:19;;;;;;;;;;;;;;61282:45;61360:3;61344:13;:19;;;;58913:2462;;61385:60;61414:1;61418:2;61422:12;61436:8;61385:20;:60::i;:::-;58549:2904;58487:2966;;:::o;13040:157::-;13125:4;13164:25;13149:40;;;:11;:40;;;;13142:47;;13040:157;;;:::o;18934:98::-;18987:7;19014:10;19007:17;;18934:98;:::o;73005:105::-;73065:7;73092:10;73085:17;;73005:105;:::o;50001:485::-;50103:27;50132:23;50173:38;50214:15;:24;50230:7;50214:24;;;;;;;;;;;50173:65;;50391:18;50368:41;;50448:19;50442:26;50423:45;;50353:126;50001:485;;;:::o;49229:659::-;49378:11;49543:16;49536:5;49532:28;49523:37;;49703:16;49692:9;49688:32;49675:45;;49853:15;49842:9;49839:30;49831:5;49820:9;49817:20;49814:56;49804:66;;49229:659;;;;;:::o;55887:159::-;;;;;:::o;72314:311::-;72449:7;72469:16;33250:3;72495:19;:41;;72469:68;;33250:3;72563:31;72574:4;72580:2;72584:9;72563:10;:31::i;:::-;72555:40;;:62;;72548:69;;;72314:311;;;;;:::o;45347:450::-;45427:14;45595:16;45588:5;45584:28;45575:37;;45772:5;45758:11;45733:23;45729:41;45726:52;45719:5;45716:63;45706:73;;45347:450;;;;:::o;56711:158::-;;;;;:::o;45899:324::-;45969:14;46202:1;46192:8;46189:15;46163:24;46159:46;46149:56;;45899:324;;;:::o;57309:716::-;57472:4;57518:2;57493:45;;;57539:19;:17;:19::i;:::-;57560:4;57566:7;57575:5;57493:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57489:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57793:1;57776:6;:13;:18;57772:235;;57822:40;;;;;;;;;;;;;;57772:235;57965:6;57959:13;57950:6;57946:2;57942:15;57935:38;57489:529;57662:54;;;57652:64;;;:6;:64;;;;57645:71;;;57309:716;;;;;;:::o;72015:147::-;72152:6;72015:147;;;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:77::-;2397:7;2426:5;2415:16;;2360:77;;;:::o;2443:118::-;2530:24;2548:5;2530:24;:::i;:::-;2525:3;2518:37;2443:118;;:::o;2567:222::-;2660:4;2698:2;2687:9;2683:18;2675:26;;2711:71;2779:1;2768:9;2764:17;2755:6;2711:71;:::i;:::-;2567:222;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:246::-;3156:1;3166:113;3180:6;3177:1;3174:13;3166:113;;;3265:1;3260:3;3256:11;3250:18;3246:1;3241:3;3237:11;3230:39;3202:2;3199:1;3195:10;3190:15;;3166:113;;;3313:1;3304:6;3299:3;3295:16;3288:27;3137:184;3075:246;;;:::o;3327:102::-;3368:6;3419:2;3415:7;3410:2;3403:5;3399:14;3395:28;3385:38;;3327:102;;;:::o;3435:377::-;3523:3;3551:39;3584:5;3551:39;:::i;:::-;3606:71;3670:6;3665:3;3606:71;:::i;:::-;3599:78;;3686:65;3744:6;3739:3;3732:4;3725:5;3721:16;3686:65;:::i;:::-;3776:29;3798:6;3776:29;:::i;:::-;3771:3;3767:39;3760:46;;3527:285;3435:377;;;;:::o;3818:313::-;3931:4;3969:2;3958:9;3954:18;3946:26;;4018:9;4012:4;4008:20;4004:1;3993:9;3989:17;3982:47;4046:78;4119:4;4110:6;4046:78;:::i;:::-;4038:86;;3818:313;;;;:::o;4137:116::-;4207:21;4222:5;4207:21;:::i;:::-;4200:5;4197:32;4187:60;;4243:1;4240;4233:12;4187:60;4137:116;:::o;4259:133::-;4302:5;4340:6;4327:20;4318:29;;4356:30;4380:5;4356:30;:::i;:::-;4259:133;;;;:::o;4398:323::-;4454:6;4503:2;4491:9;4482:7;4478:23;4474:32;4471:119;;;4509:79;;:::i;:::-;4471:119;4629:1;4654:50;4696:7;4687:6;4676:9;4672:22;4654:50;:::i;:::-;4644:60;;4600:114;4398:323;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:329::-;5059:6;5108:2;5096:9;5087:7;5083:23;5079:32;5076:119;;;5114:79;;:::i;:::-;5076:119;5234:1;5259:53;5304:7;5295:6;5284:9;5280:22;5259:53;:::i;:::-;5249:63;;5205:117;5000:329;;;;:::o;5335:118::-;5422:24;5440:5;5422:24;:::i;:::-;5417:3;5410:37;5335:118;;:::o;5459:222::-;5552:4;5590:2;5579:9;5575:18;5567:26;;5603:71;5671:1;5660:9;5656:17;5647:6;5603:71;:::i;:::-;5459:222;;;;:::o;5687:474::-;5755:6;5763;5812:2;5800:9;5791:7;5787:23;5783:32;5780:119;;;5818:79;;:::i;:::-;5780:119;5938:1;5963:53;6008:7;5999:6;5988:9;5984:22;5963:53;:::i;:::-;5953:63;;5909:117;6065:2;6091:53;6136:7;6127:6;6116:9;6112:22;6091:53;:::i;:::-;6081:63;;6036:118;5687:474;;;;;:::o;6167:117::-;6276:1;6273;6266:12;6290:117;6399:1;6396;6389:12;6413:117;6522:1;6519;6512:12;6550:553;6608:8;6618:6;6668:3;6661:4;6653:6;6649:17;6645:27;6635:122;;6676:79;;:::i;:::-;6635:122;6789:6;6776:20;6766:30;;6819:18;6811:6;6808:30;6805:117;;;6841:79;;:::i;:::-;6805:117;6955:4;6947:6;6943:17;6931:29;;7009:3;7001:4;6993:6;6989:17;6979:8;6975:32;6972:41;6969:128;;;7016:79;;:::i;:::-;6969:128;6550:553;;;;;:::o;7109:529::-;7180:6;7188;7237:2;7225:9;7216:7;7212:23;7208:32;7205:119;;;7243:79;;:::i;:::-;7205:119;7391:1;7380:9;7376:17;7363:31;7421:18;7413:6;7410:30;7407:117;;;7443:79;;:::i;:::-;7407:117;7556:65;7613:7;7604:6;7593:9;7589:22;7556:65;:::i;:::-;7538:83;;;;7334:297;7109:529;;;;;:::o;7644:619::-;7721:6;7729;7737;7786:2;7774:9;7765:7;7761:23;7757:32;7754:119;;;7792:79;;:::i;:::-;7754:119;7912:1;7937:53;7982:7;7973:6;7962:9;7958:22;7937:53;:::i;:::-;7927:63;;7883:117;8039:2;8065:53;8110:7;8101:6;8090:9;8086:22;8065:53;:::i;:::-;8055:63;;8010:118;8167:2;8193:53;8238:7;8229:6;8218:9;8214:22;8193:53;:::i;:::-;8183:63;;8138:118;7644:619;;;;;:::o;8269:474::-;8337:6;8345;8394:2;8382:9;8373:7;8369:23;8365:32;8362:119;;;8400:79;;:::i;:::-;8362:119;8520:1;8545:53;8590:7;8581:6;8570:9;8566:22;8545:53;:::i;:::-;8535:63;;8491:117;8647:2;8673:53;8718:7;8709:6;8698:9;8694:22;8673:53;:::i;:::-;8663:63;;8618:118;8269:474;;;;;:::o;8749:332::-;8870:4;8908:2;8897:9;8893:18;8885:26;;8921:71;8989:1;8978:9;8974:17;8965:6;8921:71;:::i;:::-;9002:72;9070:2;9059:9;9055:18;9046:6;9002:72;:::i;:::-;8749:332;;;;;:::o;9087:468::-;9152:6;9160;9209:2;9197:9;9188:7;9184:23;9180:32;9177:119;;;9215:79;;:::i;:::-;9177:119;9335:1;9360:53;9405:7;9396:6;9385:9;9381:22;9360:53;:::i;:::-;9350:63;;9306:117;9462:2;9488:50;9530:7;9521:6;9510:9;9506:22;9488:50;:::i;:::-;9478:60;;9433:115;9087:468;;;;;:::o;9561:::-;9626:6;9634;9683:2;9671:9;9662:7;9658:23;9654:32;9651:119;;;9689:79;;:::i;:::-;9651:119;9809:1;9834:53;9879:7;9870:6;9859:9;9855:22;9834:53;:::i;:::-;9824:63;;9780:117;9936:2;9962:50;10004:7;9995:6;9984:9;9980:22;9962:50;:::i;:::-;9952:60;;9907:115;9561:468;;;;;:::o;10035:180::-;10083:77;10080:1;10073:88;10180:4;10177:1;10170:15;10204:4;10201:1;10194:15;10221:281;10304:27;10326:4;10304:27;:::i;:::-;10296:6;10292:40;10434:6;10422:10;10419:22;10398:18;10386:10;10383:34;10380:62;10377:88;;;10445:18;;:::i;:::-;10377:88;10485:10;10481:2;10474:22;10264:238;10221:281;;:::o;10508:129::-;10542:6;10569:20;;:::i;:::-;10559:30;;10598:33;10626:4;10618:6;10598:33;:::i;:::-;10508:129;;;:::o;10643:311::-;10720:4;10810:18;10802:6;10799:30;10796:56;;;10832:18;;:::i;:::-;10796:56;10882:4;10874:6;10870:17;10862:25;;10942:4;10936;10932:15;10924:23;;10643:311;;;:::o;10977:710::-;11073:5;11098:81;11114:64;11171:6;11114:64;:::i;:::-;11098:81;:::i;:::-;11089:90;;11199:5;11228:6;11221:5;11214:21;11262:4;11255:5;11251:16;11244:23;;11315:4;11307:6;11303:17;11295:6;11291:30;11344:3;11336:6;11333:15;11330:122;;;11363:79;;:::i;:::-;11330:122;11478:6;11461:220;11495:6;11490:3;11487:15;11461:220;;;11570:3;11599:37;11632:3;11620:10;11599:37;:::i;:::-;11594:3;11587:50;11666:4;11661:3;11657:14;11650:21;;11537:144;11521:4;11516:3;11512:14;11505:21;;11461:220;;;11465:21;11079:608;;10977:710;;;;;:::o;11710:370::-;11781:5;11830:3;11823:4;11815:6;11811:17;11807:27;11797:122;;11838:79;;:::i;:::-;11797:122;11955:6;11942:20;11980:94;12070:3;12062:6;12055:4;12047:6;12043:17;11980:94;:::i;:::-;11971:103;;11787:293;11710:370;;;;:::o;12086:678::-;12176:6;12184;12233:2;12221:9;12212:7;12208:23;12204:32;12201:119;;;12239:79;;:::i;:::-;12201:119;12387:1;12376:9;12372:17;12359:31;12417:18;12409:6;12406:30;12403:117;;;12439:79;;:::i;:::-;12403:117;12544:78;12614:7;12605:6;12594:9;12590:22;12544:78;:::i;:::-;12534:88;;12330:302;12671:2;12697:50;12739:7;12730:6;12719:9;12715:22;12697:50;:::i;:::-;12687:60;;12642:115;12086:678;;;;;:::o;12770:117::-;12879:1;12876;12869:12;12893:307;12954:4;13044:18;13036:6;13033:30;13030:56;;;13066:18;;:::i;:::-;13030:56;13104:29;13126:6;13104:29;:::i;:::-;13096:37;;13188:4;13182;13178:15;13170:23;;12893:307;;;:::o;13206:146::-;13303:6;13298:3;13293;13280:30;13344:1;13335:6;13330:3;13326:16;13319:27;13206:146;;;:::o;13358:423::-;13435:5;13460:65;13476:48;13517:6;13476:48;:::i;:::-;13460:65;:::i;:::-;13451:74;;13548:6;13541:5;13534:21;13586:4;13579:5;13575:16;13624:3;13615:6;13610:3;13606:16;13603:25;13600:112;;;13631:79;;:::i;:::-;13600:112;13721:54;13768:6;13763:3;13758;13721:54;:::i;:::-;13441:340;13358:423;;;;;:::o;13800:338::-;13855:5;13904:3;13897:4;13889:6;13885:17;13881:27;13871:122;;13912:79;;:::i;:::-;13871:122;14029:6;14016:20;14054:78;14128:3;14120:6;14113:4;14105:6;14101:17;14054:78;:::i;:::-;14045:87;;13861:277;13800:338;;;;:::o;14144:943::-;14239:6;14247;14255;14263;14312:3;14300:9;14291:7;14287:23;14283:33;14280:120;;;14319:79;;:::i;:::-;14280:120;14439:1;14464:53;14509:7;14500:6;14489:9;14485:22;14464:53;:::i;:::-;14454:63;;14410:117;14566:2;14592:53;14637:7;14628:6;14617:9;14613:22;14592:53;:::i;:::-;14582:63;;14537:118;14694:2;14720:53;14765:7;14756:6;14745:9;14741:22;14720:53;:::i;:::-;14710:63;;14665:118;14850:2;14839:9;14835:18;14822:32;14881:18;14873:6;14870:30;14867:117;;;14903:79;;:::i;:::-;14867:117;15008:62;15062:7;15053:6;15042:9;15038:22;15008:62;:::i;:::-;14998:72;;14793:287;14144:943;;;;;;;:::o;15093:109::-;15129:7;15169:26;15162:5;15158:38;15147:49;;15093:109;;;:::o;15208:120::-;15280:23;15297:5;15280:23;:::i;:::-;15273:5;15270:34;15260:62;;15318:1;15315;15308:12;15260:62;15208:120;:::o;15334:137::-;15379:5;15417:6;15404:20;15395:29;;15433:32;15459:5;15433:32;:::i;:::-;15334:137;;;;:::o;15477:472::-;15544:6;15552;15601:2;15589:9;15580:7;15576:23;15572:32;15569:119;;;15607:79;;:::i;:::-;15569:119;15727:1;15752:53;15797:7;15788:6;15777:9;15773:22;15752:53;:::i;:::-;15742:63;;15698:117;15854:2;15880:52;15924:7;15915:6;15904:9;15900:22;15880:52;:::i;:::-;15870:62;;15825:117;15477:472;;;;;:::o;15955:308::-;16017:4;16107:18;16099:6;16096:30;16093:56;;;16129:18;;:::i;:::-;16093:56;16167:29;16189:6;16167:29;:::i;:::-;16159:37;;16251:4;16245;16241:15;16233:23;;15955:308;;;:::o;16269:425::-;16347:5;16372:66;16388:49;16430:6;16388:49;:::i;:::-;16372:66;:::i;:::-;16363:75;;16461:6;16454:5;16447:21;16499:4;16492:5;16488:16;16537:3;16528:6;16523:3;16519:16;16516:25;16513:112;;;16544:79;;:::i;:::-;16513:112;16634:54;16681:6;16676:3;16671;16634:54;:::i;:::-;16353:341;16269:425;;;;;:::o;16714:340::-;16770:5;16819:3;16812:4;16804:6;16800:17;16796:27;16786:122;;16827:79;;:::i;:::-;16786:122;16944:6;16931:20;16969:79;17044:3;17036:6;17029:4;17021:6;17017:17;16969:79;:::i;:::-;16960:88;;16776:278;16714:340;;;;:::o;17060:509::-;17129:6;17178:2;17166:9;17157:7;17153:23;17149:32;17146:119;;;17184:79;;:::i;:::-;17146:119;17332:1;17321:9;17317:17;17304:31;17362:18;17354:6;17351:30;17348:117;;;17384:79;;:::i;:::-;17348:117;17489:63;17544:7;17535:6;17524:9;17520:22;17489:63;:::i;:::-;17479:73;;17275:287;17060:509;;;;:::o;17575:474::-;17643:6;17651;17700:2;17688:9;17679:7;17675:23;17671:32;17668:119;;;17706:79;;:::i;:::-;17668:119;17826:1;17851:53;17896:7;17887:6;17876:9;17872:22;17851:53;:::i;:::-;17841:63;;17797:117;17953:2;17979:53;18024:7;18015:6;18004:9;18000:22;17979:53;:::i;:::-;17969:63;;17924:118;17575:474;;;;;:::o;18055:180::-;18103:77;18100:1;18093:88;18200:4;18197:1;18190:15;18224:4;18221:1;18214:15;18241:320;18285:6;18322:1;18316:4;18312:12;18302:22;;18369:1;18363:4;18359:12;18390:18;18380:81;;18446:4;18438:6;18434:17;18424:27;;18380:81;18508:2;18500:6;18497:14;18477:18;18474:38;18471:84;;18527:18;;:::i;:::-;18471:84;18292:269;18241:320;;;:::o;18567:97::-;18626:6;18654:3;18644:13;;18567:97;;;;:::o;18670:141::-;18719:4;18742:3;18734:11;;18765:3;18762:1;18755:14;18799:4;18796:1;18786:18;18778:26;;18670:141;;;:::o;18817:93::-;18854:6;18901:2;18896;18889:5;18885:14;18881:23;18871:33;;18817:93;;;:::o;18916:107::-;18960:8;19010:5;19004:4;19000:16;18979:37;;18916:107;;;;:::o;19029:393::-;19098:6;19148:1;19136:10;19132:18;19171:97;19201:66;19190:9;19171:97;:::i;:::-;19289:39;19319:8;19308:9;19289:39;:::i;:::-;19277:51;;19361:4;19357:9;19350:5;19346:21;19337:30;;19410:4;19400:8;19396:19;19389:5;19386:30;19376:40;;19105:317;;19029:393;;;;;:::o;19428:60::-;19456:3;19477:5;19470:12;;19428:60;;;:::o;19494:142::-;19544:9;19577:53;19595:34;19604:24;19622:5;19604:24;:::i;:::-;19595:34;:::i;:::-;19577:53;:::i;:::-;19564:66;;19494:142;;;:::o;19642:75::-;19685:3;19706:5;19699:12;;19642:75;;;:::o;19723:269::-;19833:39;19864:7;19833:39;:::i;:::-;19894:91;19943:41;19967:16;19943:41;:::i;:::-;19935:6;19928:4;19922:11;19894:91;:::i;:::-;19888:4;19881:105;19799:193;19723:269;;;:::o;19998:73::-;20043:3;19998:73;:::o;20077:189::-;20154:32;;:::i;:::-;20195:65;20253:6;20245;20239:4;20195:65;:::i;:::-;20130:136;20077:189;;:::o;20272:186::-;20332:120;20349:3;20342:5;20339:14;20332:120;;;20403:39;20440:1;20433:5;20403:39;:::i;:::-;20376:1;20369:5;20365:13;20356:22;;20332:120;;;20272:186;;:::o;20464:543::-;20565:2;20560:3;20557:11;20554:446;;;20599:38;20631:5;20599:38;:::i;:::-;20683:29;20701:10;20683:29;:::i;:::-;20673:8;20669:44;20866:2;20854:10;20851:18;20848:49;;;20887:8;20872:23;;20848:49;20910:80;20966:22;20984:3;20966:22;:::i;:::-;20956:8;20952:37;20939:11;20910:80;:::i;:::-;20569:431;;20554:446;20464:543;;;:::o;21013:117::-;21067:8;21117:5;21111:4;21107:16;21086:37;;21013:117;;;;:::o;21136:169::-;21180:6;21213:51;21261:1;21257:6;21249:5;21246:1;21242:13;21213:51;:::i;:::-;21209:56;21294:4;21288;21284:15;21274:25;;21187:118;21136:169;;;;:::o;21310:295::-;21386:4;21532:29;21557:3;21551:4;21532:29;:::i;:::-;21524:37;;21594:3;21591:1;21587:11;21581:4;21578:21;21570:29;;21310:295;;;;:::o;21610:1403::-;21734:44;21774:3;21769;21734:44;:::i;:::-;21843:18;21835:6;21832:30;21829:56;;;21865:18;;:::i;:::-;21829:56;21909:38;21941:4;21935:11;21909:38;:::i;:::-;21994:67;22054:6;22046;22040:4;21994:67;:::i;:::-;22088:1;22117:2;22109:6;22106:14;22134:1;22129:632;;;;22805:1;22822:6;22819:84;;;22878:9;22873:3;22869:19;22856:33;22847:42;;22819:84;22929:67;22989:6;22982:5;22929:67;:::i;:::-;22923:4;22916:81;22778:229;22099:908;;22129:632;22181:4;22177:9;22169:6;22165:22;22215:37;22247:4;22215:37;:::i;:::-;22274:1;22288:215;22302:7;22299:1;22296:14;22288:215;;;22388:9;22383:3;22379:19;22366:33;22358:6;22351:49;22439:1;22431:6;22427:14;22417:24;;22486:2;22475:9;22471:18;22458:31;;22325:4;22322:1;22318:12;22313:17;;22288:215;;;22531:6;22522:7;22519:19;22516:186;;;22596:9;22591:3;22587:19;22574:33;22639:48;22681:4;22673:6;22669:17;22658:9;22639:48;:::i;:::-;22631:6;22624:64;22539:163;22516:186;22748:1;22744;22736:6;22732:14;22728:22;22722:4;22715:36;22136:625;;;22099:908;;21709:1304;;;21610:1403;;;:::o;23019:180::-;23067:77;23064:1;23057:88;23164:4;23161:1;23154:15;23188:4;23185:1;23178:15;23205:410;23245:7;23268:20;23286:1;23268:20;:::i;:::-;23263:25;;23302:20;23320:1;23302:20;:::i;:::-;23297:25;;23357:1;23354;23350:9;23379:30;23397:11;23379:30;:::i;:::-;23368:41;;23558:1;23549:7;23545:15;23542:1;23539:22;23519:1;23512:9;23492:83;23469:139;;23588:18;;:::i;:::-;23469:139;23253:362;23205:410;;;;:::o;23621:180::-;23669:77;23666:1;23659:88;23766:4;23763:1;23756:15;23790:4;23787:1;23780:15;23807:185;23847:1;23864:20;23882:1;23864:20;:::i;:::-;23859:25;;23898:20;23916:1;23898:20;:::i;:::-;23893:25;;23937:1;23927:35;;23942:18;;:::i;:::-;23927:35;23984:1;23981;23977:9;23972:14;;23807:185;;;;:::o;23998:225::-;24138:34;24134:1;24126:6;24122:14;24115:58;24207:8;24202:2;24194:6;24190:15;24183:33;23998:225;:::o;24229:366::-;24371:3;24392:67;24456:2;24451:3;24392:67;:::i;:::-;24385:74;;24468:93;24557:3;24468:93;:::i;:::-;24586:2;24581:3;24577:12;24570:19;;24229:366;;;:::o;24601:419::-;24767:4;24805:2;24794:9;24790:18;24782:26;;24854:9;24848:4;24844:20;24840:1;24829:9;24825:17;24818:47;24882:131;25008:4;24882:131;:::i;:::-;24874:139;;24601:419;;;:::o;25026:182::-;25166:34;25162:1;25154:6;25150:14;25143:58;25026:182;:::o;25214:366::-;25356:3;25377:67;25441:2;25436:3;25377:67;:::i;:::-;25370:74;;25453:93;25542:3;25453:93;:::i;:::-;25571:2;25566:3;25562:12;25555:19;;25214:366;;;:::o;25586:419::-;25752:4;25790:2;25779:9;25775:18;25767:26;;25839:9;25833:4;25829:20;25825:1;25814:9;25810:17;25803:47;25867:131;25993:4;25867:131;:::i;:::-;25859:139;;25586:419;;;:::o;26011:165::-;26151:17;26147:1;26139:6;26135:14;26128:41;26011:165;:::o;26182:366::-;26324:3;26345:67;26409:2;26404:3;26345:67;:::i;:::-;26338:74;;26421:93;26510:3;26421:93;:::i;:::-;26539:2;26534:3;26530:12;26523:19;;26182:366;;;:::o;26554:419::-;26720:4;26758:2;26747:9;26743:18;26735:26;;26807:9;26801:4;26797:20;26793:1;26782:9;26778:17;26771:47;26835:131;26961:4;26835:131;:::i;:::-;26827:139;;26554:419;;;:::o;26979:191::-;27019:3;27038:20;27056:1;27038:20;:::i;:::-;27033:25;;27072:20;27090:1;27072:20;:::i;:::-;27067:25;;27115:1;27112;27108:9;27101:16;;27136:3;27133:1;27130:10;27127:36;;;27143:18;;:::i;:::-;27127:36;26979:191;;;;:::o;27176:248::-;27316:34;27312:1;27304:6;27300:14;27293:58;27385:31;27380:2;27372:6;27368:15;27361:56;27176:248;:::o;27430:366::-;27572:3;27593:67;27657:2;27652:3;27593:67;:::i;:::-;27586:74;;27669:93;27758:3;27669:93;:::i;:::-;27787:2;27782:3;27778:12;27771:19;;27430:366;;;:::o;27802:419::-;27968:4;28006:2;27995:9;27991:18;27983:26;;28055:9;28049:4;28045:20;28041:1;28030:9;28026:17;28019:47;28083:131;28209:4;28083:131;:::i;:::-;28075:139;;27802:419;;;:::o;28227:172::-;28367:24;28363:1;28355:6;28351:14;28344:48;28227:172;:::o;28405:366::-;28547:3;28568:67;28632:2;28627:3;28568:67;:::i;:::-;28561:74;;28644:93;28733:3;28644:93;:::i;:::-;28762:2;28757:3;28753:12;28746:19;;28405:366;;;:::o;28777:419::-;28943:4;28981:2;28970:9;28966:18;28958:26;;29030:9;29024:4;29020:20;29016:1;29005:9;29001:17;28994:47;29058:131;29184:4;29058:131;:::i;:::-;29050:139;;28777:419;;;:::o;29202:236::-;29342:34;29338:1;29330:6;29326:14;29319:58;29411:19;29406:2;29398:6;29394:15;29387:44;29202:236;:::o;29444:366::-;29586:3;29607:67;29671:2;29666:3;29607:67;:::i;:::-;29600:74;;29683:93;29772:3;29683:93;:::i;:::-;29801:2;29796:3;29792:12;29785:19;;29444:366;;;:::o;29816:419::-;29982:4;30020:2;30009:9;30005:18;29997:26;;30069:9;30063:4;30059:20;30055:1;30044:9;30040:17;30033:47;30097:131;30223:4;30097:131;:::i;:::-;30089:139;;29816:419;;;:::o;30241:147::-;30342:11;30379:3;30364:18;;30241:147;;;;:::o;30394:114::-;;:::o;30514:398::-;30673:3;30694:83;30775:1;30770:3;30694:83;:::i;:::-;30687:90;;30786:93;30875:3;30786:93;:::i;:::-;30904:1;30899:3;30895:11;30888:18;;30514:398;;;:::o;30918:379::-;31102:3;31124:147;31267:3;31124:147;:::i;:::-;31117:154;;31288:3;31281:10;;30918:379;;;:::o;31303:174::-;31443:26;31439:1;31431:6;31427:14;31420:50;31303:174;:::o;31483:366::-;31625:3;31646:67;31710:2;31705:3;31646:67;:::i;:::-;31639:74;;31722:93;31811:3;31722:93;:::i;:::-;31840:2;31835:3;31831:12;31824:19;;31483:366;;;:::o;31855:419::-;32021:4;32059:2;32048:9;32044:18;32036:26;;32108:9;32102:4;32098:20;32094:1;32083:9;32079:17;32072:47;32136:131;32262:4;32136:131;:::i;:::-;32128:139;;31855:419;;;:::o;32280:159::-;32420:11;32416:1;32408:6;32404:14;32397:35;32280:159;:::o;32445:365::-;32587:3;32608:66;32672:1;32667:3;32608:66;:::i;:::-;32601:73;;32683:93;32772:3;32683:93;:::i;:::-;32801:2;32796:3;32792:12;32785:19;;32445:365;;;:::o;32816:419::-;32982:4;33020:2;33009:9;33005:18;32997:26;;33069:9;33063:4;33059:20;33055:1;33044:9;33040:17;33033:47;33097:131;33223:4;33097:131;:::i;:::-;33089:139;;32816:419;;;:::o;33241:236::-;33381:34;33377:1;33369:6;33365:14;33358:58;33450:19;33445:2;33437:6;33433:15;33426:44;33241:236;:::o;33483:366::-;33625:3;33646:67;33710:2;33705:3;33646:67;:::i;:::-;33639:74;;33722:93;33811:3;33722:93;:::i;:::-;33840:2;33835:3;33831:12;33824:19;;33483:366;;;:::o;33855:419::-;34021:4;34059:2;34048:9;34044:18;34036:26;;34108:9;34102:4;34098:20;34094:1;34083:9;34079:17;34072:47;34136:131;34262:4;34136:131;:::i;:::-;34128:139;;33855:419;;;:::o;34280:229::-;34420:34;34416:1;34408:6;34404:14;34397:58;34489:12;34484:2;34476:6;34472:15;34465:37;34280:229;:::o;34515:366::-;34657:3;34678:67;34742:2;34737:3;34678:67;:::i;:::-;34671:74;;34754:93;34843:3;34754:93;:::i;:::-;34872:2;34867:3;34863:12;34856:19;;34515:366;;;:::o;34887:419::-;35053:4;35091:2;35080:9;35076:18;35068:26;;35140:9;35134:4;35130:20;35126:1;35115:9;35111:17;35104:47;35168:131;35294:4;35168:131;:::i;:::-;35160:139;;34887:419;;;:::o;35312:176::-;35452:28;35448:1;35440:6;35436:14;35429:52;35312:176;:::o;35494:366::-;35636:3;35657:67;35721:2;35716:3;35657:67;:::i;:::-;35650:74;;35733:93;35822:3;35733:93;:::i;:::-;35851:2;35846:3;35842:12;35835:19;;35494:366;;;:::o;35866:419::-;36032:4;36070:2;36059:9;36055:18;36047:26;;36119:9;36113:4;36109:20;36105:1;36094:9;36090:17;36083:47;36147:131;36273:4;36147:131;:::i;:::-;36139:139;;35866:419;;;:::o;36291:194::-;36331:4;36351:20;36369:1;36351:20;:::i;:::-;36346:25;;36385:20;36403:1;36385:20;:::i;:::-;36380:25;;36429:1;36426;36422:9;36414:17;;36453:1;36447:4;36444:11;36441:37;;;36458:18;;:::i;:::-;36441:37;36291:194;;;;:::o;36491:239::-;36631:34;36627:1;36619:6;36615:14;36608:58;36700:22;36695:2;36687:6;36683:15;36676:47;36491:239;:::o;36736:366::-;36878:3;36899:67;36963:2;36958:3;36899:67;:::i;:::-;36892:74;;36975:93;37064:3;36975:93;:::i;:::-;37093:2;37088:3;37084:12;37077:19;;36736:366;;;:::o;37108:419::-;37274:4;37312:2;37301:9;37297:18;37289:26;;37361:9;37355:4;37351:20;37347:1;37336:9;37332:17;37325:47;37389:131;37515:4;37389:131;:::i;:::-;37381:139;;37108:419;;;:::o;37533:180::-;37581:77;37578:1;37571:88;37678:4;37675:1;37668:15;37702:4;37699:1;37692:15;37719:233;37758:3;37781:24;37799:5;37781:24;:::i;:::-;37772:33;;37827:66;37820:5;37817:77;37814:103;;37897:18;;:::i;:::-;37814:103;37944:1;37937:5;37933:13;37926:20;;37719:233;;;:::o;37958:234::-;38098:34;38094:1;38086:6;38082:14;38075:58;38167:17;38162:2;38154:6;38150:15;38143:42;37958:234;:::o;38198:366::-;38340:3;38361:67;38425:2;38420:3;38361:67;:::i;:::-;38354:74;;38437:93;38526:3;38437:93;:::i;:::-;38555:2;38550:3;38546:12;38539:19;;38198:366;;;:::o;38570:419::-;38736:4;38774:2;38763:9;38759:18;38751:26;;38823:9;38817:4;38813:20;38809:1;38798:9;38794:17;38787:47;38851:131;38977:4;38851:131;:::i;:::-;38843:139;;38570:419;;;:::o;38995:148::-;39097:11;39134:3;39119:18;;38995:148;;;;:::o;39149:390::-;39255:3;39283:39;39316:5;39283:39;:::i;:::-;39338:89;39420:6;39415:3;39338:89;:::i;:::-;39331:96;;39436:65;39494:6;39489:3;39482:4;39475:5;39471:16;39436:65;:::i;:::-;39526:6;39521:3;39517:16;39510:23;;39259:280;39149:390;;;;:::o;39569:874::-;39672:3;39709:5;39703:12;39738:36;39764:9;39738:36;:::i;:::-;39790:89;39872:6;39867:3;39790:89;:::i;:::-;39783:96;;39910:1;39899:9;39895:17;39926:1;39921:166;;;;40101:1;40096:341;;;;39888:549;;39921:166;40005:4;40001:9;39990;39986:25;39981:3;39974:38;40067:6;40060:14;40053:22;40045:6;40041:35;40036:3;40032:45;40025:52;;39921:166;;40096:341;40163:38;40195:5;40163:38;:::i;:::-;40223:1;40237:154;40251:6;40248:1;40245:13;40237:154;;;40325:7;40319:14;40315:1;40310:3;40306:11;40299:35;40375:1;40366:7;40362:15;40351:26;;40273:4;40270:1;40266:12;40261:17;;40237:154;;;40420:6;40415:3;40411:16;40404:23;;40103:334;;39888:549;;39676:767;;39569:874;;;;:::o;40449:589::-;40674:3;40696:95;40787:3;40778:6;40696:95;:::i;:::-;40689:102;;40808:95;40899:3;40890:6;40808:95;:::i;:::-;40801:102;;40920:92;41008:3;40999:6;40920:92;:::i;:::-;40913:99;;41029:3;41022:10;;40449:589;;;;;;:::o;41044:239::-;41184:34;41180:1;41172:6;41168:14;41161:58;41253:22;41248:2;41240:6;41236:15;41229:47;41044:239;:::o;41289:366::-;41431:3;41452:67;41516:2;41511:3;41452:67;:::i;:::-;41445:74;;41528:93;41617:3;41528:93;:::i;:::-;41646:2;41641:3;41637:12;41630:19;;41289:366;;;:::o;41661:419::-;41827:4;41865:2;41854:9;41850:18;41842:26;;41914:9;41908:4;41904:20;41900:1;41889:9;41885:17;41878:47;41942:131;42068:4;41942:131;:::i;:::-;41934:139;;41661:419;;;:::o;42086:1395::-;42203:37;42236:3;42203:37;:::i;:::-;42305:18;42297:6;42294:30;42291:56;;;42327:18;;:::i;:::-;42291:56;42371:38;42403:4;42397:11;42371:38;:::i;:::-;42456:67;42516:6;42508;42502:4;42456:67;:::i;:::-;42550:1;42574:4;42561:17;;42606:2;42598:6;42595:14;42623:1;42618:618;;;;43280:1;43297:6;43294:77;;;43346:9;43341:3;43337:19;43331:26;43322:35;;43294:77;43397:67;43457:6;43450:5;43397:67;:::i;:::-;43391:4;43384:81;43253:222;42588:887;;42618:618;42670:4;42666:9;42658:6;42654:22;42704:37;42736:4;42704:37;:::i;:::-;42763:1;42777:208;42791:7;42788:1;42785:14;42777:208;;;42870:9;42865:3;42861:19;42855:26;42847:6;42840:42;42921:1;42913:6;42909:14;42899:24;;42968:2;42957:9;42953:18;42940:31;;42814:4;42811:1;42807:12;42802:17;;42777:208;;;43013:6;43004:7;43001:19;42998:179;;;43071:9;43066:3;43062:19;43056:26;43114:48;43156:4;43148:6;43144:17;43133:9;43114:48;:::i;:::-;43106:6;43099:64;43021:156;42998:179;43223:1;43219;43211:6;43207:14;43203:22;43197:4;43190:36;42625:611;;;42588:887;;42178:1303;;;42086:1395;;:::o;43487:225::-;43627:34;43623:1;43615:6;43611:14;43604:58;43696:8;43691:2;43683:6;43679:15;43672:33;43487:225;:::o;43718:366::-;43860:3;43881:67;43945:2;43940:3;43881:67;:::i;:::-;43874:74;;43957:93;44046:3;43957:93;:::i;:::-;44075:2;44070:3;44066:12;44059:19;;43718:366;;;:::o;44090:419::-;44256:4;44294:2;44283:9;44279:18;44271:26;;44343:9;44337:4;44333:20;44329:1;44318:9;44314:17;44307:47;44371:131;44497:4;44371:131;:::i;:::-;44363:139;;44090:419;;;:::o;44515:182::-;44655:34;44651:1;44643:6;44639:14;44632:58;44515:182;:::o;44703:366::-;44845:3;44866:67;44930:2;44925:3;44866:67;:::i;:::-;44859:74;;44942:93;45031:3;44942:93;:::i;:::-;45060:2;45055:3;45051:12;45044:19;;44703:366;;;:::o;45075:419::-;45241:4;45279:2;45268:9;45264:18;45256:26;;45328:9;45322:4;45318:20;45314:1;45303:9;45299:17;45292:47;45356:131;45482:4;45356:131;:::i;:::-;45348:139;;45075:419;;;:::o;45500:79::-;45539:7;45568:5;45557:16;;45500:79;;;:::o;45585:157::-;45690:45;45710:24;45728:5;45710:24;:::i;:::-;45690:45;:::i;:::-;45685:3;45678:58;45585:157;;:::o;45748:397::-;45888:3;45903:75;45974:3;45965:6;45903:75;:::i;:::-;46003:2;45998:3;45994:12;45987:19;;46016:75;46087:3;46078:6;46016:75;:::i;:::-;46116:2;46111:3;46107:12;46100:19;;46136:3;46129:10;;45748:397;;;;;:::o;46151:176::-;46183:1;46200:20;46218:1;46200:20;:::i;:::-;46195:25;;46234:20;46252:1;46234:20;:::i;:::-;46229:25;;46273:1;46263:35;;46278:18;;:::i;:::-;46263:35;46319:1;46316;46312:9;46307:14;;46151:176;;;;:::o;46333:171::-;46372:3;46395:24;46413:5;46395:24;:::i;:::-;46386:33;;46441:4;46434:5;46431:15;46428:41;;46449:18;;:::i;:::-;46428:41;46496:1;46489:5;46485:13;46478:20;;46333:171;;;:::o;46510:229::-;46650:34;46646:1;46638:6;46634:14;46627:58;46719:12;46714:2;46706:6;46702:15;46695:37;46510:229;:::o;46745:366::-;46887:3;46908:67;46972:2;46967:3;46908:67;:::i;:::-;46901:74;;46984:93;47073:3;46984:93;:::i;:::-;47102:2;47097:3;47093:12;47086:19;;46745:366;;;:::o;47117:419::-;47283:4;47321:2;47310:9;47306:18;47298:26;;47370:9;47364:4;47360:20;47356:1;47345:9;47341:17;47334:47;47398:131;47524:4;47398:131;:::i;:::-;47390:139;;47117:419;;;:::o;47542:175::-;47682:27;47678:1;47670:6;47666:14;47659:51;47542:175;:::o;47723:366::-;47865:3;47886:67;47950:2;47945:3;47886:67;:::i;:::-;47879:74;;47962:93;48051:3;47962:93;:::i;:::-;48080:2;48075:3;48071:12;48064:19;;47723:366;;;:::o;48095:419::-;48261:4;48299:2;48288:9;48284:18;48276:26;;48348:9;48342:4;48338:20;48334:1;48323:9;48319:17;48312:47;48376:131;48502:4;48376:131;:::i;:::-;48368:139;;48095:419;;;:::o;48520:98::-;48571:6;48605:5;48599:12;48589:22;;48520:98;;;:::o;48624:168::-;48707:11;48741:6;48736:3;48729:19;48781:4;48776:3;48772:14;48757:29;;48624:168;;;;:::o;48798:373::-;48884:3;48912:38;48944:5;48912:38;:::i;:::-;48966:70;49029:6;49024:3;48966:70;:::i;:::-;48959:77;;49045:65;49103:6;49098:3;49091:4;49084:5;49080:16;49045:65;:::i;:::-;49135:29;49157:6;49135:29;:::i;:::-;49130:3;49126:39;49119:46;;48888:283;48798:373;;;;:::o;49177:640::-;49372:4;49410:3;49399:9;49395:19;49387:27;;49424:71;49492:1;49481:9;49477:17;49468:6;49424:71;:::i;:::-;49505:72;49573:2;49562:9;49558:18;49549:6;49505:72;:::i;:::-;49587;49655:2;49644:9;49640:18;49631:6;49587:72;:::i;:::-;49706:9;49700:4;49696:20;49691:2;49680:9;49676:18;49669:48;49734:76;49805:4;49796:6;49734:76;:::i;:::-;49726:84;;49177:640;;;;;;;:::o;49823:141::-;49879:5;49910:6;49904:13;49895:22;;49926:32;49952:5;49926:32;:::i;:::-;49823:141;;;;:::o;49970:349::-;50039:6;50088:2;50076:9;50067:7;50063:23;50059:32;50056:119;;;50094:79;;:::i;:::-;50056:119;50214:1;50239:63;50294:7;50285:6;50274:9;50270:22;50239:63;:::i;:::-;50229:73;;50185:127;49970:349;;;;:::o

Swarm Source

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