Sepolia Testnet

Token

ERC-20: My nft (NFT)
ERC-721

Overview

Max Total Supply

1,341 NFT

Holders

654

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 NFT
0xb12713bfa9d1de339ca14b01f8f14f092ffe75bf
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:
MyNft

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-29
*/

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: contracts/1_Storage.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;




contract MyNft is ERC721Enumerable, Ownable {

    uint public constant PRICE = 0.005 ether;
    string public baseTokenURI;
    uint private nextTokenId = 1;
    uint[] soldedTokenIds;
    mapping (address => uint[]) nftOwner;
    event MintNft(address senderAddress, uint256 nftToken);

    constructor()  ERC721("My nft", "NFT") {
        setBaseURI("https://ipfs.io/ipfs/QmXvLSHwhZVvjupsiFjBy569DjtvpP8t6pQcbaRSYUyvXT/secret.json");
    }

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

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

    function reserveNFT(uint _tokenId) public onlyOwner  {
        _safeMint(msg.sender, _tokenId);
        nftOwner[msg.sender].push(_tokenId);
        soldedTokenIds.push(_tokenId);
        emit MintNft(msg.sender, _tokenId);
    }

   function mintNFTto(address[] memory _to) public {
    require(_to.length > 0, "Invalid input"); // Проверяем, что массив _to не пустой

    for (uint i = 0; i < _to.length; i++) {
        uint tokenId = nextTokenId; // Присваиваем текущее значение nextTokenId переменной tokenId
        nextTokenId++; // Увеличиваем значение nextTokenId для следующего айди

        _safeMint(_to[i], tokenId);
        soldedTokenIds.push(tokenId);
        emit MintNft(msg.sender, tokenId);
    }
}

    function tokensOfOwner(address _owner) external view returns (uint[] memory) {
        return nftOwner[_owner];
    }

    function withdraw() public payable onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");
        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"senderAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"nftToken","type":"uint256"}],"name":"MintNft","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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintNFTto","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600c553480156200001657600080fd5b506040518060400160405280600681526020017f4d79206e667400000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e46540000000000000000000000000000000000000000000000000000000000815250816000908162000094919062000521565b508060019081620000a6919062000521565b505050620000c9620000bd620000f960201b60201c565b6200010160201b60201c565b620000f36040518060800160405280604f81526020016200462b604f9139620001c760201b60201c565b6200068b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001d7620001ec60201b60201c565b80600b9081620001e8919062000521565b5050565b620001fc620000f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002226200027d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200027b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002729062000669565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032957607f821691505b6020821081036200033f576200033e620002e1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200036a565b620003b586836200036a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000402620003fc620003f684620003cd565b620003d7565b620003cd565b9050919050565b6000819050919050565b6200041e83620003e1565b620004366200042d8262000409565b84845462000377565b825550505050565b600090565b6200044d6200043e565b6200045a81848462000413565b505050565b5b8181101562000482576200047660008262000443565b60018101905062000460565b5050565b601f821115620004d1576200049b8162000345565b620004a6846200035a565b81016020851015620004b6578190505b620004ce620004c5856200035a565b8301826200045f565b50505b505050565b600082821c905092915050565b6000620004f660001984600802620004d6565b1980831691505092915050565b6000620005118383620004e3565b9150826002028217905092915050565b6200052c82620002a7565b67ffffffffffffffff811115620005485762000547620002b2565b5b62000554825462000310565b6200056182828562000486565b600060209050601f83116001811462000599576000841562000584578287015190505b62000590858262000503565b86555062000600565b601f198416620005a98662000345565b60005b82811015620005d357848901518255600182019150602085019450602081019050620005ac565b86831015620005f35784890151620005ef601f891682620004e3565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200065160208362000608565b91506200065e8262000619565b602082019050919050565b60006020820190508181036000830152620006848162000642565b9050919050565b613f90806200069b6000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610585578063e8fdb53b146105b0578063e985e9c5146105d9578063f2fde38b1461061657610181565b8063a22cb465146104f6578063b88d4fde1461051f578063c87b56dd1461054857610181565b806370a08231146103e4578063715018a6146104215780638462151c146104385780638d859f3e146104755780638da5cb5b146104a057806395d89b41146104cb57610181565b80632f745c591161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780636352211e146103a757610181565b80632f745c59146102a8578063397be3fd146102e55780633ccfd60b1461030e57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906127c3565b61063f565b6040516101ba919061280b565b60405180910390f35b3480156101cf57600080fd5b506101d86106b9565b6040516101e591906128b6565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061290e565b61074b565b604051610222919061297c565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906129c3565b610791565b005b34801561026057600080fd5b506102696108a8565b6040516102769190612a12565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612a2d565b6108b5565b005b3480156102b457600080fd5b506102cf60048036038101906102ca91906129c3565b610915565b6040516102dc9190612a12565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061290e565b6109ba565b005b610316610a97565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612a2d565b610b97565b005b34801561034d57600080fd5b506103686004803603810190610363919061290e565b610bb7565b6040516103759190612a12565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612bb5565b610c28565b005b3480156103b357600080fd5b506103ce60048036038101906103c9919061290e565b610c43565b6040516103db919061297c565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612bfe565b610cc9565b6040516104189190612a12565b60405180910390f35b34801561042d57600080fd5b50610436610d80565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612bfe565b610d94565b60405161046c9190612ce9565b60405180910390f35b34801561048157600080fd5b5061048a610e2b565b6040516104979190612a12565b60405180910390f35b3480156104ac57600080fd5b506104b5610e36565b6040516104c2919061297c565b60405180910390f35b3480156104d757600080fd5b506104e0610e60565b6040516104ed91906128b6565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612d37565b610ef2565b005b34801561052b57600080fd5b5061054660048036038101906105419190612e18565b610f08565b005b34801561055457600080fd5b5061056f600480360381019061056a919061290e565b610f6a565b60405161057c91906128b6565b60405180910390f35b34801561059157600080fd5b5061059a610fd2565b6040516105a791906128b6565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612f63565b611060565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612fac565b61116d565b60405161060d919061280b565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612bfe565b611201565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b257506106b182611284565b5b9050919050565b6060600080546106c89061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546106f49061301b565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b600061075682611366565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079c82610c43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610803906130be565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082b6113b1565b73ffffffffffffffffffffffffffffffffffffffff16148061085a5750610859816108546113b1565b61116d565b5b610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090613150565b60405180910390fd5b6108a383836113b9565b505050565b6000600880549050905090565b6108c66108c06113b1565b82611472565b610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc906131e2565b60405180910390fd5b610910838383611507565b505050565b600061092083610cc9565b8210610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613274565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109c2611800565b6109cc338261187e565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055600d8190806001815401808255809150506001900390600052602060002001600090919091909150557f2fdf319518046f7b4ebc04a5ca363b42da5e87f5e8150935b3e4ef1ee4509e1a3382604051610a8c929190613294565b60405180910390a150565b610a9f611800565b600047905060008111610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90613309565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610b0d9061335a565b60006040518083038185875af1925050503d8060008114610b4a576040519150601f19603f3d011682016040523d82523d6000602084013e610b4f565b606091505b5050905080610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906133bb565b60405180910390fd5b5050565b610bb283838360405180602001604052806000815250610f08565b505050565b6000610bc16108a8565b8210610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99061344d565b60405180910390fd5b60088281548110610c1657610c1561346d565b5b90600052602060002001549050919050565b610c30611800565b80600b9081610c3f9190613648565b5050565b600080610c4f8361189c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613766565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906137f8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d88611800565b610d9260006118d9565b565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610e1f57602002820191906000526020600020905b815481526020019060010190808311610e0b575b50505050509050919050565b6611c37937e0800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e6f9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9b9061301b565b8015610ee85780601f10610ebd57610100808354040283529160200191610ee8565b820191906000526020600020905b815481529060010190602001808311610ecb57829003601f168201915b5050505050905090565b610f04610efd6113b1565b838361199f565b5050565b610f19610f136113b1565b83611472565b610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f906131e2565b60405180910390fd5b610f6484848484611b0b565b50505050565b6060610f7582611366565b6000610f7f611b67565b90506000815111610f9f5760405180602001604052806000815250610fca565b80610fa984611bf9565b604051602001610fba929190613854565b6040516020818303038152906040525b915050919050565b600b8054610fdf9061301b565b80601f016020809104026020016040519081016040528092919081815260200182805461100b9061301b565b80156110585780601f1061102d57610100808354040283529160200191611058565b820191906000526020600020905b81548152906001019060200180831161103b57829003601f168201915b505050505081565b60008151116110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b906138c4565b60405180910390fd5b60005b8151811015611169576000600c549050600c60008154809291906110ca90613913565b91905055506110f38383815181106110e5576110e461346d565b5b60200260200101518261187e565b600d8190806001815401808255809150506001900390600052602060002001600090919091909150557f2fdf319518046f7b4ebc04a5ca363b42da5e87f5e8150935b3e4ef1ee4509e1a338260405161114d929190613294565b60405180910390a150808061116190613913565b9150506110a7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611209611800565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906139cd565b60405180910390fd5b611281816118d9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061134f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061135f575061135e82611cc7565b5b9050919050565b61136f81611d31565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590613766565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661142c83610c43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061147e83610c43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114c057506114bf818561116d565b5b806114fe57508373ffffffffffffffffffffffffffffffffffffffff166114e68461074b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661152782610c43565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390613af1565b60405180910390fd5b6115f98383836001611d72565b8273ffffffffffffffffffffffffffffffffffffffff1661161982610c43565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690613a5f565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117fb8383836001611ed0565b505050565b6118086113b1565b73ffffffffffffffffffffffffffffffffffffffff16611826610e36565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613b5d565b60405180910390fd5b565b611898828260405180602001604052806000815250611ed6565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613bc9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afe919061280b565b60405180910390a3505050565b611b16848484611507565b611b2284848484611f31565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613c5b565b60405180910390fd5b50505050565b6060600b8054611b769061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba29061301b565b8015611bef5780601f10611bc457610100808354040283529160200191611bef565b820191906000526020600020905b815481529060010190602001808311611bd257829003601f168201915b5050505050905090565b606060006001611c08846120b8565b01905060008167ffffffffffffffff811115611c2757611c26612a8a565b5b6040519080825280601f01601f191660200182016040528015611c595781602001600182028036833780820191505090505b509050600082602001820190505b600115611cbc578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611cb057611caf613c7b565b5b04945060008503611c67575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611d538361189c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611d7e8484848461220b565b6001811115611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613d1c565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e0957611e0481612211565b611e48565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611e4757611e46858261225a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e8a57611e85816123c7565b611ec9565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611ec857611ec78482612498565b5b5b5050505050565b50505050565b611ee08383612517565b611eed6000848484611f31565b611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613c5b565b60405180910390fd5b505050565b6000611f528473ffffffffffffffffffffffffffffffffffffffff16612734565b156120ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f7b6113b1565b8786866040518563ffffffff1660e01b8152600401611f9d9493929190613d91565b6020604051808303816000875af1925050508015611fd957506040513d601f19601f82011682018060405250810190611fd69190613df2565b60015b61205b573d8060008114612009576040519150601f19603f3d011682016040523d82523d6000602084013e61200e565b606091505b506000815103612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613c5b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b0565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612116577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161210c5761210b613c7b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612153576d04ee2d6d415b85acef8100000000838161214957612148613c7b565b5b0492506020810190505b662386f26fc10000831061218257662386f26fc10000838161217857612177613c7b565b5b0492506010810190505b6305f5e10083106121ab576305f5e10083816121a1576121a0613c7b565b5b0492506008810190505b61271083106121d05761271083816121c6576121c5613c7b565b5b0492506004810190505b606483106121f357606483816121e9576121e8613c7b565b5b0492506002810190505b600a8310612202576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161226784610cc9565b6122719190613e1f565b9050600060076000848152602001908152602001600020549050818114612356576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506123db9190613e1f565b905060006009600084815260200190815260200160002054905060006008838154811061240b5761240a61346d565b5b90600052602060002001549050806008838154811061242d5761242c61346d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061247c5761247b613e53565b5b6001900381819060005260206000200160009055905550505050565b60006124a383610cc9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90613ece565b60405180910390fd5b61258f81611d31565b156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690613f3a565b60405180910390fd5b6125dd600083836001611d72565b6125e681611d31565b15612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90613f3a565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612730600083836001611ed0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127a08161276b565b81146127ab57600080fd5b50565b6000813590506127bd81612797565b92915050565b6000602082840312156127d9576127d8612761565b5b60006127e7848285016127ae565b91505092915050565b60008115159050919050565b612805816127f0565b82525050565b600060208201905061282060008301846127fc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612860578082015181840152602081019050612845565b60008484015250505050565b6000601f19601f8301169050919050565b600061288882612826565b6128928185612831565b93506128a2818560208601612842565b6128ab8161286c565b840191505092915050565b600060208201905081810360008301526128d0818461287d565b905092915050565b6000819050919050565b6128eb816128d8565b81146128f657600080fd5b50565b600081359050612908816128e2565b92915050565b60006020828403121561292457612923612761565b5b6000612932848285016128f9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129668261293b565b9050919050565b6129768161295b565b82525050565b6000602082019050612991600083018461296d565b92915050565b6129a08161295b565b81146129ab57600080fd5b50565b6000813590506129bd81612997565b92915050565b600080604083850312156129da576129d9612761565b5b60006129e8858286016129ae565b92505060206129f9858286016128f9565b9150509250929050565b612a0c816128d8565b82525050565b6000602082019050612a276000830184612a03565b92915050565b600080600060608486031215612a4657612a45612761565b5b6000612a54868287016129ae565b9350506020612a65868287016129ae565b9250506040612a76868287016128f9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ac28261286c565b810181811067ffffffffffffffff82111715612ae157612ae0612a8a565b5b80604052505050565b6000612af4612757565b9050612b008282612ab9565b919050565b600067ffffffffffffffff821115612b2057612b1f612a8a565b5b612b298261286c565b9050602081019050919050565b82818337600083830152505050565b6000612b58612b5384612b05565b612aea565b905082815260208101848484011115612b7457612b73612a85565b5b612b7f848285612b36565b509392505050565b600082601f830112612b9c57612b9b612a80565b5b8135612bac848260208601612b45565b91505092915050565b600060208284031215612bcb57612bca612761565b5b600082013567ffffffffffffffff811115612be957612be8612766565b5b612bf584828501612b87565b91505092915050565b600060208284031215612c1457612c13612761565b5b6000612c22848285016129ae565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c60816128d8565b82525050565b6000612c728383612c57565b60208301905092915050565b6000602082019050919050565b6000612c9682612c2b565b612ca08185612c36565b9350612cab83612c47565b8060005b83811015612cdc578151612cc38882612c66565b9750612cce83612c7e565b925050600181019050612caf565b5085935050505092915050565b60006020820190508181036000830152612d038184612c8b565b905092915050565b612d14816127f0565b8114612d1f57600080fd5b50565b600081359050612d3181612d0b565b92915050565b60008060408385031215612d4e57612d4d612761565b5b6000612d5c858286016129ae565b9250506020612d6d85828601612d22565b9150509250929050565b600067ffffffffffffffff821115612d9257612d91612a8a565b5b612d9b8261286c565b9050602081019050919050565b6000612dbb612db684612d77565b612aea565b905082815260208101848484011115612dd757612dd6612a85565b5b612de2848285612b36565b509392505050565b600082601f830112612dff57612dfe612a80565b5b8135612e0f848260208601612da8565b91505092915050565b60008060008060808587031215612e3257612e31612761565b5b6000612e40878288016129ae565b9450506020612e51878288016129ae565b9350506040612e62878288016128f9565b925050606085013567ffffffffffffffff811115612e8357612e82612766565b5b612e8f87828801612dea565b91505092959194509250565b600067ffffffffffffffff821115612eb657612eb5612a8a565b5b602082029050602081019050919050565b600080fd5b6000612edf612eda84612e9b565b612aea565b90508083825260208201905060208402830185811115612f0257612f01612ec7565b5b835b81811015612f2b5780612f1788826129ae565b845260208401935050602081019050612f04565b5050509392505050565b600082601f830112612f4a57612f49612a80565b5b8135612f5a848260208601612ecc565b91505092915050565b600060208284031215612f7957612f78612761565b5b600082013567ffffffffffffffff811115612f9757612f96612766565b5b612fa384828501612f35565b91505092915050565b60008060408385031215612fc357612fc2612761565b5b6000612fd1858286016129ae565b9250506020612fe2858286016129ae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061303357607f821691505b60208210810361304657613045612fec565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006130a8602183612831565b91506130b38261304c565b604082019050919050565b600060208201905081810360008301526130d78161309b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061313a603d83612831565b9150613145826130de565b604082019050919050565b600060208201905081810360008301526131698161312d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006131cc602d83612831565b91506131d782613170565b604082019050919050565b600060208201905081810360008301526131fb816131bf565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061325e602b83612831565b915061326982613202565b604082019050919050565b6000602082019050818103600083015261328d81613251565b9050919050565b60006040820190506132a9600083018561296d565b6132b66020830184612a03565b9392505050565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b60006132f3601983612831565b91506132fe826132bd565b602082019050919050565b60006020820190508181036000830152613322816132e6565b9050919050565b600081905092915050565b50565b6000613344600083613329565b915061334f82613334565b600082019050919050565b600061336582613337565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006133a5601083612831565b91506133b08261336f565b602082019050919050565b600060208201905081810360008301526133d481613398565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613437602c83612831565b9150613442826133db565b604082019050919050565b600060208201905081810360008301526134668161342a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134c1565b61350886836134c1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061354561354061353b846128d8565b613520565b6128d8565b9050919050565b6000819050919050565b61355f8361352a565b61357361356b8261354c565b8484546134ce565b825550505050565b600090565b61358861357b565b613593818484613556565b505050565b5b818110156135b7576135ac600082613580565b600181019050613599565b5050565b601f8211156135fc576135cd8161349c565b6135d6846134b1565b810160208510156135e5578190505b6135f96135f1856134b1565b830182613598565b50505b505050565b600082821c905092915050565b600061361f60001984600802613601565b1980831691505092915050565b6000613638838361360e565b9150826002028217905092915050565b61365182612826565b67ffffffffffffffff81111561366a57613669612a8a565b5b613674825461301b565b61367f8282856135bb565b600060209050601f8311600181146136b257600084156136a0578287015190505b6136aa858261362c565b865550613712565b601f1984166136c08661349c565b60005b828110156136e8578489015182556001820191506020850194506020810190506136c3565b868310156137055784890151613701601f89168261360e565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613750601883612831565b915061375b8261371a565b602082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137e2602983612831565b91506137ed82613786565b604082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b600081905092915050565b600061382e82612826565b6138388185613818565b9350613848818560208601612842565b80840191505092915050565b60006138608285613823565b915061386c8284613823565b91508190509392505050565b7f496e76616c696420696e70757400000000000000000000000000000000000000600082015250565b60006138ae600d83612831565b91506138b982613878565b602082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061391e826128d8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036139505761394f6138e4565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139b7602683612831565b91506139c28261395b565b604082019050919050565b600060208201905081810360008301526139e6816139aa565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613a49602583612831565b9150613a54826139ed565b604082019050919050565b60006020820190508181036000830152613a7881613a3c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613adb602483612831565b9150613ae682613a7f565b604082019050919050565b60006020820190508181036000830152613b0a81613ace565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b47602083612831565b9150613b5282613b11565b602082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bb3601983612831565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c45603283612831565b9150613c5082613be9565b604082019050919050565b60006020820190508181036000830152613c7481613c38565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613d06603583612831565b9150613d1182613caa565b604082019050919050565b60006020820190508181036000830152613d3581613cf9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d6382613d3c565b613d6d8185613d47565b9350613d7d818560208601612842565b613d868161286c565b840191505092915050565b6000608082019050613da6600083018761296d565b613db3602083018661296d565b613dc06040830185612a03565b8181036060830152613dd28184613d58565b905095945050505050565b600081519050613dec81612797565b92915050565b600060208284031215613e0857613e07612761565b5b6000613e1684828501613ddd565b91505092915050565b6000613e2a826128d8565b9150613e35836128d8565b9250828203905081811115613e4d57613e4c6138e4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613eb8602083612831565b9150613ec382613e82565b602082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f24601c83612831565b9150613f2f82613eee565b602082019050919050565b60006020820190508181036000830152613f5381613f17565b905091905056fea2646970667358221220084a423aa417ac885a53b196b1c7baece5bd58750e26e5a2cb96d92beb30c22464736f6c6343000812003368747470733a2f2f697066732e696f2f697066732f516d58764c534877685a56766a75707369466a4279353639446a74767050387436705163626152535955797658542f7365637265742e6a736f6e

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610585578063e8fdb53b146105b0578063e985e9c5146105d9578063f2fde38b1461061657610181565b8063a22cb465146104f6578063b88d4fde1461051f578063c87b56dd1461054857610181565b806370a08231146103e4578063715018a6146104215780638462151c146104385780638d859f3e146104755780638da5cb5b146104a057806395d89b41146104cb57610181565b80632f745c591161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce71461034157806355f804b31461037e5780636352211e146103a757610181565b80632f745c59146102a8578063397be3fd146102e55780633ccfd60b1461030e57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906127c3565b61063f565b6040516101ba919061280b565b60405180910390f35b3480156101cf57600080fd5b506101d86106b9565b6040516101e591906128b6565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061290e565b61074b565b604051610222919061297c565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906129c3565b610791565b005b34801561026057600080fd5b506102696108a8565b6040516102769190612a12565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612a2d565b6108b5565b005b3480156102b457600080fd5b506102cf60048036038101906102ca91906129c3565b610915565b6040516102dc9190612a12565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061290e565b6109ba565b005b610316610a97565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612a2d565b610b97565b005b34801561034d57600080fd5b506103686004803603810190610363919061290e565b610bb7565b6040516103759190612a12565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612bb5565b610c28565b005b3480156103b357600080fd5b506103ce60048036038101906103c9919061290e565b610c43565b6040516103db919061297c565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612bfe565b610cc9565b6040516104189190612a12565b60405180910390f35b34801561042d57600080fd5b50610436610d80565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612bfe565b610d94565b60405161046c9190612ce9565b60405180910390f35b34801561048157600080fd5b5061048a610e2b565b6040516104979190612a12565b60405180910390f35b3480156104ac57600080fd5b506104b5610e36565b6040516104c2919061297c565b60405180910390f35b3480156104d757600080fd5b506104e0610e60565b6040516104ed91906128b6565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612d37565b610ef2565b005b34801561052b57600080fd5b5061054660048036038101906105419190612e18565b610f08565b005b34801561055457600080fd5b5061056f600480360381019061056a919061290e565b610f6a565b60405161057c91906128b6565b60405180910390f35b34801561059157600080fd5b5061059a610fd2565b6040516105a791906128b6565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612f63565b611060565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612fac565b61116d565b60405161060d919061280b565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612bfe565b611201565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b257506106b182611284565b5b9050919050565b6060600080546106c89061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546106f49061301b565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b600061075682611366565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079c82610c43565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610803906130be565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082b6113b1565b73ffffffffffffffffffffffffffffffffffffffff16148061085a5750610859816108546113b1565b61116d565b5b610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090613150565b60405180910390fd5b6108a383836113b9565b505050565b6000600880549050905090565b6108c66108c06113b1565b82611472565b610905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fc906131e2565b60405180910390fd5b610910838383611507565b505050565b600061092083610cc9565b8210610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613274565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109c2611800565b6109cc338261187e565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055600d8190806001815401808255809150506001900390600052602060002001600090919091909150557f2fdf319518046f7b4ebc04a5ca363b42da5e87f5e8150935b3e4ef1ee4509e1a3382604051610a8c929190613294565b60405180910390a150565b610a9f611800565b600047905060008111610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90613309565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610b0d9061335a565b60006040518083038185875af1925050503d8060008114610b4a576040519150601f19603f3d011682016040523d82523d6000602084013e610b4f565b606091505b5050905080610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906133bb565b60405180910390fd5b5050565b610bb283838360405180602001604052806000815250610f08565b505050565b6000610bc16108a8565b8210610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf99061344d565b60405180910390fd5b60088281548110610c1657610c1561346d565b5b90600052602060002001549050919050565b610c30611800565b80600b9081610c3f9190613648565b5050565b600080610c4f8361189c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613766565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906137f8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d88611800565b610d9260006118d9565b565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610e1f57602002820191906000526020600020905b815481526020019060010190808311610e0b575b50505050509050919050565b6611c37937e0800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610e6f9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9b9061301b565b8015610ee85780601f10610ebd57610100808354040283529160200191610ee8565b820191906000526020600020905b815481529060010190602001808311610ecb57829003601f168201915b5050505050905090565b610f04610efd6113b1565b838361199f565b5050565b610f19610f136113b1565b83611472565b610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f906131e2565b60405180910390fd5b610f6484848484611b0b565b50505050565b6060610f7582611366565b6000610f7f611b67565b90506000815111610f9f5760405180602001604052806000815250610fca565b80610fa984611bf9565b604051602001610fba929190613854565b6040516020818303038152906040525b915050919050565b600b8054610fdf9061301b565b80601f016020809104026020016040519081016040528092919081815260200182805461100b9061301b565b80156110585780601f1061102d57610100808354040283529160200191611058565b820191906000526020600020905b81548152906001019060200180831161103b57829003601f168201915b505050505081565b60008151116110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b906138c4565b60405180910390fd5b60005b8151811015611169576000600c549050600c60008154809291906110ca90613913565b91905055506110f38383815181106110e5576110e461346d565b5b60200260200101518261187e565b600d8190806001815401808255809150506001900390600052602060002001600090919091909150557f2fdf319518046f7b4ebc04a5ca363b42da5e87f5e8150935b3e4ef1ee4509e1a338260405161114d929190613294565b60405180910390a150808061116190613913565b9150506110a7565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611209611800565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906139cd565b60405180910390fd5b611281816118d9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061134f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061135f575061135e82611cc7565b5b9050919050565b61136f81611d31565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590613766565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661142c83610c43565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061147e83610c43565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114c057506114bf818561116d565b5b806114fe57508373ffffffffffffffffffffffffffffffffffffffff166114e68461074b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661152782610c43565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613a5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e390613af1565b60405180910390fd5b6115f98383836001611d72565b8273ffffffffffffffffffffffffffffffffffffffff1661161982610c43565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690613a5f565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117fb8383836001611ed0565b505050565b6118086113b1565b73ffffffffffffffffffffffffffffffffffffffff16611826610e36565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613b5d565b60405180910390fd5b565b611898828260405180602001604052806000815250611ed6565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613bc9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afe919061280b565b60405180910390a3505050565b611b16848484611507565b611b2284848484611f31565b611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613c5b565b60405180910390fd5b50505050565b6060600b8054611b769061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba29061301b565b8015611bef5780601f10611bc457610100808354040283529160200191611bef565b820191906000526020600020905b815481529060010190602001808311611bd257829003601f168201915b5050505050905090565b606060006001611c08846120b8565b01905060008167ffffffffffffffff811115611c2757611c26612a8a565b5b6040519080825280601f01601f191660200182016040528015611c595781602001600182028036833780820191505090505b509050600082602001820190505b600115611cbc578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611cb057611caf613c7b565b5b04945060008503611c67575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611d538361189c565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611d7e8484848461220b565b6001811115611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613d1c565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e0957611e0481612211565b611e48565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611e4757611e46858261225a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e8a57611e85816123c7565b611ec9565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611ec857611ec78482612498565b5b5b5050505050565b50505050565b611ee08383612517565b611eed6000848484611f31565b611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613c5b565b60405180910390fd5b505050565b6000611f528473ffffffffffffffffffffffffffffffffffffffff16612734565b156120ab578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f7b6113b1565b8786866040518563ffffffff1660e01b8152600401611f9d9493929190613d91565b6020604051808303816000875af1925050508015611fd957506040513d601f19601f82011682018060405250810190611fd69190613df2565b60015b61205b573d8060008114612009576040519150601f19603f3d011682016040523d82523d6000602084013e61200e565b606091505b506000815103612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613c5b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120b0565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612116577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161210c5761210b613c7b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612153576d04ee2d6d415b85acef8100000000838161214957612148613c7b565b5b0492506020810190505b662386f26fc10000831061218257662386f26fc10000838161217857612177613c7b565b5b0492506010810190505b6305f5e10083106121ab576305f5e10083816121a1576121a0613c7b565b5b0492506008810190505b61271083106121d05761271083816121c6576121c5613c7b565b5b0492506004810190505b606483106121f357606483816121e9576121e8613c7b565b5b0492506002810190505b600a8310612202576001810190505b80915050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161226784610cc9565b6122719190613e1f565b9050600060076000848152602001908152602001600020549050818114612356576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506123db9190613e1f565b905060006009600084815260200190815260200160002054905060006008838154811061240b5761240a61346d565b5b90600052602060002001549050806008838154811061242d5761242c61346d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061247c5761247b613e53565b5b6001900381819060005260206000200160009055905550505050565b60006124a383610cc9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90613ece565b60405180910390fd5b61258f81611d31565b156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690613f3a565b60405180910390fd5b6125dd600083836001611d72565b6125e681611d31565b15612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90613f3a565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612730600083836001611ed0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127a08161276b565b81146127ab57600080fd5b50565b6000813590506127bd81612797565b92915050565b6000602082840312156127d9576127d8612761565b5b60006127e7848285016127ae565b91505092915050565b60008115159050919050565b612805816127f0565b82525050565b600060208201905061282060008301846127fc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612860578082015181840152602081019050612845565b60008484015250505050565b6000601f19601f8301169050919050565b600061288882612826565b6128928185612831565b93506128a2818560208601612842565b6128ab8161286c565b840191505092915050565b600060208201905081810360008301526128d0818461287d565b905092915050565b6000819050919050565b6128eb816128d8565b81146128f657600080fd5b50565b600081359050612908816128e2565b92915050565b60006020828403121561292457612923612761565b5b6000612932848285016128f9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129668261293b565b9050919050565b6129768161295b565b82525050565b6000602082019050612991600083018461296d565b92915050565b6129a08161295b565b81146129ab57600080fd5b50565b6000813590506129bd81612997565b92915050565b600080604083850312156129da576129d9612761565b5b60006129e8858286016129ae565b92505060206129f9858286016128f9565b9150509250929050565b612a0c816128d8565b82525050565b6000602082019050612a276000830184612a03565b92915050565b600080600060608486031215612a4657612a45612761565b5b6000612a54868287016129ae565b9350506020612a65868287016129ae565b9250506040612a76868287016128f9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ac28261286c565b810181811067ffffffffffffffff82111715612ae157612ae0612a8a565b5b80604052505050565b6000612af4612757565b9050612b008282612ab9565b919050565b600067ffffffffffffffff821115612b2057612b1f612a8a565b5b612b298261286c565b9050602081019050919050565b82818337600083830152505050565b6000612b58612b5384612b05565b612aea565b905082815260208101848484011115612b7457612b73612a85565b5b612b7f848285612b36565b509392505050565b600082601f830112612b9c57612b9b612a80565b5b8135612bac848260208601612b45565b91505092915050565b600060208284031215612bcb57612bca612761565b5b600082013567ffffffffffffffff811115612be957612be8612766565b5b612bf584828501612b87565b91505092915050565b600060208284031215612c1457612c13612761565b5b6000612c22848285016129ae565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c60816128d8565b82525050565b6000612c728383612c57565b60208301905092915050565b6000602082019050919050565b6000612c9682612c2b565b612ca08185612c36565b9350612cab83612c47565b8060005b83811015612cdc578151612cc38882612c66565b9750612cce83612c7e565b925050600181019050612caf565b5085935050505092915050565b60006020820190508181036000830152612d038184612c8b565b905092915050565b612d14816127f0565b8114612d1f57600080fd5b50565b600081359050612d3181612d0b565b92915050565b60008060408385031215612d4e57612d4d612761565b5b6000612d5c858286016129ae565b9250506020612d6d85828601612d22565b9150509250929050565b600067ffffffffffffffff821115612d9257612d91612a8a565b5b612d9b8261286c565b9050602081019050919050565b6000612dbb612db684612d77565b612aea565b905082815260208101848484011115612dd757612dd6612a85565b5b612de2848285612b36565b509392505050565b600082601f830112612dff57612dfe612a80565b5b8135612e0f848260208601612da8565b91505092915050565b60008060008060808587031215612e3257612e31612761565b5b6000612e40878288016129ae565b9450506020612e51878288016129ae565b9350506040612e62878288016128f9565b925050606085013567ffffffffffffffff811115612e8357612e82612766565b5b612e8f87828801612dea565b91505092959194509250565b600067ffffffffffffffff821115612eb657612eb5612a8a565b5b602082029050602081019050919050565b600080fd5b6000612edf612eda84612e9b565b612aea565b90508083825260208201905060208402830185811115612f0257612f01612ec7565b5b835b81811015612f2b5780612f1788826129ae565b845260208401935050602081019050612f04565b5050509392505050565b600082601f830112612f4a57612f49612a80565b5b8135612f5a848260208601612ecc565b91505092915050565b600060208284031215612f7957612f78612761565b5b600082013567ffffffffffffffff811115612f9757612f96612766565b5b612fa384828501612f35565b91505092915050565b60008060408385031215612fc357612fc2612761565b5b6000612fd1858286016129ae565b9250506020612fe2858286016129ae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061303357607f821691505b60208210810361304657613045612fec565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006130a8602183612831565b91506130b38261304c565b604082019050919050565b600060208201905081810360008301526130d78161309b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061313a603d83612831565b9150613145826130de565b604082019050919050565b600060208201905081810360008301526131698161312d565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006131cc602d83612831565b91506131d782613170565b604082019050919050565b600060208201905081810360008301526131fb816131bf565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061325e602b83612831565b915061326982613202565b604082019050919050565b6000602082019050818103600083015261328d81613251565b9050919050565b60006040820190506132a9600083018561296d565b6132b66020830184612a03565b9392505050565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b60006132f3601983612831565b91506132fe826132bd565b602082019050919050565b60006020820190508181036000830152613322816132e6565b9050919050565b600081905092915050565b50565b6000613344600083613329565b915061334f82613334565b600082019050919050565b600061336582613337565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006133a5601083612831565b91506133b08261336f565b602082019050919050565b600060208201905081810360008301526133d481613398565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613437602c83612831565b9150613442826133db565b604082019050919050565b600060208201905081810360008301526134668161342a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134c1565b61350886836134c1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061354561354061353b846128d8565b613520565b6128d8565b9050919050565b6000819050919050565b61355f8361352a565b61357361356b8261354c565b8484546134ce565b825550505050565b600090565b61358861357b565b613593818484613556565b505050565b5b818110156135b7576135ac600082613580565b600181019050613599565b5050565b601f8211156135fc576135cd8161349c565b6135d6846134b1565b810160208510156135e5578190505b6135f96135f1856134b1565b830182613598565b50505b505050565b600082821c905092915050565b600061361f60001984600802613601565b1980831691505092915050565b6000613638838361360e565b9150826002028217905092915050565b61365182612826565b67ffffffffffffffff81111561366a57613669612a8a565b5b613674825461301b565b61367f8282856135bb565b600060209050601f8311600181146136b257600084156136a0578287015190505b6136aa858261362c565b865550613712565b601f1984166136c08661349c565b60005b828110156136e8578489015182556001820191506020850194506020810190506136c3565b868310156137055784890151613701601f89168261360e565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613750601883612831565b915061375b8261371a565b602082019050919050565b6000602082019050818103600083015261377f81613743565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137e2602983612831565b91506137ed82613786565b604082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b600081905092915050565b600061382e82612826565b6138388185613818565b9350613848818560208601612842565b80840191505092915050565b60006138608285613823565b915061386c8284613823565b91508190509392505050565b7f496e76616c696420696e70757400000000000000000000000000000000000000600082015250565b60006138ae600d83612831565b91506138b982613878565b602082019050919050565b600060208201905081810360008301526138dd816138a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061391e826128d8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036139505761394f6138e4565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139b7602683612831565b91506139c28261395b565b604082019050919050565b600060208201905081810360008301526139e6816139aa565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613a49602583612831565b9150613a54826139ed565b604082019050919050565b60006020820190508181036000830152613a7881613a3c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613adb602483612831565b9150613ae682613a7f565b604082019050919050565b60006020820190508181036000830152613b0a81613ace565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b47602083612831565b9150613b5282613b11565b602082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bb3601983612831565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c45603283612831565b9150613c5082613be9565b604082019050919050565b60006020820190508181036000830152613c7481613c38565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613d06603583612831565b9150613d1182613caa565b604082019050919050565b60006020820190508181036000830152613d3581613cf9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613d6382613d3c565b613d6d8185613d47565b9350613d7d818560208601612842565b613d868161286c565b840191505092915050565b6000608082019050613da6600083018761296d565b613db3602083018661296d565b613dc06040830185612a03565b8181036060830152613dd28184613d58565b905095945050505050565b600081519050613dec81612797565b92915050565b600060208284031215613e0857613e07612761565b5b6000613e1684828501613ddd565b91505092915050565b6000613e2a826128d8565b9150613e35836128d8565b9250828203905081811115613e4d57613e4c6138e4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613eb8602083612831565b9150613ec382613e82565b602082019050919050565b60006020820190508181036000830152613ee781613eab565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f24601c83612831565b9150613f2f82613eee565b602082019050919050565b60006020820190508181036000830152613f5381613f17565b905091905056fea2646970667358221220084a423aa417ac885a53b196b1c7baece5bd58750e26e5a2cb96d92beb30c22464736f6c63430008120033

Deployed Bytecode Sourcemap

64749:1948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56019:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40068:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41580:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41098:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56659:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42280:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56327:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65452:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66420:274;;;:::i;:::-;;42652:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56849:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65331:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39778:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39509:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63830:103;;;;;;;;;;;;;:::i;:::-;;66293:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64802:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63189:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40237:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41823:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42874:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40412:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64849:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65693:592;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42049:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64088:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56019:224;56121:4;56160:35;56145:50;;;:11;:50;;;;:90;;;;56199:36;56223:11;56199:23;:36::i;:::-;56145:90;56138:97;;56019:224;;;:::o;40068:100::-;40122:13;40155:5;40148:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40068:100;:::o;41580:171::-;41656:7;41676:23;41691:7;41676:14;:23::i;:::-;41719:15;:24;41735:7;41719:24;;;;;;;;;;;;;;;;;;;;;41712:31;;41580:171;;;:::o;41098:416::-;41179:13;41195:23;41210:7;41195:14;:23::i;:::-;41179:39;;41243:5;41237:11;;:2;:11;;;41229:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41337:5;41321:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41346:37;41363:5;41370:12;:10;:12::i;:::-;41346:16;:37::i;:::-;41321:62;41299:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;41485:21;41494:2;41498:7;41485:8;:21::i;:::-;41168:346;41098:416;;:::o;56659:113::-;56720:7;56747:10;:17;;;;56740:24;;56659:113;:::o;42280:301::-;42441:41;42460:12;:10;:12::i;:::-;42474:7;42441:18;:41::i;:::-;42433:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42545:28;42555:4;42561:2;42565:7;42545:9;:28::i;:::-;42280:301;;;:::o;56327:256::-;56424:7;56460:23;56477:5;56460:16;:23::i;:::-;56452:5;:31;56444:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;56549:12;:19;56562:5;56549:19;;;;;;;;;;;;;;;:26;56569:5;56549:26;;;;;;;;;;;;56542:33;;56327:256;;;;:::o;65452:234::-;63075:13;:11;:13::i;:::-;65516:31:::1;65526:10;65538:8;65516:9;:31::i;:::-;65558:8;:20;65567:10;65558:20;;;;;;;;;;;;;;;65584:8;65558:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65604:14;65624:8;65604:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65649;65657:10;65669:8;65649:29;;;;;;;:::i;:::-;;;;;;;;65452:234:::0;:::o;66420:274::-;63075:13;:11;:13::i;:::-;66476:12:::1;66491:21;66476:36;;66541:1;66531:7;:11;66523:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;66584:12;66603:10;66602:17;;66627:7;66602:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66583:56;;;66658:7;66650:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;66465:229;;66420:274::o:0;42652:151::-;42756:39;42773:4;42779:2;42783:7;42756:39;;;;;;;;;;;;:16;:39::i;:::-;42652:151;;;:::o;56849:233::-;56924:7;56960:30;:28;:30::i;:::-;56952:5;:38;56944:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57057:10;57068:5;57057:17;;;;;;;;:::i;:::-;;;;;;;;;;57050:24;;56849:233;;;:::o;65331:113::-;63075:13;:11;:13::i;:::-;65423::::1;65408:12;:28;;;;;;:::i;:::-;;65331:113:::0;:::o;39778:223::-;39850:7;39870:13;39886:17;39895:7;39886:8;:17::i;:::-;39870:33;;39939:1;39922:19;;:5;:19;;;39914:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39988:5;39981:12;;;39778:223;;;:::o;39509:207::-;39581:7;39626:1;39609:19;;:5;:19;;;39601:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39692:9;:16;39702:5;39692:16;;;;;;;;;;;;;;;;39685:23;;39509:207;;;:::o;63830:103::-;63075:13;:11;:13::i;:::-;63895:30:::1;63922:1;63895:18;:30::i;:::-;63830:103::o:0;66293:119::-;66355:13;66388:8;:16;66397:6;66388:16;;;;;;;;;;;;;;;66381:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66293:119;;;:::o;64802:40::-;64831:11;64802:40;:::o;63189:87::-;63235:7;63262:6;;;;;;;;;;;63255:13;;63189:87;:::o;40237:104::-;40293:13;40326:7;40319:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40237:104;:::o;41823:155::-;41918:52;41937:12;:10;:12::i;:::-;41951:8;41961;41918:18;:52::i;:::-;41823:155;;:::o;42874:279::-;43005:41;43024:12;:10;:12::i;:::-;43038:7;43005:18;:41::i;:::-;42997:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43107:38;43121:4;43127:2;43131:7;43140:4;43107:13;:38::i;:::-;42874:279;;;;:::o;40412:281::-;40485:13;40511:23;40526:7;40511:14;:23::i;:::-;40547:21;40571:10;:8;:10::i;:::-;40547:34;;40623:1;40605:7;40599:21;:25;:86;;;;;;;;;;;;;;;;;40651:7;40660:18;:7;:16;:18::i;:::-;40634:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40599:86;40592:93;;;40412:281;;;:::o;64849:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65693:592::-;65769:1;65756:3;:10;:14;65748:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;65867:6;65862:420;65883:3;:10;65879:1;:14;65862:420;;;65911:12;65926:11;;65911:26;;66047:11;;:13;;;;;;;;;:::i;:::-;;;;;;66165:26;66175:3;66179:1;66175:6;;;;;;;;:::i;:::-;;;;;;;;66183:7;66165:9;:26::i;:::-;66202:14;66222:7;66202:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66246;66254:10;66266:7;66246:28;;;;;;;:::i;:::-;;;;;;;;65900:382;65895:3;;;;;:::i;:::-;;;;65862:420;;;;65693:592;:::o;42049:164::-;42146:4;42170:18;:25;42189:5;42170:25;;;;;;;;;;;;;;;:35;42196:8;42170:35;;;;;;;;;;;;;;;;;;;;;;;;;42163:42;;42049:164;;;;:::o;64088:201::-;63075:13;:11;:13::i;:::-;64197:1:::1;64177:22;;:8;:22;;::::0;64169:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64253:28;64272:8;64253:18;:28::i;:::-;64088:201:::0;:::o;39140:305::-;39242:4;39294:25;39279:40;;;:11;:40;;;;:105;;;;39351:33;39336:48;;;:11;:48;;;;39279:105;:158;;;;39401:36;39425:11;39401:23;:36::i;:::-;39279:158;39259:178;;39140:305;;;:::o;51143:135::-;51225:16;51233:7;51225;:16::i;:::-;51217:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;51143:135;:::o;37519:98::-;37572:7;37599:10;37592:17;;37519:98;:::o;50456:174::-;50558:2;50531:15;:24;50547:7;50531:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50614:7;50610:2;50576:46;;50585:23;50600:7;50585:14;:23::i;:::-;50576:46;;;;;;;;;;;;50456:174;;:::o;45143:264::-;45236:4;45253:13;45269:23;45284:7;45269:14;:23::i;:::-;45253:39;;45322:5;45311:16;;:7;:16;;;:52;;;;45331:32;45348:5;45355:7;45331:16;:32::i;:::-;45311:52;:87;;;;45391:7;45367:31;;:20;45379:7;45367:11;:20::i;:::-;:31;;;45311:87;45303:96;;;45143:264;;;;:::o;49108:1229::-;49233:4;49206:31;;:23;49221:7;49206:14;:23::i;:::-;:31;;;49198:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49312:1;49298:16;;:2;:16;;;49290:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49368:42;49389:4;49395:2;49399:7;49408:1;49368:20;:42::i;:::-;49540:4;49513:31;;:23;49528:7;49513:14;:23::i;:::-;:31;;;49505:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49658:15;:24;49674:7;49658:24;;;;;;;;;;;;49651:31;;;;;;;;;;;50153:1;50134:9;:15;50144:4;50134:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;50186:1;50169:9;:13;50179:2;50169:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50228:2;50209:7;:16;50217:7;50209:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50267:7;50263:2;50248:27;;50257:4;50248:27;;;;;;;;;;;;50288:41;50308:4;50314:2;50318:7;50327:1;50288:19;:41::i;:::-;49108:1229;;;:::o;63354:132::-;63429:12;:10;:12::i;:::-;63418:23;;:7;:5;:7::i;:::-;:23;;;63410:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63354:132::o;45749:110::-;45825:26;45835:2;45839:7;45825:26;;;;;;;;;;;;:9;:26::i;:::-;45749:110;;:::o;44418:117::-;44484:7;44511;:16;44519:7;44511:16;;;;;;;;;;;;;;;;;;;;;44504:23;;44418:117;;;:::o;64449:191::-;64523:16;64542:6;;;;;;;;;;;64523:25;;64568:8;64559:6;;:17;;;;;;;;;;;;;;;;;;64623:8;64592:40;;64613:8;64592:40;;;;;;;;;;;;64512:128;64449:191;:::o;50773:281::-;50894:8;50885:17;;:5;:17;;;50877:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50981:8;50943:18;:25;50962:5;50943:25;;;;;;;;;;;;;;;:35;50969:8;50943:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;51027:8;51005:41;;51020:5;51005:41;;;51037:8;51005:41;;;;;;:::i;:::-;;;;;;;;50773:281;;;:::o;44034:270::-;44147:28;44157:4;44163:2;44167:7;44147:9;:28::i;:::-;44194:47;44217:4;44223:2;44227:7;44236:4;44194:22;:47::i;:::-;44186:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;44034:270;;;;:::o;65210:113::-;65270:13;65303:12;65296:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65210:113;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;29791:157::-;29876:4;29915:25;29900:40;;;:11;:40;;;;29893:47;;29791:157;;;:::o;44848:128::-;44913:4;44966:1;44937:31;;:17;44946:7;44937:8;:17::i;:::-;:31;;;;44930:38;;44848:128;;;:::o;57156:915::-;57333:61;57360:4;57366:2;57370:12;57384:9;57333:26;:61::i;:::-;57423:1;57411:9;:13;57407:222;;;57554:63;;;;;;;;;;:::i;:::-;;;;;;;;57407:222;57641:15;57659:12;57641:30;;57704:1;57688:18;;:4;:18;;;57684:187;;57723:40;57755:7;57723:31;:40::i;:::-;57684:187;;;57793:2;57785:10;;:4;:10;;;57781:90;;57812:47;57845:4;57851:7;57812:32;:47::i;:::-;57781:90;57684:187;57899:1;57885:16;;:2;:16;;;57881:183;;57918:45;57955:7;57918:36;:45::i;:::-;57881:183;;;57991:4;57985:10;;:2;:10;;;57981:83;;58012:40;58040:2;58044:7;58012:27;:40::i;:::-;57981:83;57881:183;57322:749;57156:915;;;;:::o;54265:115::-;;;;;:::o;46086:285::-;46181:18;46187:2;46191:7;46181:5;:18::i;:::-;46232:53;46263:1;46267:2;46271:7;46280:4;46232:22;:53::i;:::-;46210:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46086:285;;;:::o;51842:853::-;51996:4;52017:15;:2;:13;;;:15::i;:::-;52013:675;;;52069:2;52053:36;;;52090:12;:10;:12::i;:::-;52104:4;52110:7;52119:4;52053:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52049:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52311:1;52294:6;:13;:18;52290:328;;52337:60;;;;;;;;;;:::i;:::-;;;;;;;;52290:328;52568:6;52562:13;52553:6;52549:2;52545:15;52538:38;52049:584;52185:41;;;52175:51;;;:6;:51;;;;52168:58;;;;;52013:675;52672:4;52665:11;;51842:853;;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;53427:116::-;;;;;:::o;58794:164::-;58898:10;:17;;;;58871:15;:24;58887:7;58871:24;;;;;;;;;;;:44;;;;58926:10;58942:7;58926:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58794:164;:::o;59585:988::-;59851:22;59901:1;59876:22;59893:4;59876:16;:22::i;:::-;:26;;;;:::i;:::-;59851:51;;59913:18;59934:17;:26;59952:7;59934:26;;;;;;;;;;;;59913:47;;60081:14;60067:10;:28;60063:328;;60112:19;60134:12;:18;60147:4;60134:18;;;;;;;;;;;;;;;:34;60153:14;60134:34;;;;;;;;;;;;60112:56;;60218:11;60185:12;:18;60198:4;60185:18;;;;;;;;;;;;;;;:30;60204:10;60185:30;;;;;;;;;;;:44;;;;60335:10;60302:17;:30;60320:11;60302:30;;;;;;;;;;;:43;;;;60097:294;60063:328;60487:17;:26;60505:7;60487:26;;;;;;;;;;;60480:33;;;60531:12;:18;60544:4;60531:18;;;;;;;;;;;;;;;:34;60550:14;60531:34;;;;;;;;;;;60524:41;;;59666:907;;59585:988;;:::o;60868:1079::-;61121:22;61166:1;61146:10;:17;;;;:21;;;;:::i;:::-;61121:46;;61178:18;61199:15;:24;61215:7;61199:24;;;;;;;;;;;;61178:45;;61550:19;61572:10;61583:14;61572:26;;;;;;;;:::i;:::-;;;;;;;;;;61550:48;;61636:11;61611:10;61622;61611:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;61747:10;61716:15;:28;61732:11;61716:28;;;;;;;;;;;:41;;;;61888:15;:24;61904:7;61888:24;;;;;;;;;;;61881:31;;;61923:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60939:1008;;;60868:1079;:::o;58372:221::-;58457:14;58474:20;58491:2;58474:16;:20::i;:::-;58457:37;;58532:7;58505:12;:16;58518:2;58505:16;;;;;;;;;;;;;;;:24;58522:6;58505:24;;;;;;;;;;;:34;;;;58579:6;58550:17;:26;58568:7;58550:26;;;;;;;;;;;:35;;;;58446:147;58372:221;;:::o;46707:942::-;46801:1;46787:16;;:2;:16;;;46779:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46860:16;46868:7;46860;:16::i;:::-;46859:17;46851:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46922:48;46951:1;46955:2;46959:7;46968:1;46922:20;:48::i;:::-;47069:16;47077:7;47069;:16::i;:::-;47068:17;47060:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47484:1;47467:9;:13;47477:2;47467:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47528:2;47509:7;:16;47517:7;47509:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47573:7;47569:2;47548:33;;47565:1;47548:33;;;;;;;;;;;;47594:47;47622:1;47626:2;47630:7;47639:1;47594:19;:47::i;:::-;46707:942;;:::o;18796:326::-;18856:4;19113:1;19091:7;:19;;;:23;19084:30;;18796:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:114::-;8895:6;8929:5;8923:12;8913:22;;8828:114;;;:::o;8948:184::-;9047:11;9081:6;9076:3;9069:19;9121:4;9116:3;9112:14;9097:29;;8948:184;;;;:::o;9138:132::-;9205:4;9228:3;9220:11;;9258:4;9253:3;9249:14;9241:22;;9138:132;;;:::o;9276:108::-;9353:24;9371:5;9353:24;:::i;:::-;9348:3;9341:37;9276:108;;:::o;9390:179::-;9459:10;9480:46;9522:3;9514:6;9480:46;:::i;:::-;9558:4;9553:3;9549:14;9535:28;;9390:179;;;;:::o;9575:113::-;9645:4;9677;9672:3;9668:14;9660:22;;9575:113;;;:::o;9724:732::-;9843:3;9872:54;9920:5;9872:54;:::i;:::-;9942:86;10021:6;10016:3;9942:86;:::i;:::-;9935:93;;10052:56;10102:5;10052:56;:::i;:::-;10131:7;10162:1;10147:284;10172:6;10169:1;10166:13;10147:284;;;10248:6;10242:13;10275:63;10334:3;10319:13;10275:63;:::i;:::-;10268:70;;10361:60;10414:6;10361:60;:::i;:::-;10351:70;;10207:224;10194:1;10191;10187:9;10182:14;;10147:284;;;10151:14;10447:3;10440:10;;9848:608;;;9724:732;;;;:::o;10462:373::-;10605:4;10643:2;10632:9;10628:18;10620:26;;10692:9;10686:4;10682:20;10678:1;10667:9;10663:17;10656:47;10720:108;10823:4;10814:6;10720:108;:::i;:::-;10712:116;;10462:373;;;;:::o;10841:116::-;10911:21;10926:5;10911:21;:::i;:::-;10904:5;10901:32;10891:60;;10947:1;10944;10937:12;10891:60;10841:116;:::o;10963:133::-;11006:5;11044:6;11031:20;11022:29;;11060:30;11084:5;11060:30;:::i;:::-;10963:133;;;;:::o;11102:468::-;11167:6;11175;11224:2;11212:9;11203:7;11199:23;11195:32;11192:119;;;11230:79;;:::i;:::-;11192:119;11350:1;11375:53;11420:7;11411:6;11400:9;11396:22;11375:53;:::i;:::-;11365:63;;11321:117;11477:2;11503:50;11545:7;11536:6;11525:9;11521:22;11503:50;:::i;:::-;11493:60;;11448:115;11102:468;;;;;:::o;11576:307::-;11637:4;11727:18;11719:6;11716:30;11713:56;;;11749:18;;:::i;:::-;11713:56;11787:29;11809:6;11787:29;:::i;:::-;11779:37;;11871:4;11865;11861:15;11853:23;;11576:307;;;:::o;11889:423::-;11966:5;11991:65;12007:48;12048:6;12007:48;:::i;:::-;11991:65;:::i;:::-;11982:74;;12079:6;12072:5;12065:21;12117:4;12110:5;12106:16;12155:3;12146:6;12141:3;12137:16;12134:25;12131:112;;;12162:79;;:::i;:::-;12131:112;12252:54;12299:6;12294:3;12289;12252:54;:::i;:::-;11972:340;11889:423;;;;;:::o;12331:338::-;12386:5;12435:3;12428:4;12420:6;12416:17;12412:27;12402:122;;12443:79;;:::i;:::-;12402:122;12560:6;12547:20;12585:78;12659:3;12651:6;12644:4;12636:6;12632:17;12585:78;:::i;:::-;12576:87;;12392:277;12331:338;;;;:::o;12675:943::-;12770:6;12778;12786;12794;12843:3;12831:9;12822:7;12818:23;12814:33;12811:120;;;12850:79;;:::i;:::-;12811:120;12970:1;12995:53;13040:7;13031:6;13020:9;13016:22;12995:53;:::i;:::-;12985:63;;12941:117;13097:2;13123:53;13168:7;13159:6;13148:9;13144:22;13123:53;:::i;:::-;13113:63;;13068:118;13225:2;13251:53;13296:7;13287:6;13276:9;13272:22;13251:53;:::i;:::-;13241:63;;13196:118;13381:2;13370:9;13366:18;13353:32;13412:18;13404:6;13401:30;13398:117;;;13434:79;;:::i;:::-;13398:117;13539:62;13593:7;13584:6;13573:9;13569:22;13539:62;:::i;:::-;13529:72;;13324:287;12675:943;;;;;;;:::o;13624:311::-;13701:4;13791:18;13783:6;13780:30;13777:56;;;13813:18;;:::i;:::-;13777:56;13863:4;13855:6;13851:17;13843:25;;13923:4;13917;13913:15;13905:23;;13624:311;;;:::o;13941:117::-;14050:1;14047;14040:12;14081:710;14177:5;14202:81;14218:64;14275:6;14218:64;:::i;:::-;14202:81;:::i;:::-;14193:90;;14303:5;14332:6;14325:5;14318:21;14366:4;14359:5;14355:16;14348:23;;14419:4;14411:6;14407:17;14399:6;14395:30;14448:3;14440:6;14437:15;14434:122;;;14467:79;;:::i;:::-;14434:122;14582:6;14565:220;14599:6;14594:3;14591:15;14565:220;;;14674:3;14703:37;14736:3;14724:10;14703:37;:::i;:::-;14698:3;14691:50;14770:4;14765:3;14761:14;14754:21;;14641:144;14625:4;14620:3;14616:14;14609:21;;14565:220;;;14569:21;14183:608;;14081:710;;;;;:::o;14814:370::-;14885:5;14934:3;14927:4;14919:6;14915:17;14911:27;14901:122;;14942:79;;:::i;:::-;14901:122;15059:6;15046:20;15084:94;15174:3;15166:6;15159:4;15151:6;15147:17;15084:94;:::i;:::-;15075:103;;14891:293;14814:370;;;;:::o;15190:539::-;15274:6;15323:2;15311:9;15302:7;15298:23;15294:32;15291:119;;;15329:79;;:::i;:::-;15291:119;15477:1;15466:9;15462:17;15449:31;15507:18;15499:6;15496:30;15493:117;;;15529:79;;:::i;:::-;15493:117;15634:78;15704:7;15695:6;15684:9;15680:22;15634:78;:::i;:::-;15624:88;;15420:302;15190:539;;;;:::o;15735:474::-;15803:6;15811;15860:2;15848:9;15839:7;15835:23;15831:32;15828:119;;;15866:79;;:::i;:::-;15828:119;15986:1;16011:53;16056:7;16047:6;16036:9;16032:22;16011:53;:::i;:::-;16001:63;;15957:117;16113:2;16139:53;16184:7;16175:6;16164:9;16160:22;16139:53;:::i;:::-;16129:63;;16084:118;15735:474;;;;;:::o;16215:180::-;16263:77;16260:1;16253:88;16360:4;16357:1;16350:15;16384:4;16381:1;16374:15;16401:320;16445:6;16482:1;16476:4;16472:12;16462:22;;16529:1;16523:4;16519:12;16550:18;16540:81;;16606:4;16598:6;16594:17;16584:27;;16540:81;16668:2;16660:6;16657:14;16637:18;16634:38;16631:84;;16687:18;;:::i;:::-;16631:84;16452:269;16401:320;;;:::o;16727:220::-;16867:34;16863:1;16855:6;16851:14;16844:58;16936:3;16931:2;16923:6;16919:15;16912:28;16727:220;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;16953:366;;;:::o;17325:419::-;17491:4;17529:2;17518:9;17514:18;17506:26;;17578:9;17572:4;17568:20;17564:1;17553:9;17549:17;17542:47;17606:131;17732:4;17606:131;:::i;:::-;17598:139;;17325:419;;;:::o;17750:248::-;17890:34;17886:1;17878:6;17874:14;17867:58;17959:31;17954:2;17946:6;17942:15;17935:56;17750:248;:::o;18004:366::-;18146:3;18167:67;18231:2;18226:3;18167:67;:::i;:::-;18160:74;;18243:93;18332:3;18243:93;:::i;:::-;18361:2;18356:3;18352:12;18345:19;;18004:366;;;:::o;18376:419::-;18542:4;18580:2;18569:9;18565:18;18557:26;;18629:9;18623:4;18619:20;18615:1;18604:9;18600:17;18593:47;18657:131;18783:4;18657:131;:::i;:::-;18649:139;;18376:419;;;:::o;18801:232::-;18941:34;18937:1;18929:6;18925:14;18918:58;19010:15;19005:2;18997:6;18993:15;18986:40;18801:232;:::o;19039:366::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:419::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:230::-;19976:34;19972:1;19964:6;19960:14;19953:58;20045:13;20040:2;20032:6;20028:15;20021:38;19836:230;:::o;20072:366::-;20214:3;20235:67;20299:2;20294:3;20235:67;:::i;:::-;20228:74;;20311:93;20400:3;20311:93;:::i;:::-;20429:2;20424:3;20420:12;20413:19;;20072:366;;;:::o;20444:419::-;20610:4;20648:2;20637:9;20633:18;20625:26;;20697:9;20691:4;20687:20;20683:1;20672:9;20668:17;20661:47;20725:131;20851:4;20725:131;:::i;:::-;20717:139;;20444:419;;;:::o;20869:332::-;20990:4;21028:2;21017:9;21013:18;21005:26;;21041:71;21109:1;21098:9;21094:17;21085:6;21041:71;:::i;:::-;21122:72;21190:2;21179:9;21175:18;21166:6;21122:72;:::i;:::-;20869:332;;;;;:::o;21207:175::-;21347:27;21343:1;21335:6;21331:14;21324:51;21207:175;:::o;21388:366::-;21530:3;21551:67;21615:2;21610:3;21551:67;:::i;:::-;21544:74;;21627:93;21716:3;21627:93;:::i;:::-;21745:2;21740:3;21736:12;21729:19;;21388:366;;;:::o;21760:419::-;21926:4;21964:2;21953:9;21949:18;21941:26;;22013:9;22007:4;22003:20;21999:1;21988:9;21984:17;21977:47;22041:131;22167:4;22041:131;:::i;:::-;22033:139;;21760:419;;;:::o;22185:147::-;22286:11;22323:3;22308:18;;22185:147;;;;:::o;22338:114::-;;:::o;22458:398::-;22617:3;22638:83;22719:1;22714:3;22638:83;:::i;:::-;22631:90;;22730:93;22819:3;22730:93;:::i;:::-;22848:1;22843:3;22839:11;22832:18;;22458:398;;;:::o;22862:379::-;23046:3;23068:147;23211:3;23068:147;:::i;:::-;23061:154;;23232:3;23225:10;;22862:379;;;:::o;23247:166::-;23387:18;23383:1;23375:6;23371:14;23364:42;23247:166;:::o;23419:366::-;23561:3;23582:67;23646:2;23641:3;23582:67;:::i;:::-;23575:74;;23658:93;23747:3;23658:93;:::i;:::-;23776:2;23771:3;23767:12;23760:19;;23419:366;;;:::o;23791:419::-;23957:4;23995:2;23984:9;23980:18;23972:26;;24044:9;24038:4;24034:20;24030:1;24019:9;24015:17;24008:47;24072:131;24198:4;24072:131;:::i;:::-;24064:139;;23791:419;;;:::o;24216:231::-;24356:34;24352:1;24344:6;24340:14;24333:58;24425:14;24420:2;24412:6;24408:15;24401:39;24216:231;:::o;24453:366::-;24595:3;24616:67;24680:2;24675:3;24616:67;:::i;:::-;24609:74;;24692:93;24781:3;24692:93;:::i;:::-;24810:2;24805:3;24801:12;24794:19;;24453:366;;;:::o;24825:419::-;24991:4;25029:2;25018:9;25014:18;25006:26;;25078:9;25072:4;25068:20;25064:1;25053:9;25049:17;25042:47;25106:131;25232:4;25106:131;:::i;:::-;25098:139;;24825:419;;;:::o;25250:180::-;25298:77;25295:1;25288:88;25395:4;25392:1;25385:15;25419:4;25416:1;25409:15;25436:141;25485:4;25508:3;25500:11;;25531:3;25528:1;25521:14;25565:4;25562:1;25552:18;25544:26;;25436:141;;;:::o;25583:93::-;25620:6;25667:2;25662;25655:5;25651:14;25647:23;25637:33;;25583:93;;;:::o;25682:107::-;25726:8;25776:5;25770:4;25766:16;25745:37;;25682:107;;;;:::o;25795:393::-;25864:6;25914:1;25902:10;25898:18;25937:97;25967:66;25956:9;25937:97;:::i;:::-;26055:39;26085:8;26074:9;26055:39;:::i;:::-;26043:51;;26127:4;26123:9;26116:5;26112:21;26103:30;;26176:4;26166:8;26162:19;26155:5;26152:30;26142:40;;25871:317;;25795:393;;;;;:::o;26194:60::-;26222:3;26243:5;26236:12;;26194:60;;;:::o;26260:142::-;26310:9;26343:53;26361:34;26370:24;26388:5;26370:24;:::i;:::-;26361:34;:::i;:::-;26343:53;:::i;:::-;26330:66;;26260:142;;;:::o;26408:75::-;26451:3;26472:5;26465:12;;26408:75;;;:::o;26489:269::-;26599:39;26630:7;26599:39;:::i;:::-;26660:91;26709:41;26733:16;26709:41;:::i;:::-;26701:6;26694:4;26688:11;26660:91;:::i;:::-;26654:4;26647:105;26565:193;26489:269;;;:::o;26764:73::-;26809:3;26764:73;:::o;26843:189::-;26920:32;;:::i;:::-;26961:65;27019:6;27011;27005:4;26961:65;:::i;:::-;26896:136;26843:189;;:::o;27038:186::-;27098:120;27115:3;27108:5;27105:14;27098:120;;;27169:39;27206:1;27199:5;27169:39;:::i;:::-;27142:1;27135:5;27131:13;27122:22;;27098:120;;;27038:186;;:::o;27230:543::-;27331:2;27326:3;27323:11;27320:446;;;27365:38;27397:5;27365:38;:::i;:::-;27449:29;27467:10;27449:29;:::i;:::-;27439:8;27435:44;27632:2;27620:10;27617:18;27614:49;;;27653:8;27638:23;;27614:49;27676:80;27732:22;27750:3;27732:22;:::i;:::-;27722:8;27718:37;27705:11;27676:80;:::i;:::-;27335:431;;27320:446;27230:543;;;:::o;27779:117::-;27833:8;27883:5;27877:4;27873:16;27852:37;;27779:117;;;;:::o;27902:169::-;27946:6;27979:51;28027:1;28023:6;28015:5;28012:1;28008:13;27979:51;:::i;:::-;27975:56;28060:4;28054;28050:15;28040:25;;27953:118;27902:169;;;;:::o;28076:295::-;28152:4;28298:29;28323:3;28317:4;28298:29;:::i;:::-;28290:37;;28360:3;28357:1;28353:11;28347:4;28344:21;28336:29;;28076:295;;;;:::o;28376:1395::-;28493:37;28526:3;28493:37;:::i;:::-;28595:18;28587:6;28584:30;28581:56;;;28617:18;;:::i;:::-;28581:56;28661:38;28693:4;28687:11;28661:38;:::i;:::-;28746:67;28806:6;28798;28792:4;28746:67;:::i;:::-;28840:1;28864:4;28851:17;;28896:2;28888:6;28885:14;28913:1;28908:618;;;;29570:1;29587:6;29584:77;;;29636:9;29631:3;29627:19;29621:26;29612:35;;29584:77;29687:67;29747:6;29740:5;29687:67;:::i;:::-;29681:4;29674:81;29543:222;28878:887;;28908:618;28960:4;28956:9;28948:6;28944:22;28994:37;29026:4;28994:37;:::i;:::-;29053:1;29067:208;29081:7;29078:1;29075:14;29067:208;;;29160:9;29155:3;29151:19;29145:26;29137:6;29130:42;29211:1;29203:6;29199:14;29189:24;;29258:2;29247:9;29243:18;29230:31;;29104:4;29101:1;29097:12;29092:17;;29067:208;;;29303:6;29294:7;29291:19;29288:179;;;29361:9;29356:3;29352:19;29346:26;29404:48;29446:4;29438:6;29434:17;29423:9;29404:48;:::i;:::-;29396:6;29389:64;29311:156;29288:179;29513:1;29509;29501:6;29497:14;29493:22;29487:4;29480:36;28915:611;;;28878:887;;28468:1303;;;28376:1395;;:::o;29777:174::-;29917:26;29913:1;29905:6;29901:14;29894:50;29777:174;:::o;29957:366::-;30099:3;30120:67;30184:2;30179:3;30120:67;:::i;:::-;30113:74;;30196:93;30285:3;30196:93;:::i;:::-;30314:2;30309:3;30305:12;30298:19;;29957:366;;;:::o;30329:419::-;30495:4;30533:2;30522:9;30518:18;30510:26;;30582:9;30576:4;30572:20;30568:1;30557:9;30553:17;30546:47;30610:131;30736:4;30610:131;:::i;:::-;30602:139;;30329:419;;;:::o;30754:228::-;30894:34;30890:1;30882:6;30878:14;30871:58;30963:11;30958:2;30950:6;30946:15;30939:36;30754:228;:::o;30988:366::-;31130:3;31151:67;31215:2;31210:3;31151:67;:::i;:::-;31144:74;;31227:93;31316:3;31227:93;:::i;:::-;31345:2;31340:3;31336:12;31329:19;;30988:366;;;:::o;31360:419::-;31526:4;31564:2;31553:9;31549:18;31541:26;;31613:9;31607:4;31603:20;31599:1;31588:9;31584:17;31577:47;31641:131;31767:4;31641:131;:::i;:::-;31633:139;;31360:419;;;:::o;31785:148::-;31887:11;31924:3;31909:18;;31785:148;;;;:::o;31939:390::-;32045:3;32073:39;32106:5;32073:39;:::i;:::-;32128:89;32210:6;32205:3;32128:89;:::i;:::-;32121:96;;32226:65;32284:6;32279:3;32272:4;32265:5;32261:16;32226:65;:::i;:::-;32316:6;32311:3;32307:16;32300:23;;32049:280;31939:390;;;;:::o;32335:435::-;32515:3;32537:95;32628:3;32619:6;32537:95;:::i;:::-;32530:102;;32649:95;32740:3;32731:6;32649:95;:::i;:::-;32642:102;;32761:3;32754:10;;32335:435;;;;;:::o;32776:163::-;32916:15;32912:1;32904:6;32900:14;32893:39;32776:163;:::o;32945:366::-;33087:3;33108:67;33172:2;33167:3;33108:67;:::i;:::-;33101:74;;33184:93;33273:3;33184:93;:::i;:::-;33302:2;33297:3;33293:12;33286:19;;32945:366;;;:::o;33317:419::-;33483:4;33521:2;33510:9;33506:18;33498:26;;33570:9;33564:4;33560:20;33556:1;33545:9;33541:17;33534:47;33598:131;33724:4;33598:131;:::i;:::-;33590:139;;33317:419;;;:::o;33742:180::-;33790:77;33787:1;33780:88;33887:4;33884:1;33877:15;33911:4;33908:1;33901:15;33928:233;33967:3;33990:24;34008:5;33990:24;:::i;:::-;33981:33;;34036:66;34029:5;34026:77;34023:103;;34106:18;;:::i;:::-;34023:103;34153:1;34146:5;34142:13;34135:20;;33928:233;;;:::o;34167:225::-;34307:34;34303:1;34295:6;34291:14;34284:58;34376:8;34371:2;34363:6;34359:15;34352:33;34167:225;:::o;34398:366::-;34540:3;34561:67;34625:2;34620:3;34561:67;:::i;:::-;34554:74;;34637:93;34726:3;34637:93;:::i;:::-;34755:2;34750:3;34746:12;34739:19;;34398:366;;;:::o;34770:419::-;34936:4;34974:2;34963:9;34959:18;34951:26;;35023:9;35017:4;35013:20;35009:1;34998:9;34994:17;34987:47;35051:131;35177:4;35051:131;:::i;:::-;35043:139;;34770:419;;;:::o;35195:224::-;35335:34;35331:1;35323:6;35319:14;35312:58;35404:7;35399:2;35391:6;35387:15;35380:32;35195:224;:::o;35425:366::-;35567:3;35588:67;35652:2;35647:3;35588:67;:::i;:::-;35581:74;;35664:93;35753:3;35664:93;:::i;:::-;35782:2;35777:3;35773:12;35766:19;;35425:366;;;:::o;35797:419::-;35963:4;36001:2;35990:9;35986:18;35978:26;;36050:9;36044:4;36040:20;36036:1;36025:9;36021:17;36014:47;36078:131;36204:4;36078:131;:::i;:::-;36070:139;;35797:419;;;:::o;36222:223::-;36362:34;36358:1;36350:6;36346:14;36339:58;36431:6;36426:2;36418:6;36414:15;36407:31;36222:223;:::o;36451:366::-;36593:3;36614:67;36678:2;36673:3;36614:67;:::i;:::-;36607:74;;36690:93;36779:3;36690:93;:::i;:::-;36808:2;36803:3;36799:12;36792:19;;36451:366;;;:::o;36823:419::-;36989:4;37027:2;37016:9;37012:18;37004:26;;37076:9;37070:4;37066:20;37062:1;37051:9;37047:17;37040:47;37104:131;37230:4;37104:131;:::i;:::-;37096:139;;36823:419;;;:::o;37248:182::-;37388:34;37384:1;37376:6;37372:14;37365:58;37248:182;:::o;37436:366::-;37578:3;37599:67;37663:2;37658:3;37599:67;:::i;:::-;37592:74;;37675:93;37764:3;37675:93;:::i;:::-;37793:2;37788:3;37784:12;37777:19;;37436:366;;;:::o;37808:419::-;37974:4;38012:2;38001:9;37997:18;37989:26;;38061:9;38055:4;38051:20;38047:1;38036:9;38032:17;38025:47;38089:131;38215:4;38089:131;:::i;:::-;38081:139;;37808:419;;;:::o;38233:175::-;38373:27;38369:1;38361:6;38357:14;38350:51;38233:175;:::o;38414:366::-;38556:3;38577:67;38641:2;38636:3;38577:67;:::i;:::-;38570:74;;38653:93;38742:3;38653:93;:::i;:::-;38771:2;38766:3;38762:12;38755:19;;38414:366;;;:::o;38786:419::-;38952:4;38990:2;38979:9;38975:18;38967:26;;39039:9;39033:4;39029:20;39025:1;39014:9;39010:17;39003:47;39067:131;39193:4;39067:131;:::i;:::-;39059:139;;38786:419;;;:::o;39211:237::-;39351:34;39347:1;39339:6;39335:14;39328:58;39420:20;39415:2;39407:6;39403:15;39396:45;39211:237;:::o;39454:366::-;39596:3;39617:67;39681:2;39676:3;39617:67;:::i;:::-;39610:74;;39693:93;39782:3;39693:93;:::i;:::-;39811:2;39806:3;39802:12;39795:19;;39454:366;;;:::o;39826:419::-;39992:4;40030:2;40019:9;40015:18;40007:26;;40079:9;40073:4;40069:20;40065:1;40054:9;40050:17;40043:47;40107:131;40233:4;40107:131;:::i;:::-;40099:139;;39826:419;;;:::o;40251:180::-;40299:77;40296:1;40289:88;40396:4;40393:1;40386:15;40420:4;40417:1;40410:15;40437:240;40577:34;40573:1;40565:6;40561:14;40554:58;40646:23;40641:2;40633:6;40629:15;40622:48;40437:240;:::o;40683:366::-;40825:3;40846:67;40910:2;40905:3;40846:67;:::i;:::-;40839:74;;40922:93;41011:3;40922:93;:::i;:::-;41040:2;41035:3;41031:12;41024:19;;40683:366;;;:::o;41055:419::-;41221:4;41259:2;41248:9;41244:18;41236:26;;41308:9;41302:4;41298:20;41294:1;41283:9;41279:17;41272:47;41336:131;41462:4;41336:131;:::i;:::-;41328:139;;41055:419;;;:::o;41480:98::-;41531:6;41565:5;41559:12;41549:22;;41480:98;;;:::o;41584:168::-;41667:11;41701:6;41696:3;41689:19;41741:4;41736:3;41732:14;41717:29;;41584:168;;;;:::o;41758:373::-;41844:3;41872:38;41904:5;41872:38;:::i;:::-;41926:70;41989:6;41984:3;41926:70;:::i;:::-;41919:77;;42005:65;42063:6;42058:3;42051:4;42044:5;42040:16;42005:65;:::i;:::-;42095:29;42117:6;42095:29;:::i;:::-;42090:3;42086:39;42079:46;;41848:283;41758:373;;;;:::o;42137:640::-;42332:4;42370:3;42359:9;42355:19;42347:27;;42384:71;42452:1;42441:9;42437:17;42428:6;42384:71;:::i;:::-;42465:72;42533:2;42522:9;42518:18;42509:6;42465:72;:::i;:::-;42547;42615:2;42604:9;42600:18;42591:6;42547:72;:::i;:::-;42666:9;42660:4;42656:20;42651:2;42640:9;42636:18;42629:48;42694:76;42765:4;42756:6;42694:76;:::i;:::-;42686:84;;42137:640;;;;;;;:::o;42783:141::-;42839:5;42870:6;42864:13;42855:22;;42886:32;42912:5;42886:32;:::i;:::-;42783:141;;;;:::o;42930:349::-;42999:6;43048:2;43036:9;43027:7;43023:23;43019:32;43016:119;;;43054:79;;:::i;:::-;43016:119;43174:1;43199:63;43254:7;43245:6;43234:9;43230:22;43199:63;:::i;:::-;43189:73;;43145:127;42930:349;;;;:::o;43285:194::-;43325:4;43345:20;43363:1;43345:20;:::i;:::-;43340:25;;43379:20;43397:1;43379:20;:::i;:::-;43374:25;;43423:1;43420;43416:9;43408:17;;43447:1;43441:4;43438:11;43435:37;;;43452:18;;:::i;:::-;43435:37;43285:194;;;;:::o;43485:180::-;43533:77;43530:1;43523:88;43630:4;43627:1;43620:15;43654:4;43651:1;43644:15;43671:182;43811:34;43807:1;43799:6;43795:14;43788:58;43671:182;:::o;43859:366::-;44001:3;44022:67;44086:2;44081:3;44022:67;:::i;:::-;44015:74;;44098:93;44187:3;44098:93;:::i;:::-;44216:2;44211:3;44207:12;44200:19;;43859:366;;;:::o;44231:419::-;44397:4;44435:2;44424:9;44420:18;44412:26;;44484:9;44478:4;44474:20;44470:1;44459:9;44455:17;44448:47;44512:131;44638:4;44512:131;:::i;:::-;44504:139;;44231:419;;;:::o;44656:178::-;44796:30;44792:1;44784:6;44780:14;44773:54;44656:178;:::o;44840:366::-;44982:3;45003:67;45067:2;45062:3;45003:67;:::i;:::-;44996:74;;45079:93;45168:3;45079:93;:::i;:::-;45197:2;45192:3;45188:12;45181:19;;44840:366;;;:::o;45212:419::-;45378:4;45416:2;45405:9;45401:18;45393:26;;45465:9;45459:4;45455:20;45451:1;45440:9;45436:17;45429:47;45493:131;45619:4;45493:131;:::i;:::-;45485:139;;45212:419;;;:::o

Swarm Source

ipfs://084a423aa417ac885a53b196b1c7baece5bd58750e26e5a2cb96d92beb30c224
[ 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.