ETH Price: $3,058.88 (+1.15%)
Gas: 3 Gwei

Token

XHamster (XH)
 

Overview

Max Total Supply

0 XH

Holders

998

Market

Volume (24H)

0.0607 ETH

Min Price (24H)

$91.15 @ 0.029800 ETH

Max Price (24H)

$94.52 @ 0.030900 ETH
Balance
1 XH
0x13e0011b19816636bbbcf2eba11d075ef69544f0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

xHamster NFT is a one-of-kind collection developed by one of the world’s leading services in the adult industry xHamster.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XHamster

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-19
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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 10, 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 * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.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 `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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/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.8.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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

// File: contracts/XHamster-v3.sol

// Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.12;





contract XHamster is ERC721, Ownable, IERC2981 {
    enum State {
        Closed,
        Whitelist,
        Public,
        SoldOut
    }

    struct RoyaltyInfo {
        address recipient;
        uint256 amount;
    }

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 private _mintPrice = 0.08 ether;
    uint256 private _maxCount = 10000;
    uint256 private _whiteListTime = 1671451200;
    uint256 private _publicTime = 1671465600;
    uint256 private constant _feeDenominator = 10000;
    address private _mintWallet;
    RoyaltyInfo private _royalties;

    constructor() ERC721("XHamster", "XH") {
        _setRoyalties(owner(), 500);
    }

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

    function mintNFT(address recipient, uint256 count)
        external
        payable
        returns (uint256)
    {
        _checkConditions(recipient, count);
        uint256 newItemId;
        for (uint256 i = 0; i < count; i++) {
            _tokenIds.increment();

            newItemId = _tokenIds.current();
            _safeMint(recipient, newItemId);
        }

        return newItemId;
    }


    function _checkConditions(address recipient, uint256 count) internal {
        State state = getState();
        require(count > 0);
        require(state != State.SoldOut, "Sold out");
        require(
            state == State.Whitelist || state == State.Public || (state != State.SoldOut && recipient == _mintWallet),
            "Mint is not available now"
        );
        if (recipient != _mintWallet) {
            if (state == State.Whitelist) {
                require(count <= 5, "Count exceeding max. limit");
                require(
                    balanceOf(recipient) + count <= 5,
                    "Minting is limited to 5 tokens while whitelist sales are in progress"
                );
            } else if (state == State.Public) {
                require(count <= 100, "Count exceeding max. limit");
            }
            require(msg.value >= getPrice() * count, "Insufficient funds");
        }
        require(
            _tokenIds.current() + count <= _maxCount,
            "NFT tokens limit exceeded"
        );
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return "ipfs://QmV4DkyK3VTbNVVxKrGSXPtQ17bu837L3LgRpXXPFxkw4U/";
    }

    function setMintWallet(address mintWallet) public onlyOwner {
        _mintWallet = mintWallet;
    }

    function setPeriods(uint256 whiteListTime, uint256 publicTime)
        public
        onlyOwner
    {
        _whiteListTime = whiteListTime;
        _publicTime = publicTime;
    }

    function setPrice(uint price) public onlyOwner {
        _mintPrice = price;
    }

    function getPrice() public view returns (uint256) {
        return
            getState() == State.Whitelist
                ? uint256(80 * (_mintPrice / 100))
                : _mintPrice;
    }

    function getState() public view returns (State) {
        if (_tokenIds.current() >= _maxCount) {
            return State.SoldOut;
        }
        
        if (block.timestamp >= _publicTime) {
            return State.Public;
        } 
        
        if (block.timestamp >= _whiteListTime) {
            return State.Whitelist;
        }

        return State.Closed;
    }

    function royaltyInfo(uint256, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        royaltyAmount = (salePrice * _royalties.amount) / _feeDenominator;
        return (_royalties.recipient, royaltyAmount);
    }

    function _setRoyalties(address recipient, uint256 value) internal {
        require(value >= 0 && value <= _feeDenominator, "ERC2981: Too high");
        _royalties = RoyaltyInfo(recipient, uint24(value));
    }

    function getTokenCount() public view returns (uint256) {
        return _tokenIds.current();
    }

    function getBalance() public view returns (uint) {
        return address(this).balance;
    }

    function withdrawMoney() public onlyOwner {
        uint256 amount = getBalance();
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getState","outputs":[{"internalType":"enum XHamster.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","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":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mintWallet","type":"address"}],"name":"setMintWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"whiteListTime","type":"uint256"},{"internalType":"uint256","name":"publicTime","type":"uint256"}],"name":"setPeriods","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e0800006008556127106009556363a05240600a556363a08a80600b553480156200003357600080fd5b506040518060400160405280600881526020017f5848616d737465720000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f58480000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b8929190620002f5565b508060019080519060200190620000d1929190620002f5565b505050620000f4620000e86200011d60201b60201c565b6200012560201b60201c565b6200011762000108620001eb60201b60201c565b6101f46200021560201b60201c565b6200048d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081101580156200022957506127108111155b6200026b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002629062000406565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600d60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050505050565b828054620003039062000457565b90600052602060002090601f01602090048101928262000327576000855562000373565b82601f106200034257805160ff191683800117855562000373565b8280016001018555821562000373579182015b828111156200037257825182559160200191906001019062000355565b5b50905062000382919062000386565b5090565b5b80821115620003a157600081600090555060010162000387565b5090565b600082825260208201905092915050565b7f455243323938313a20546f6f2068696768000000000000000000000000000000600082015250565b6000620003ee601183620003a5565b9150620003fb82620003b6565b602082019050919050565b600060208201905081810360008301526200042181620003df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200047057607f821691505b6020821081141562000487576200048662000428565b5b50919050565b6139b9806200049d6000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d157806398d5fdca1161008a578063b88d4fde11610064578063b88d4fde14610562578063c87b56dd1461058b578063e985e9c5146105c8578063f2fde38b1461060557610181565b806398d5fdca146104f7578063a22cb46514610522578063ac4460021461054b57610181565b8063715018a61461040d578063767ac3691461042457806378a895671461044d5780638da5cb5b1461047857806391b7f5ed146104a357806395d89b41146104cc57610181565b806323b872dd1161013e5780633c168eab116101185780633c168eab1461033a57806342842e0e1461036a5780636352211e1461039357806370a08231146103d057610181565b806323b872dd146102aa5780632a55205a146102d3578063375480501461031157610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806312065fe0146102545780631865c57d1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612569565b61062e565b6040516101ba91906125b1565b60405180910390f35b3480156101cf57600080fd5b506101d86106a8565b6040516101e59190612665565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906126bd565b61073a565b604051610222919061272b565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612772565b610780565b005b34801561026057600080fd5b50610269610898565b60405161027691906127c1565b60405180910390f35b34801561028b57600080fd5b506102946108a0565b6040516102a19190612853565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc919061286e565b6108e9565b005b3480156102df57600080fd5b506102fa60048036038101906102f591906128c1565b610949565b604051610308929190612901565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061292a565b61099b565b005b610354600480360381019061034f9190612772565b6109e7565b60405161036191906127c1565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061286e565b610a41565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906126bd565b610a61565b6040516103c7919061272b565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f2919061292a565b610ae8565b60405161040491906127c1565b60405180910390f35b34801561041957600080fd5b50610422610ba0565b005b34801561043057600080fd5b5061044b600480360381019061044691906128c1565b610bb4565b005b34801561045957600080fd5b50610462610bce565b60405161046f91906127c1565b60405180910390f35b34801561048457600080fd5b5061048d610bdf565b60405161049a919061272b565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906126bd565b610c09565b005b3480156104d857600080fd5b506104e1610c1b565b6040516104ee9190612665565b60405180910390f35b34801561050357600080fd5b5061050c610cad565b60405161051991906127c1565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612983565b610d0b565b005b34801561055757600080fd5b50610560610d21565b005b34801561056e57600080fd5b5061058960048036038101906105849190612af8565b610de5565b005b34801561059757600080fd5b506105b260048036038101906105ad91906126bd565b610e47565b6040516105bf9190612665565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190612b7b565b610eaf565b6040516105fc91906125b1565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061292a565b610f43565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a082610fc7565b5b9050919050565b6060600080546106b790612bea565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612bea565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b6000610745826110a9565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078b82610a61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390612c8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661081b6110f4565b73ffffffffffffffffffffffffffffffffffffffff16148061084a5750610849816108446110f4565b610eaf565b5b610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090612d20565b60405180910390fd5b61089383836110fc565b505050565b600047905090565b60006009546108af60076111b5565b106108bd57600390506108e6565b600b5442106108cf57600290506108e6565b600a5442106108e157600190506108e6565b600090505b90565b6108fa6108f46110f4565b826111c3565b610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612db2565b60405180910390fd5b610944838383611258565b505050565b600080612710600d60010154846109609190612e01565b61096a9190612e8a565b9050600d60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691509250929050565b6109a3611552565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006109f383836115d0565b600080600090505b83811015610a3657610a0d60076119b7565b610a1760076111b5565b9150610a2385836119cd565b8080610a2e90612ebb565b9150506109fb565b508091505092915050565b610a5c83838360405180602001604052806000815250610de5565b505050565b600080610a6d836119eb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690612f50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090612fe2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba8611552565b610bb26000611a28565b565b610bbc611552565b81600a8190555080600b819055505050565b6000610bda60076111b5565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c11611552565b8060088190555050565b606060018054610c2a90612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5690612bea565b8015610ca35780601f10610c7857610100808354040283529160200191610ca3565b820191906000526020600020905b815481529060010190602001808311610c8657829003601f168201915b5050505050905090565b600060016003811115610cc357610cc26127dc565b5b610ccb6108a0565b6003811115610cdd57610cdc6127dc565b5b14610cea57600854610d06565b6064600854610cf99190612e8a565b6050610d059190612e01565b5b905090565b610d1d610d166110f4565b8383611aee565b5050565b610d29611552565b6000610d33610898565b905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610d5b90613033565b60006040518083038185875af1925050503d8060008114610d98576040519150601f19603f3d011682016040523d82523d6000602084013e610d9d565b606091505b5050905080610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890613094565b60405180910390fd5b5050565b610df6610df06110f4565b836111c3565b610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90612db2565b60405180910390fd5b610e4184848484611c5b565b50505050565b6060610e52826110a9565b6000610e5c611cb7565b90506000815111610e7c5760405180602001604052806000815250610ea7565b80610e8684611cd7565b604051602001610e979291906130f0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f4b611552565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613186565b60405180910390fd5b610fc481611a28565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061109257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110a257506110a182611daf565b5b9050919050565b6110b281611e19565b6110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612f50565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661116f83610a61565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806111cf83610a61565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061121157506112108185610eaf565b5b8061124f57508373ffffffffffffffffffffffffffffffffffffffff166112378461073a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661127882610a61565b73ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906132aa565b60405180910390fd5b61134b8383836001611e5a565b8273ffffffffffffffffffffffffffffffffffffffff1661136b82610a61565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613218565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461154d8383836001611f80565b505050565b61155a6110f4565b73ffffffffffffffffffffffffffffffffffffffff16611578610bdf565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613316565b60405180910390fd5b565b60006115da6108a0565b9050600082116115e957600080fd5b6003808111156115fc576115fb6127dc565b5b81600381111561160f5761160e6127dc565b5b1415611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613382565b60405180910390fd5b60016003811115611664576116636127dc565b5b816003811115611677576116766127dc565b5b14806116a7575060026003811115611692576116916127dc565b5b8160038111156116a5576116a46127dc565b5b145b8061172f57506003808111156116c0576116bf6127dc565b5b8160038111156116d3576116d26127dc565b5b1415801561172e5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b5b61176e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611765906133ee565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461195957600160038111156117d7576117d66127dc565b5b8160038111156117ea576117e96127dc565b5b1415611890576005821115611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b9061345a565b60405180910390fd5b60058261184085610ae8565b61184a919061347a565b111561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613568565b60405180910390fd5b611903565b600260038111156118a4576118a36127dc565b5b8160038111156118b7576118b66127dc565b5b1415611902576064821115611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f89061345a565b60405180910390fd5b5b5b8161190c610cad565b6119169190612e01565b341015611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f906135d4565b60405180910390fd5b5b6009548261196760076111b5565b611971919061347a565b11156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613640565b60405180910390fd5b505050565b6001816000016000828254019250508190555050565b6119e7828260405180602001604052806000815250611f86565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906136ac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c4e91906125b1565b60405180910390a3505050565b611c66848484611258565b611c7284848484611fe1565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061373e565b60405180910390fd5b50505050565b606060405180606001604052806036815260200161394e60369139905090565b606060006001611ce684612169565b01905060008167ffffffffffffffff811115611d0557611d046129cd565b5b6040519080825280601f01601f191660200182016040528015611d375781602001600182028036833780820191505090505b509050600082602001820190505b600115611da4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d8e57611d8d612e5b565b5b0494506000851415611d9f57611da4565b611d45565b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611e3b836119eb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115611f7a57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611eee5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee6919061375e565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f795780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f71919061347a565b925050819055505b5b50505050565b50505050565b611f9083836122bc565b611f9d6000848484611fe1565b611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd39061373e565b60405180910390fd5b505050565b60006120028473ffffffffffffffffffffffffffffffffffffffff166124da565b1561215c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261202b6110f4565b8786866040518563ffffffff1660e01b815260040161204d94939291906137e7565b6020604051808303816000875af192505050801561208957506040513d601f19601f820116820180604052508101906120869190613848565b60015b61210c573d80600081146120b9576040519150601f19603f3d011682016040523d82523d6000602084013e6120be565b606091505b50600081511415612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061373e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612161565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121c7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121bd576121bc612e5b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612204576d04ee2d6d415b85acef810000000083816121fa576121f9612e5b565b5b0492506020810190505b662386f26fc10000831061223357662386f26fc10000838161222957612228612e5b565b5b0492506010810190505b6305f5e100831061225c576305f5e100838161225257612251612e5b565b5b0492506008810190505b612710831061228157612710838161227757612276612e5b565b5b0492506004810190505b606483106122a4576064838161229a57612299612e5b565b5b0492506002810190505b600a83106122b3576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612323906138c1565b60405180910390fd5b61233581611e19565b15612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c9061392d565b60405180910390fd5b612383600083836001611e5a565b61238c81611e19565b156123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c39061392d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124d6600083836001611f80565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61254681612511565b811461255157600080fd5b50565b6000813590506125638161253d565b92915050565b60006020828403121561257f5761257e612507565b5b600061258d84828501612554565b91505092915050565b60008115159050919050565b6125ab81612596565b82525050565b60006020820190506125c660008301846125a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126065780820151818401526020810190506125eb565b83811115612615576000848401525b50505050565b6000601f19601f8301169050919050565b6000612637826125cc565b61264181856125d7565b93506126518185602086016125e8565b61265a8161261b565b840191505092915050565b6000602082019050818103600083015261267f818461262c565b905092915050565b6000819050919050565b61269a81612687565b81146126a557600080fd5b50565b6000813590506126b781612691565b92915050565b6000602082840312156126d3576126d2612507565b5b60006126e1848285016126a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612715826126ea565b9050919050565b6127258161270a565b82525050565b6000602082019050612740600083018461271c565b92915050565b61274f8161270a565b811461275a57600080fd5b50565b60008135905061276c81612746565b92915050565b6000806040838503121561278957612788612507565b5b60006127978582860161275d565b92505060206127a8858286016126a8565b9150509250929050565b6127bb81612687565b82525050565b60006020820190506127d660008301846127b2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061281c5761281b6127dc565b5b50565b600081905061282d8261280b565b919050565b600061283d8261281f565b9050919050565b61284d81612832565b82525050565b60006020820190506128686000830184612844565b92915050565b60008060006060848603121561288757612886612507565b5b60006128958682870161275d565b93505060206128a68682870161275d565b92505060406128b7868287016126a8565b9150509250925092565b600080604083850312156128d8576128d7612507565b5b60006128e6858286016126a8565b92505060206128f7858286016126a8565b9150509250929050565b6000604082019050612916600083018561271c565b61292360208301846127b2565b9392505050565b6000602082840312156129405761293f612507565b5b600061294e8482850161275d565b91505092915050565b61296081612596565b811461296b57600080fd5b50565b60008135905061297d81612957565b92915050565b6000806040838503121561299a57612999612507565b5b60006129a88582860161275d565b92505060206129b98582860161296e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a058261261b565b810181811067ffffffffffffffff82111715612a2457612a236129cd565b5b80604052505050565b6000612a376124fd565b9050612a4382826129fc565b919050565b600067ffffffffffffffff821115612a6357612a626129cd565b5b612a6c8261261b565b9050602081019050919050565b82818337600083830152505050565b6000612a9b612a9684612a48565b612a2d565b905082815260208101848484011115612ab757612ab66129c8565b5b612ac2848285612a79565b509392505050565b600082601f830112612adf57612ade6129c3565b5b8135612aef848260208601612a88565b91505092915050565b60008060008060808587031215612b1257612b11612507565b5b6000612b208782880161275d565b9450506020612b318782880161275d565b9350506040612b42878288016126a8565b925050606085013567ffffffffffffffff811115612b6357612b6261250c565b5b612b6f87828801612aca565b91505092959194509250565b60008060408385031215612b9257612b91612507565b5b6000612ba08582860161275d565b9250506020612bb18582860161275d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0257607f821691505b60208210811415612c1657612c15612bbb565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c786021836125d7565b9150612c8382612c1c565b604082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612d0a603d836125d7565b9150612d1582612cae565b604082019050919050565b60006020820190508181036000830152612d3981612cfd565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d9c602d836125d7565b9150612da782612d40565b604082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e0c82612687565b9150612e1783612687565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5057612e4f612dd2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e9582612687565b9150612ea083612687565b925082612eb057612eaf612e5b565b5b828204905092915050565b6000612ec682612687565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef957612ef8612dd2565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f3a6018836125d7565b9150612f4582612f04565b602082019050919050565b60006020820190508181036000830152612f6981612f2d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fcc6029836125d7565b9150612fd782612f70565b604082019050919050565b60006020820190508181036000830152612ffb81612fbf565b9050919050565b600081905092915050565b50565b600061301d600083613002565b91506130288261300d565b600082019050919050565b600061303e82613010565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061307e6010836125d7565b915061308982613048565b602082019050919050565b600060208201905081810360008301526130ad81613071565b9050919050565b600081905092915050565b60006130ca826125cc565b6130d481856130b4565b93506130e48185602086016125e8565b80840191505092915050565b60006130fc82856130bf565b915061310882846130bf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131706026836125d7565b915061317b82613114565b604082019050919050565b6000602082019050818103600083015261319f81613163565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006132026025836125d7565b915061320d826131a6565b604082019050919050565b60006020820190508181036000830152613231816131f5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132946024836125d7565b915061329f82613238565b604082019050919050565b600060208201905081810360008301526132c381613287565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133006020836125d7565b915061330b826132ca565b602082019050919050565b6000602082019050818103600083015261332f816132f3565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b600061336c6008836125d7565b915061337782613336565b602082019050919050565b6000602082019050818103600083015261339b8161335f565b9050919050565b7f4d696e74206973206e6f7420617661696c61626c65206e6f7700000000000000600082015250565b60006133d86019836125d7565b91506133e3826133a2565b602082019050919050565b60006020820190508181036000830152613407816133cb565b9050919050565b7f436f756e7420657863656564696e67206d61782e206c696d6974000000000000600082015250565b6000613444601a836125d7565b915061344f8261340e565b602082019050919050565b6000602082019050818103600083015261347381613437565b9050919050565b600061348582612687565b915061349083612687565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c5576134c4612dd2565b5b828201905092915050565b7f4d696e74696e67206973206c696d6974656420746f203520746f6b656e73207760008201527f68696c652077686974656c6973742073616c65732061726520696e2070726f6760208201527f7265737300000000000000000000000000000000000000000000000000000000604082015250565b60006135526044836125d7565b915061355d826134d0565b606082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006135be6012836125d7565b91506135c982613588565b602082019050919050565b600060208201905081810360008301526135ed816135b1565b9050919050565b7f4e465420746f6b656e73206c696d697420657863656564656400000000000000600082015250565b600061362a6019836125d7565b9150613635826135f4565b602082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136966019836125d7565b91506136a182613660565b602082019050919050565b600060208201905081810360008301526136c581613689565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137286032836125d7565b9150613733826136cc565b604082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b600061376982612687565b915061377483612687565b92508282101561378757613786612dd2565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006137b982613792565b6137c3818561379d565b93506137d38185602086016125e8565b6137dc8161261b565b840191505092915050565b60006080820190506137fc600083018761271c565b613809602083018661271c565b61381660408301856127b2565b818103606083015261382881846137ae565b905095945050505050565b6000815190506138428161253d565b92915050565b60006020828403121561385e5761385d612507565b5b600061386c84828501613833565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138ab6020836125d7565b91506138b682613875565b602082019050919050565b600060208201905081810360008301526138da8161389e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613917601c836125d7565b9150613922826138e1565b602082019050919050565b600060208201905081810360008301526139468161390a565b905091905056fe697066733a2f2f516d5634446b794b335654624e5656784b72475358507451313762753833374c334c67527058585046786b7734552fa2646970667358221220bf807bae786bc8655cfb06bbb182d75bf78c9c732dc740b6abfbe379c1f36a3264736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d157806398d5fdca1161008a578063b88d4fde11610064578063b88d4fde14610562578063c87b56dd1461058b578063e985e9c5146105c8578063f2fde38b1461060557610181565b806398d5fdca146104f7578063a22cb46514610522578063ac4460021461054b57610181565b8063715018a61461040d578063767ac3691461042457806378a895671461044d5780638da5cb5b1461047857806391b7f5ed146104a357806395d89b41146104cc57610181565b806323b872dd1161013e5780633c168eab116101185780633c168eab1461033a57806342842e0e1461036a5780636352211e1461039357806370a08231146103d057610181565b806323b872dd146102aa5780632a55205a146102d3578063375480501461031157610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806312065fe0146102545780631865c57d1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612569565b61062e565b6040516101ba91906125b1565b60405180910390f35b3480156101cf57600080fd5b506101d86106a8565b6040516101e59190612665565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906126bd565b61073a565b604051610222919061272b565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612772565b610780565b005b34801561026057600080fd5b50610269610898565b60405161027691906127c1565b60405180910390f35b34801561028b57600080fd5b506102946108a0565b6040516102a19190612853565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc919061286e565b6108e9565b005b3480156102df57600080fd5b506102fa60048036038101906102f591906128c1565b610949565b604051610308929190612901565b60405180910390f35b34801561031d57600080fd5b506103386004803603810190610333919061292a565b61099b565b005b610354600480360381019061034f9190612772565b6109e7565b60405161036191906127c1565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061286e565b610a41565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906126bd565b610a61565b6040516103c7919061272b565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f2919061292a565b610ae8565b60405161040491906127c1565b60405180910390f35b34801561041957600080fd5b50610422610ba0565b005b34801561043057600080fd5b5061044b600480360381019061044691906128c1565b610bb4565b005b34801561045957600080fd5b50610462610bce565b60405161046f91906127c1565b60405180910390f35b34801561048457600080fd5b5061048d610bdf565b60405161049a919061272b565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906126bd565b610c09565b005b3480156104d857600080fd5b506104e1610c1b565b6040516104ee9190612665565b60405180910390f35b34801561050357600080fd5b5061050c610cad565b60405161051991906127c1565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190612983565b610d0b565b005b34801561055757600080fd5b50610560610d21565b005b34801561056e57600080fd5b5061058960048036038101906105849190612af8565b610de5565b005b34801561059757600080fd5b506105b260048036038101906105ad91906126bd565b610e47565b6040516105bf9190612665565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190612b7b565b610eaf565b6040516105fc91906125b1565b60405180910390f35b34801561061157600080fd5b5061062c6004803603810190610627919061292a565b610f43565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a157506106a082610fc7565b5b9050919050565b6060600080546106b790612bea565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612bea565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b6000610745826110a9565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078b82610a61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390612c8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661081b6110f4565b73ffffffffffffffffffffffffffffffffffffffff16148061084a5750610849816108446110f4565b610eaf565b5b610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090612d20565b60405180910390fd5b61089383836110fc565b505050565b600047905090565b60006009546108af60076111b5565b106108bd57600390506108e6565b600b5442106108cf57600290506108e6565b600a5442106108e157600190506108e6565b600090505b90565b6108fa6108f46110f4565b826111c3565b610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612db2565b60405180910390fd5b610944838383611258565b505050565b600080612710600d60010154846109609190612e01565b61096a9190612e8a565b9050600d60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691509250929050565b6109a3611552565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006109f383836115d0565b600080600090505b83811015610a3657610a0d60076119b7565b610a1760076111b5565b9150610a2385836119cd565b8080610a2e90612ebb565b9150506109fb565b508091505092915050565b610a5c83838360405180602001604052806000815250610de5565b505050565b600080610a6d836119eb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690612f50565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090612fe2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba8611552565b610bb26000611a28565b565b610bbc611552565b81600a8190555080600b819055505050565b6000610bda60076111b5565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c11611552565b8060088190555050565b606060018054610c2a90612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5690612bea565b8015610ca35780601f10610c7857610100808354040283529160200191610ca3565b820191906000526020600020905b815481529060010190602001808311610c8657829003601f168201915b5050505050905090565b600060016003811115610cc357610cc26127dc565b5b610ccb6108a0565b6003811115610cdd57610cdc6127dc565b5b14610cea57600854610d06565b6064600854610cf99190612e8a565b6050610d059190612e01565b5b905090565b610d1d610d166110f4565b8383611aee565b5050565b610d29611552565b6000610d33610898565b905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610d5b90613033565b60006040518083038185875af1925050503d8060008114610d98576040519150601f19603f3d011682016040523d82523d6000602084013e610d9d565b606091505b5050905080610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890613094565b60405180910390fd5b5050565b610df6610df06110f4565b836111c3565b610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90612db2565b60405180910390fd5b610e4184848484611c5b565b50505050565b6060610e52826110a9565b6000610e5c611cb7565b90506000815111610e7c5760405180602001604052806000815250610ea7565b80610e8684611cd7565b604051602001610e979291906130f0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f4b611552565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613186565b60405180910390fd5b610fc481611a28565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061109257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110a257506110a182611daf565b5b9050919050565b6110b281611e19565b6110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612f50565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661116f83610a61565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806111cf83610a61565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061121157506112108185610eaf565b5b8061124f57508373ffffffffffffffffffffffffffffffffffffffff166112378461073a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661127882610a61565b73ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613218565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906132aa565b60405180910390fd5b61134b8383836001611e5a565b8273ffffffffffffffffffffffffffffffffffffffff1661136b82610a61565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613218565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461154d8383836001611f80565b505050565b61155a6110f4565b73ffffffffffffffffffffffffffffffffffffffff16611578610bdf565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613316565b60405180910390fd5b565b60006115da6108a0565b9050600082116115e957600080fd5b6003808111156115fc576115fb6127dc565b5b81600381111561160f5761160e6127dc565b5b1415611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613382565b60405180910390fd5b60016003811115611664576116636127dc565b5b816003811115611677576116766127dc565b5b14806116a7575060026003811115611692576116916127dc565b5b8160038111156116a5576116a46127dc565b5b145b8061172f57506003808111156116c0576116bf6127dc565b5b8160038111156116d3576116d26127dc565b5b1415801561172e5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b5b61176e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611765906133ee565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461195957600160038111156117d7576117d66127dc565b5b8160038111156117ea576117e96127dc565b5b1415611890576005821115611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b9061345a565b60405180910390fd5b60058261184085610ae8565b61184a919061347a565b111561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613568565b60405180910390fd5b611903565b600260038111156118a4576118a36127dc565b5b8160038111156118b7576118b66127dc565b5b1415611902576064821115611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f89061345a565b60405180910390fd5b5b5b8161190c610cad565b6119169190612e01565b341015611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f906135d4565b60405180910390fd5b5b6009548261196760076111b5565b611971919061347a565b11156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613640565b60405180910390fd5b505050565b6001816000016000828254019250508190555050565b6119e7828260405180602001604052806000815250611f86565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906136ac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c4e91906125b1565b60405180910390a3505050565b611c66848484611258565b611c7284848484611fe1565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061373e565b60405180910390fd5b50505050565b606060405180606001604052806036815260200161394e60369139905090565b606060006001611ce684612169565b01905060008167ffffffffffffffff811115611d0557611d046129cd565b5b6040519080825280601f01601f191660200182016040528015611d375781602001600182028036833780820191505090505b509050600082602001820190505b600115611da4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611d8e57611d8d612e5b565b5b0494506000851415611d9f57611da4565b611d45565b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611e3b836119eb565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115611f7a57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611eee5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee6919061375e565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f795780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f71919061347a565b925050819055505b5b50505050565b50505050565b611f9083836122bc565b611f9d6000848484611fe1565b611fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd39061373e565b60405180910390fd5b505050565b60006120028473ffffffffffffffffffffffffffffffffffffffff166124da565b1561215c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261202b6110f4565b8786866040518563ffffffff1660e01b815260040161204d94939291906137e7565b6020604051808303816000875af192505050801561208957506040513d601f19601f820116820180604052508101906120869190613848565b60015b61210c573d80600081146120b9576040519150601f19603f3d011682016040523d82523d6000602084013e6120be565b606091505b50600081511415612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb9061373e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612161565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121c7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121bd576121bc612e5b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612204576d04ee2d6d415b85acef810000000083816121fa576121f9612e5b565b5b0492506020810190505b662386f26fc10000831061223357662386f26fc10000838161222957612228612e5b565b5b0492506010810190505b6305f5e100831061225c576305f5e100838161225257612251612e5b565b5b0492506008810190505b612710831061228157612710838161227757612276612e5b565b5b0492506004810190505b606483106122a4576064838161229a57612299612e5b565b5b0492506002810190505b600a83106122b3576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612323906138c1565b60405180910390fd5b61233581611e19565b15612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c9061392d565b60405180910390fd5b612383600083836001611e5a565b61238c81611e19565b156123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c39061392d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124d6600083836001611f80565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61254681612511565b811461255157600080fd5b50565b6000813590506125638161253d565b92915050565b60006020828403121561257f5761257e612507565b5b600061258d84828501612554565b91505092915050565b60008115159050919050565b6125ab81612596565b82525050565b60006020820190506125c660008301846125a2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126065780820151818401526020810190506125eb565b83811115612615576000848401525b50505050565b6000601f19601f8301169050919050565b6000612637826125cc565b61264181856125d7565b93506126518185602086016125e8565b61265a8161261b565b840191505092915050565b6000602082019050818103600083015261267f818461262c565b905092915050565b6000819050919050565b61269a81612687565b81146126a557600080fd5b50565b6000813590506126b781612691565b92915050565b6000602082840312156126d3576126d2612507565b5b60006126e1848285016126a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612715826126ea565b9050919050565b6127258161270a565b82525050565b6000602082019050612740600083018461271c565b92915050565b61274f8161270a565b811461275a57600080fd5b50565b60008135905061276c81612746565b92915050565b6000806040838503121561278957612788612507565b5b60006127978582860161275d565b92505060206127a8858286016126a8565b9150509250929050565b6127bb81612687565b82525050565b60006020820190506127d660008301846127b2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061281c5761281b6127dc565b5b50565b600081905061282d8261280b565b919050565b600061283d8261281f565b9050919050565b61284d81612832565b82525050565b60006020820190506128686000830184612844565b92915050565b60008060006060848603121561288757612886612507565b5b60006128958682870161275d565b93505060206128a68682870161275d565b92505060406128b7868287016126a8565b9150509250925092565b600080604083850312156128d8576128d7612507565b5b60006128e6858286016126a8565b92505060206128f7858286016126a8565b9150509250929050565b6000604082019050612916600083018561271c565b61292360208301846127b2565b9392505050565b6000602082840312156129405761293f612507565b5b600061294e8482850161275d565b91505092915050565b61296081612596565b811461296b57600080fd5b50565b60008135905061297d81612957565b92915050565b6000806040838503121561299a57612999612507565b5b60006129a88582860161275d565b92505060206129b98582860161296e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a058261261b565b810181811067ffffffffffffffff82111715612a2457612a236129cd565b5b80604052505050565b6000612a376124fd565b9050612a4382826129fc565b919050565b600067ffffffffffffffff821115612a6357612a626129cd565b5b612a6c8261261b565b9050602081019050919050565b82818337600083830152505050565b6000612a9b612a9684612a48565b612a2d565b905082815260208101848484011115612ab757612ab66129c8565b5b612ac2848285612a79565b509392505050565b600082601f830112612adf57612ade6129c3565b5b8135612aef848260208601612a88565b91505092915050565b60008060008060808587031215612b1257612b11612507565b5b6000612b208782880161275d565b9450506020612b318782880161275d565b9350506040612b42878288016126a8565b925050606085013567ffffffffffffffff811115612b6357612b6261250c565b5b612b6f87828801612aca565b91505092959194509250565b60008060408385031215612b9257612b91612507565b5b6000612ba08582860161275d565b9250506020612bb18582860161275d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0257607f821691505b60208210811415612c1657612c15612bbb565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c786021836125d7565b9150612c8382612c1c565b604082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612d0a603d836125d7565b9150612d1582612cae565b604082019050919050565b60006020820190508181036000830152612d3981612cfd565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d9c602d836125d7565b9150612da782612d40565b604082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e0c82612687565b9150612e1783612687565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e5057612e4f612dd2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e9582612687565b9150612ea083612687565b925082612eb057612eaf612e5b565b5b828204905092915050565b6000612ec682612687565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef957612ef8612dd2565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f3a6018836125d7565b9150612f4582612f04565b602082019050919050565b60006020820190508181036000830152612f6981612f2d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fcc6029836125d7565b9150612fd782612f70565b604082019050919050565b60006020820190508181036000830152612ffb81612fbf565b9050919050565b600081905092915050565b50565b600061301d600083613002565b91506130288261300d565b600082019050919050565b600061303e82613010565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061307e6010836125d7565b915061308982613048565b602082019050919050565b600060208201905081810360008301526130ad81613071565b9050919050565b600081905092915050565b60006130ca826125cc565b6130d481856130b4565b93506130e48185602086016125e8565b80840191505092915050565b60006130fc82856130bf565b915061310882846130bf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131706026836125d7565b915061317b82613114565b604082019050919050565b6000602082019050818103600083015261319f81613163565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006132026025836125d7565b915061320d826131a6565b604082019050919050565b60006020820190508181036000830152613231816131f5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006132946024836125d7565b915061329f82613238565b604082019050919050565b600060208201905081810360008301526132c381613287565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133006020836125d7565b915061330b826132ca565b602082019050919050565b6000602082019050818103600083015261332f816132f3565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b600061336c6008836125d7565b915061337782613336565b602082019050919050565b6000602082019050818103600083015261339b8161335f565b9050919050565b7f4d696e74206973206e6f7420617661696c61626c65206e6f7700000000000000600082015250565b60006133d86019836125d7565b91506133e3826133a2565b602082019050919050565b60006020820190508181036000830152613407816133cb565b9050919050565b7f436f756e7420657863656564696e67206d61782e206c696d6974000000000000600082015250565b6000613444601a836125d7565b915061344f8261340e565b602082019050919050565b6000602082019050818103600083015261347381613437565b9050919050565b600061348582612687565b915061349083612687565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c5576134c4612dd2565b5b828201905092915050565b7f4d696e74696e67206973206c696d6974656420746f203520746f6b656e73207760008201527f68696c652077686974656c6973742073616c65732061726520696e2070726f6760208201527f7265737300000000000000000000000000000000000000000000000000000000604082015250565b60006135526044836125d7565b915061355d826134d0565b606082019050919050565b6000602082019050818103600083015261358181613545565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006135be6012836125d7565b91506135c982613588565b602082019050919050565b600060208201905081810360008301526135ed816135b1565b9050919050565b7f4e465420746f6b656e73206c696d697420657863656564656400000000000000600082015250565b600061362a6019836125d7565b9150613635826135f4565b602082019050919050565b600060208201905081810360008301526136598161361d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136966019836125d7565b91506136a182613660565b602082019050919050565b600060208201905081810360008301526136c581613689565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137286032836125d7565b9150613733826136cc565b604082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b600061376982612687565b915061377483612687565b92508282101561378757613786612dd2565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006137b982613792565b6137c3818561379d565b93506137d38185602086016125e8565b6137dc8161261b565b840191505092915050565b60006080820190506137fc600083018761271c565b613809602083018661271c565b61381660408301856127b2565b818103606083015261382881846137ae565b905095945050505050565b6000815190506138428161253d565b92915050565b60006020828403121561385e5761385d612507565b5b600061386c84828501613833565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138ab6020836125d7565b91506138b682613875565b602082019050919050565b600060208201905081810360008301526138da8161389e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613917601c836125d7565b9150613922826138e1565b602082019050919050565b600060208201905081810360008301526139468161390a565b905091905056fe697066733a2f2f516d5634446b794b335654624e5656784b72475358507451313762753833374c334c67527058585046786b7734552fa2646970667358221220bf807bae786bc8655cfb06bbb182d75bf78c9c732dc740b6abfbe379c1f36a3264736f6c634300080c0033

Deployed Bytecode Sourcemap

56950:4709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57741:291;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41835:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43347:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42865:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61351:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60327:394;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44047:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60729:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59721:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58040:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44453:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41545:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41276:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19440:103;;;;;;;;;;;;;:::i;:::-;;59832:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61243:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18792:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60027:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42004:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60119:200;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43590:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61455:201;;;;;;;;;;;;;:::i;:::-;;44709:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42179:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43816:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19698:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57741:291;57888:4;57945:26;57930:41;;;:11;:41;;;;:94;;;;57988:36;58012:11;57988:23;:36::i;:::-;57930:94;57910:114;;57741:291;;;:::o;41835:100::-;41889:13;41922:5;41915:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41835:100;:::o;43347:171::-;43423:7;43443:23;43458:7;43443:14;:23::i;:::-;43486:15;:24;43502:7;43486:24;;;;;;;;;;;;;;;;;;;;;43479:31;;43347:171;;;:::o;42865:416::-;42946:13;42962:23;42977:7;42962:14;:23::i;:::-;42946:39;;43010:5;43004:11;;:2;:11;;;;42996:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43104:5;43088:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43113:37;43130:5;43137:12;:10;:12::i;:::-;43113:16;:37::i;:::-;43088:62;43066:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43252:21;43261:2;43265:7;43252:8;:21::i;:::-;42935:346;42865:416;;:::o;61351:96::-;61394:4;61418:21;61411:28;;61351:96;:::o;60327:394::-;60368:5;60413:9;;60390:19;:9;:17;:19::i;:::-;:32;60386:85;;60446:13;60439:20;;;;60386:85;60514:11;;60495:15;:30;60491:82;;60549:12;60542:19;;;;60491:82;60617:14;;60598:15;:33;60594:88;;60655:15;60648:22;;;;60594:88;60701:12;60694:19;;60327:394;;:::o;44047:335::-;44242:41;44261:12;:10;:12::i;:::-;44275:7;44242:18;:41::i;:::-;44234:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44346:28;44356:4;44362:2;44366:7;44346:9;:28::i;:::-;44047:335;;;:::o;60729:284::-;60828:16;60846:21;57499:5;60914:10;:17;;;60902:9;:29;;;;:::i;:::-;60901:49;;;;:::i;:::-;60885:65;;60969:10;:20;;;;;;;;;;;;60961:44;;60729:284;;;;;:::o;59721:103::-;18678:13;:11;:13::i;:::-;59806:10:::1;59792:11;;:24;;;;;;;;;;;;;;;;;;59721:103:::0;:::o;58040:416::-;58144:7;58169:34;58186:9;58197:5;58169:16;:34::i;:::-;58214:17;58247:9;58259:1;58247:13;;58242:178;58266:5;58262:1;:9;58242:178;;;58293:21;:9;:19;:21::i;:::-;58343:19;:9;:17;:19::i;:::-;58331:31;;58377;58387:9;58398;58377;:31::i;:::-;58273:3;;;;;:::i;:::-;;;;58242:178;;;;58439:9;58432:16;;;58040:416;;;;:::o;44453:185::-;44591:39;44608:4;44614:2;44618:7;44591:39;;;;;;;;;;;;:16;:39::i;:::-;44453:185;;;:::o;41545:223::-;41617:7;41637:13;41653:17;41662:7;41653:8;:17::i;:::-;41637:33;;41706:1;41689:19;;:5;:19;;;;41681:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41755:5;41748:12;;;41545:223;;;:::o;41276:207::-;41348:7;41393:1;41376:19;;:5;:19;;;;41368:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41459:9;:16;41469:5;41459:16;;;;;;;;;;;;;;;;41452:23;;41276:207;;;:::o;19440:103::-;18678:13;:11;:13::i;:::-;19505:30:::1;19532:1;19505:18;:30::i;:::-;19440:103::o:0;59832:187::-;18678:13;:11;:13::i;:::-;59963::::1;59946:14;:30;;;;60001:10;59987:11;:24;;;;59832:187:::0;;:::o;61243:100::-;61289:7;61316:19;:9;:17;:19::i;:::-;61309:26;;61243:100;:::o;18792:87::-;18838:7;18865:6;;;;;;;;;;;18858:13;;18792:87;:::o;60027:84::-;18678:13;:11;:13::i;:::-;60098:5:::1;60085:10;:18;;;;60027:84:::0;:::o;42004:104::-;42060:13;42093:7;42086:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42004:104;:::o;60119:200::-;60160:7;60214:15;60200:29;;;;;;;;:::i;:::-;;:10;:8;:10::i;:::-;:29;;;;;;;;:::i;:::-;;;:111;;60301:10;;60200:111;;;60276:3;60263:10;;:16;;;;:::i;:::-;60257:2;:23;;;;:::i;:::-;60200:111;60180:131;;60119:200;:::o;43590:155::-;43685:52;43704:12;:10;:12::i;:::-;43718:8;43728;43685:18;:52::i;:::-;43590:155;;:::o;61455:201::-;18678:13;:11;:13::i;:::-;61508:14:::1;61525:12;:10;:12::i;:::-;61508:29;;61549:12;61567:10;:15;;61590:6;61567:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61548:53;;;61620:7;61612:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61497:159;;61455:201::o:0;44709:322::-;44883:41;44902:12;:10;:12::i;:::-;44916:7;44883:18;:41::i;:::-;44875:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44985:38;44999:4;45005:2;45009:7;45018:4;44985:13;:38::i;:::-;44709:322;;;;:::o;42179:281::-;42252:13;42278:23;42293:7;42278:14;:23::i;:::-;42314:21;42338:10;:8;:10::i;:::-;42314:34;;42390:1;42372:7;42366:21;:25;:86;;;;;;;;;;;;;;;;;42418:7;42427:18;:7;:16;:18::i;:::-;42401:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42366:86;42359:93;;;42179:281;;;:::o;43816:164::-;43913:4;43937:18;:25;43956:5;43937:25;;;;;;;;;;;;;;;:35;43963:8;43937:35;;;;;;;;;;;;;;;;;;;;;;;;;43930:42;;43816:164;;;;:::o;19698:201::-;18678:13;:11;:13::i;:::-;19807:1:::1;19787:22;;:8;:22;;;;19779:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19863:28;19882:8;19863:18;:28::i;:::-;19698:201:::0;:::o;40907:305::-;41009:4;41061:25;41046:40;;;:11;:40;;;;:105;;;;41118:33;41103:48;;;:11;:48;;;;41046:105;:158;;;;41168:36;41192:11;41168:23;:36::i;:::-;41046:158;41026:178;;40907:305;;;:::o;53166:135::-;53248:16;53256:7;53248;:16::i;:::-;53240:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53166:135;:::o;17343:98::-;17396:7;17423:10;17416:17;;17343:98;:::o;52445:174::-;52547:2;52520:15;:24;52536:7;52520:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52603:7;52599:2;52565:46;;52574:23;52589:7;52574:14;:23::i;:::-;52565:46;;;;;;;;;;;;52445:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;47064:264::-;47157:4;47174:13;47190:23;47205:7;47190:14;:23::i;:::-;47174:39;;47243:5;47232:16;;:7;:16;;;:52;;;;47252:32;47269:5;47276:7;47252:16;:32::i;:::-;47232:52;:87;;;;47312:7;47288:31;;:20;47300:7;47288:11;:20::i;:::-;:31;;;47232:87;47224:96;;;47064:264;;;;:::o;51063:1263::-;51222:4;51195:31;;:23;51210:7;51195:14;:23::i;:::-;:31;;;51187:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51301:1;51287:16;;:2;:16;;;;51279:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51357:42;51378:4;51384:2;51388:7;51397:1;51357:20;:42::i;:::-;51529:4;51502:31;;:23;51517:7;51502:14;:23::i;:::-;:31;;;51494:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51647:15;:24;51663:7;51647:24;;;;;;;;;;;;51640:31;;;;;;;;;;;52142:1;52123:9;:15;52133:4;52123:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52175:1;52158:9;:13;52168:2;52158:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52217:2;52198:7;:16;52206:7;52198:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52256:7;52252:2;52237:27;;52246:4;52237:27;;;;;;;;;;;;52277:41;52297:4;52303:2;52307:7;52316:1;52277:19;:41::i;:::-;51063:1263;;;:::o;18957:132::-;19032:12;:10;:12::i;:::-;19021:23;;:7;:5;:7::i;:::-;:23;;;19013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18957:132::o;58466:1082::-;58546:11;58560:10;:8;:10::i;:::-;58546:24;;58597:1;58589:5;:9;58581:18;;;;;;58627:13;58618:22;;;;;;;;:::i;:::-;;:5;:22;;;;;;;;:::i;:::-;;;;58610:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58695:15;58686:24;;;;;;;;:::i;:::-;;:5;:24;;;;;;;;:::i;:::-;;;:49;;;;58723:12;58714:21;;;;;;;;:::i;:::-;;:5;:21;;;;;;;;:::i;:::-;;;58686:49;:105;;;;58749:13;58740:22;;;;;;;;:::i;:::-;;:5;:22;;;;;;;;:::i;:::-;;;;:50;;;;;58779:11;;;;;;;;;;;58766:24;;:9;:24;;;58740:50;58686:105;58664:180;;;;;;;;;;;;:::i;:::-;;;;;;;;;58872:11;;;;;;;;;;;58859:24;;:9;:24;;;58855:560;;58913:15;58904:24;;;;;;;;:::i;:::-;;:5;:24;;;;;;;;:::i;:::-;;;58900:427;;;58966:1;58957:5;:10;;58949:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;59079:1;59070:5;59047:20;59057:9;59047;:20::i;:::-;:28;;;;:::i;:::-;:33;;59017:175;;;;;;;;;;;;:::i;:::-;;;;;;;;;58900:427;;;59227:12;59218:21;;;;;;;;:::i;:::-;;:5;:21;;;;;;;;:::i;:::-;;;59214:113;;;59277:3;59268:5;:12;;59260:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;59214:113;58900:427;59375:5;59362:10;:8;:10::i;:::-;:18;;;;:::i;:::-;59349:9;:31;;59341:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58855:560;59478:9;;59469:5;59447:19;:9;:17;:19::i;:::-;:27;;;;:::i;:::-;:40;;59425:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;58535:1013;58466:1082;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;47670:110::-;47746:26;47756:2;47760:7;47746:26;;;;;;;;;;;;:9;:26::i;:::-;47670:110;;:::o;46339:117::-;46405:7;46432;:16;46440:7;46432:16;;;;;;;;;;;;;;;;;;;;;46425:23;;46339:117;;;:::o;20059:191::-;20133:16;20152:6;;;;;;;;;;;20133:25;;20178:8;20169:6;;:17;;;;;;;;;;;;;;;;;;20233:8;20202:40;;20223:8;20202:40;;;;;;;;;;;;20122:128;20059:191;:::o;52762:315::-;52917:8;52908:17;;:5;:17;;;;52900:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53004:8;52966:18;:25;52985:5;52966:25;;;;;;;;;;;;;;;:35;52992:8;52966:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53050:8;53028:41;;53043:5;53028:41;;;53060:8;53028:41;;;;;;:::i;:::-;;;;;;;;52762:315;;;:::o;45912:313::-;46068:28;46078:4;46084:2;46088:7;46068:9;:28::i;:::-;46115:47;46138:4;46144:2;46148:7;46157:4;46115:22;:47::i;:::-;46107:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45912:313;;;;:::o;59556:157::-;59616:13;59642:63;;;;;;;;;;;;;;;;;;;59556:157;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15403:21;;;15419:5;;15403:21;15152:288;;;15461:6;15454:13;;;;;14770:716;;;:::o;33419:157::-;33504:4;33543:25;33528:40;;;:11;:40;;;;33521:47;;33419:157;;;:::o;46769:128::-;46834:4;46887:1;46858:31;;:17;46867:7;46858:8;:17::i;:::-;:31;;;;46851:38;;46769:128;;;:::o;55450:410::-;55640:1;55628:9;:13;55624:229;;;55678:1;55662:18;;:4;:18;;;55658:87;;55720:9;55701;:15;55711:4;55701:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;55658:87;55777:1;55763:16;;:2;:16;;;55759:83;;55817:9;55800;:13;55810:2;55800:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;55759:83;55624:229;55450:410;;;;:::o;56582:158::-;;;;;:::o;48007:319::-;48136:18;48142:2;48146:7;48136:5;:18::i;:::-;48187:53;48218:1;48222:2;48226:7;48235:4;48187:22;:53::i;:::-;48165:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48007:319;;;:::o;53865:853::-;54019:4;54040:15;:2;:13;;;:15::i;:::-;54036:675;;;54092:2;54076:36;;;54113:12;:10;:12::i;:::-;54127:4;54133:7;54142:4;54076:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54072:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54334:1;54317:6;:13;:18;54313:328;;;54360:60;;;;;;;;;;:::i;:::-;;;;;;;;54313:328;54591:6;54585:13;54576:6;54572:2;54568:15;54561:38;54072:584;54208:41;;;54198:51;;;:6;:51;;;;54191:58;;;;;54036:675;54695:4;54688:11;;53865:853;;;;;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;48662:942::-;48756:1;48742:16;;:2;:16;;;;48734:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48815:16;48823:7;48815;:16::i;:::-;48814:17;48806:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48877:48;48906:1;48910:2;48914:7;48923:1;48877:20;:48::i;:::-;49024:16;49032:7;49024;:16::i;:::-;49023:17;49015:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49439:1;49422:9;:13;49432:2;49422:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49483:2;49464:7;:16;49472:7;49464:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49528:7;49524:2;49503:33;;49520:1;49503:33;;;;;;;;;;;;49549:47;49577:1;49581:2;49585:7;49594:1;49549:19;:47::i;:::-;48662:942;;:::o;21490:326::-;21550:4;21807:1;21785:7;:19;;;:23;21778:30;;21490: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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:180::-;5338:77;5335:1;5328:88;5435:4;5432:1;5425:15;5459:4;5456:1;5449:15;5476:115;5559:1;5552:5;5549:12;5539:46;;5565:18;;:::i;:::-;5539:46;5476:115;:::o;5597:131::-;5644:7;5673:5;5662:16;;5679:43;5716:5;5679:43;:::i;:::-;5597:131;;;:::o;5734:::-;5792:9;5825:34;5853:5;5825:34;:::i;:::-;5812:47;;5734:131;;;:::o;5871:147::-;5966:45;6005:5;5966:45;:::i;:::-;5961:3;5954:58;5871:147;;:::o;6024:238::-;6125:4;6163:2;6152:9;6148:18;6140:26;;6176:79;6252:1;6241:9;6237:17;6228:6;6176:79;:::i;:::-;6024:238;;;;:::o;6268:619::-;6345:6;6353;6361;6410:2;6398:9;6389:7;6385:23;6381:32;6378:119;;;6416:79;;:::i;:::-;6378:119;6536:1;6561:53;6606:7;6597:6;6586:9;6582:22;6561:53;:::i;:::-;6551:63;;6507:117;6663:2;6689:53;6734:7;6725:6;6714:9;6710:22;6689:53;:::i;:::-;6679:63;;6634:118;6791:2;6817:53;6862:7;6853:6;6842:9;6838:22;6817:53;:::i;:::-;6807:63;;6762:118;6268:619;;;;;:::o;6893:474::-;6961:6;6969;7018:2;7006:9;6997:7;6993:23;6989:32;6986:119;;;7024:79;;:::i;:::-;6986:119;7144:1;7169:53;7214:7;7205:6;7194:9;7190:22;7169:53;:::i;:::-;7159:63;;7115:117;7271:2;7297:53;7342:7;7333:6;7322:9;7318:22;7297:53;:::i;:::-;7287:63;;7242:118;6893:474;;;;;:::o;7373:332::-;7494:4;7532:2;7521:9;7517:18;7509:26;;7545:71;7613:1;7602:9;7598:17;7589:6;7545:71;:::i;:::-;7626:72;7694:2;7683:9;7679:18;7670:6;7626:72;:::i;:::-;7373:332;;;;;:::o;7711:329::-;7770:6;7819:2;7807:9;7798:7;7794:23;7790:32;7787:119;;;7825:79;;:::i;:::-;7787:119;7945:1;7970:53;8015:7;8006:6;7995:9;7991:22;7970:53;:::i;:::-;7960:63;;7916:117;7711:329;;;;:::o;8046:116::-;8116:21;8131:5;8116:21;:::i;:::-;8109:5;8106:32;8096:60;;8152:1;8149;8142:12;8096:60;8046:116;:::o;8168:133::-;8211:5;8249:6;8236:20;8227:29;;8265:30;8289:5;8265:30;:::i;:::-;8168:133;;;;:::o;8307:468::-;8372:6;8380;8429:2;8417:9;8408:7;8404:23;8400:32;8397:119;;;8435:79;;:::i;:::-;8397:119;8555:1;8580:53;8625:7;8616:6;8605:9;8601:22;8580:53;:::i;:::-;8570:63;;8526:117;8682:2;8708:50;8750:7;8741:6;8730:9;8726:22;8708:50;:::i;:::-;8698:60;;8653:115;8307:468;;;;;:::o;8781:117::-;8890:1;8887;8880:12;8904:117;9013:1;9010;9003:12;9027:180;9075:77;9072:1;9065:88;9172:4;9169:1;9162:15;9196:4;9193:1;9186:15;9213:281;9296:27;9318:4;9296:27;:::i;:::-;9288:6;9284:40;9426:6;9414:10;9411:22;9390:18;9378:10;9375:34;9372:62;9369:88;;;9437:18;;:::i;:::-;9369:88;9477:10;9473:2;9466:22;9256:238;9213:281;;:::o;9500:129::-;9534:6;9561:20;;:::i;:::-;9551:30;;9590:33;9618:4;9610:6;9590:33;:::i;:::-;9500:129;;;:::o;9635:307::-;9696:4;9786:18;9778:6;9775:30;9772:56;;;9808:18;;:::i;:::-;9772:56;9846:29;9868:6;9846:29;:::i;:::-;9838:37;;9930:4;9924;9920:15;9912:23;;9635:307;;;:::o;9948:154::-;10032:6;10027:3;10022;10009:30;10094:1;10085:6;10080:3;10076:16;10069:27;9948:154;;;:::o;10108:410::-;10185:5;10210:65;10226:48;10267:6;10226:48;:::i;:::-;10210:65;:::i;:::-;10201:74;;10298:6;10291:5;10284:21;10336:4;10329:5;10325:16;10374:3;10365:6;10360:3;10356:16;10353:25;10350:112;;;10381:79;;:::i;:::-;10350:112;10471:41;10505:6;10500:3;10495;10471:41;:::i;:::-;10191:327;10108:410;;;;;:::o;10537:338::-;10592:5;10641:3;10634:4;10626:6;10622:17;10618:27;10608:122;;10649:79;;:::i;:::-;10608:122;10766:6;10753:20;10791:78;10865:3;10857:6;10850:4;10842:6;10838:17;10791:78;:::i;:::-;10782:87;;10598:277;10537:338;;;;:::o;10881:943::-;10976:6;10984;10992;11000;11049:3;11037:9;11028:7;11024:23;11020:33;11017:120;;;11056:79;;:::i;:::-;11017:120;11176:1;11201:53;11246:7;11237:6;11226:9;11222:22;11201:53;:::i;:::-;11191:63;;11147:117;11303:2;11329:53;11374:7;11365:6;11354:9;11350:22;11329:53;:::i;:::-;11319:63;;11274:118;11431:2;11457:53;11502:7;11493:6;11482:9;11478:22;11457:53;:::i;:::-;11447:63;;11402:118;11587:2;11576:9;11572:18;11559:32;11618:18;11610:6;11607:30;11604:117;;;11640:79;;:::i;:::-;11604:117;11745:62;11799:7;11790:6;11779:9;11775:22;11745:62;:::i;:::-;11735:72;;11530:287;10881:943;;;;;;;:::o;11830:474::-;11898:6;11906;11955:2;11943:9;11934:7;11930:23;11926:32;11923:119;;;11961:79;;:::i;:::-;11923:119;12081:1;12106:53;12151:7;12142:6;12131:9;12127:22;12106:53;:::i;:::-;12096:63;;12052:117;12208:2;12234:53;12279:7;12270:6;12259:9;12255:22;12234:53;:::i;:::-;12224:63;;12179:118;11830:474;;;;;:::o;12310:180::-;12358:77;12355:1;12348:88;12455:4;12452:1;12445:15;12479:4;12476:1;12469:15;12496:320;12540:6;12577:1;12571:4;12567:12;12557:22;;12624:1;12618:4;12614:12;12645:18;12635:81;;12701:4;12693:6;12689:17;12679:27;;12635:81;12763:2;12755:6;12752:14;12732:18;12729:38;12726:84;;;12782:18;;:::i;:::-;12726:84;12547:269;12496:320;;;:::o;12822:220::-;12962:34;12958:1;12950:6;12946:14;12939:58;13031:3;13026:2;13018:6;13014:15;13007:28;12822:220;:::o;13048:366::-;13190:3;13211:67;13275:2;13270:3;13211:67;:::i;:::-;13204:74;;13287:93;13376:3;13287:93;:::i;:::-;13405:2;13400:3;13396:12;13389:19;;13048:366;;;:::o;13420:419::-;13586:4;13624:2;13613:9;13609:18;13601:26;;13673:9;13667:4;13663:20;13659:1;13648:9;13644:17;13637:47;13701:131;13827:4;13701:131;:::i;:::-;13693:139;;13420:419;;;:::o;13845:248::-;13985:34;13981:1;13973:6;13969:14;13962:58;14054:31;14049:2;14041:6;14037:15;14030:56;13845:248;:::o;14099:366::-;14241:3;14262:67;14326:2;14321:3;14262:67;:::i;:::-;14255:74;;14338:93;14427:3;14338:93;:::i;:::-;14456:2;14451:3;14447:12;14440:19;;14099:366;;;:::o;14471:419::-;14637:4;14675:2;14664:9;14660:18;14652:26;;14724:9;14718:4;14714:20;14710:1;14699:9;14695:17;14688:47;14752:131;14878:4;14752:131;:::i;:::-;14744:139;;14471:419;;;:::o;14896:232::-;15036:34;15032:1;15024:6;15020:14;15013:58;15105:15;15100:2;15092:6;15088:15;15081:40;14896:232;:::o;15134:366::-;15276:3;15297:67;15361:2;15356:3;15297:67;:::i;:::-;15290:74;;15373:93;15462:3;15373:93;:::i;:::-;15491:2;15486:3;15482:12;15475:19;;15134:366;;;:::o;15506:419::-;15672:4;15710:2;15699:9;15695:18;15687:26;;15759:9;15753:4;15749:20;15745:1;15734:9;15730:17;15723:47;15787:131;15913:4;15787:131;:::i;:::-;15779:139;;15506:419;;;:::o;15931:180::-;15979:77;15976:1;15969:88;16076:4;16073:1;16066:15;16100:4;16097:1;16090:15;16117:348;16157:7;16180:20;16198:1;16180:20;:::i;:::-;16175:25;;16214:20;16232:1;16214:20;:::i;:::-;16209:25;;16402:1;16334:66;16330:74;16327:1;16324:81;16319:1;16312:9;16305:17;16301:105;16298:131;;;16409:18;;:::i;:::-;16298:131;16457:1;16454;16450:9;16439:20;;16117:348;;;;:::o;16471:180::-;16519:77;16516:1;16509:88;16616:4;16613:1;16606:15;16640:4;16637:1;16630:15;16657:185;16697:1;16714:20;16732:1;16714:20;:::i;:::-;16709:25;;16748:20;16766:1;16748:20;:::i;:::-;16743:25;;16787:1;16777:35;;16792:18;;:::i;:::-;16777:35;16834:1;16831;16827:9;16822:14;;16657:185;;;;:::o;16848:233::-;16887:3;16910:24;16928:5;16910:24;:::i;:::-;16901:33;;16956:66;16949:5;16946:77;16943:103;;;17026:18;;:::i;:::-;16943:103;17073:1;17066:5;17062:13;17055:20;;16848:233;;;:::o;17087:174::-;17227:26;17223:1;17215:6;17211:14;17204:50;17087:174;:::o;17267:366::-;17409:3;17430:67;17494:2;17489:3;17430:67;:::i;:::-;17423:74;;17506:93;17595:3;17506:93;:::i;:::-;17624:2;17619:3;17615:12;17608:19;;17267:366;;;:::o;17639:419::-;17805:4;17843:2;17832:9;17828:18;17820:26;;17892:9;17886:4;17882:20;17878:1;17867:9;17863:17;17856:47;17920:131;18046:4;17920:131;:::i;:::-;17912:139;;17639:419;;;:::o;18064:228::-;18204:34;18200:1;18192:6;18188:14;18181:58;18273:11;18268:2;18260:6;18256:15;18249:36;18064:228;:::o;18298:366::-;18440:3;18461:67;18525:2;18520:3;18461:67;:::i;:::-;18454:74;;18537:93;18626:3;18537:93;:::i;:::-;18655:2;18650:3;18646:12;18639:19;;18298:366;;;:::o;18670:419::-;18836:4;18874:2;18863:9;18859:18;18851:26;;18923:9;18917:4;18913:20;18909:1;18898:9;18894:17;18887:47;18951:131;19077:4;18951:131;:::i;:::-;18943:139;;18670:419;;;:::o;19095:147::-;19196:11;19233:3;19218:18;;19095:147;;;;:::o;19248:114::-;;:::o;19368:398::-;19527:3;19548:83;19629:1;19624:3;19548:83;:::i;:::-;19541:90;;19640:93;19729:3;19640:93;:::i;:::-;19758:1;19753:3;19749:11;19742:18;;19368:398;;;:::o;19772:379::-;19956:3;19978:147;20121:3;19978:147;:::i;:::-;19971:154;;20142:3;20135:10;;19772:379;;;:::o;20157:166::-;20297:18;20293:1;20285:6;20281:14;20274:42;20157:166;:::o;20329:366::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:419::-;20867:4;20905:2;20894:9;20890:18;20882:26;;20954:9;20948:4;20944:20;20940:1;20929:9;20925:17;20918:47;20982:131;21108:4;20982:131;:::i;:::-;20974:139;;20701:419;;;:::o;21126:148::-;21228:11;21265:3;21250:18;;21126:148;;;;:::o;21280:377::-;21386:3;21414:39;21447:5;21414:39;:::i;:::-;21469:89;21551:6;21546:3;21469:89;:::i;:::-;21462:96;;21567:52;21612:6;21607:3;21600:4;21593:5;21589:16;21567:52;:::i;:::-;21644:6;21639:3;21635:16;21628:23;;21390:267;21280:377;;;;:::o;21663:435::-;21843:3;21865:95;21956:3;21947:6;21865:95;:::i;:::-;21858:102;;21977:95;22068:3;22059:6;21977:95;:::i;:::-;21970:102;;22089:3;22082:10;;21663:435;;;;;:::o;22104:225::-;22244:34;22240:1;22232:6;22228:14;22221:58;22313:8;22308:2;22300:6;22296:15;22289:33;22104:225;:::o;22335:366::-;22477:3;22498:67;22562:2;22557:3;22498:67;:::i;:::-;22491:74;;22574:93;22663:3;22574:93;:::i;:::-;22692:2;22687:3;22683:12;22676:19;;22335:366;;;:::o;22707:419::-;22873:4;22911:2;22900:9;22896:18;22888:26;;22960:9;22954:4;22950:20;22946:1;22935:9;22931:17;22924:47;22988:131;23114:4;22988:131;:::i;:::-;22980:139;;22707:419;;;:::o;23132:224::-;23272:34;23268:1;23260:6;23256:14;23249:58;23341:7;23336:2;23328:6;23324:15;23317:32;23132:224;:::o;23362:366::-;23504:3;23525:67;23589:2;23584:3;23525:67;:::i;:::-;23518:74;;23601:93;23690:3;23601:93;:::i;:::-;23719:2;23714:3;23710:12;23703:19;;23362:366;;;:::o;23734:419::-;23900:4;23938:2;23927:9;23923:18;23915:26;;23987:9;23981:4;23977:20;23973:1;23962:9;23958:17;23951:47;24015:131;24141:4;24015:131;:::i;:::-;24007:139;;23734:419;;;:::o;24159:223::-;24299:34;24295:1;24287:6;24283:14;24276:58;24368:6;24363:2;24355:6;24351:15;24344:31;24159:223;:::o;24388:366::-;24530:3;24551:67;24615:2;24610:3;24551:67;:::i;:::-;24544:74;;24627:93;24716:3;24627:93;:::i;:::-;24745:2;24740:3;24736:12;24729:19;;24388:366;;;:::o;24760:419::-;24926:4;24964:2;24953:9;24949:18;24941:26;;25013:9;25007:4;25003:20;24999:1;24988:9;24984:17;24977:47;25041:131;25167:4;25041:131;:::i;:::-;25033:139;;24760:419;;;:::o;25185:182::-;25325:34;25321:1;25313:6;25309:14;25302:58;25185:182;:::o;25373:366::-;25515:3;25536:67;25600:2;25595:3;25536:67;:::i;:::-;25529:74;;25612:93;25701:3;25612:93;:::i;:::-;25730:2;25725:3;25721:12;25714:19;;25373:366;;;:::o;25745:419::-;25911:4;25949:2;25938:9;25934:18;25926:26;;25998:9;25992:4;25988:20;25984:1;25973:9;25969:17;25962:47;26026:131;26152:4;26026:131;:::i;:::-;26018:139;;25745:419;;;:::o;26170:158::-;26310:10;26306:1;26298:6;26294:14;26287:34;26170:158;:::o;26334:365::-;26476:3;26497:66;26561:1;26556:3;26497:66;:::i;:::-;26490:73;;26572:93;26661:3;26572:93;:::i;:::-;26690:2;26685:3;26681:12;26674:19;;26334:365;;;:::o;26705:419::-;26871:4;26909:2;26898:9;26894:18;26886:26;;26958:9;26952:4;26948:20;26944:1;26933:9;26929:17;26922:47;26986:131;27112:4;26986:131;:::i;:::-;26978:139;;26705:419;;;:::o;27130:175::-;27270:27;27266:1;27258:6;27254:14;27247:51;27130:175;:::o;27311:366::-;27453:3;27474:67;27538:2;27533:3;27474:67;:::i;:::-;27467:74;;27550:93;27639:3;27550:93;:::i;:::-;27668:2;27663:3;27659:12;27652:19;;27311:366;;;:::o;27683:419::-;27849:4;27887:2;27876:9;27872:18;27864:26;;27936:9;27930:4;27926:20;27922:1;27911:9;27907:17;27900:47;27964:131;28090:4;27964:131;:::i;:::-;27956:139;;27683:419;;;:::o;28108:176::-;28248:28;28244:1;28236:6;28232:14;28225:52;28108:176;:::o;28290:366::-;28432:3;28453:67;28517:2;28512:3;28453:67;:::i;:::-;28446:74;;28529:93;28618:3;28529:93;:::i;:::-;28647:2;28642:3;28638:12;28631:19;;28290:366;;;:::o;28662:419::-;28828:4;28866:2;28855:9;28851:18;28843:26;;28915:9;28909:4;28905:20;28901:1;28890:9;28886:17;28879:47;28943:131;29069:4;28943:131;:::i;:::-;28935:139;;28662:419;;;:::o;29087:305::-;29127:3;29146:20;29164:1;29146:20;:::i;:::-;29141:25;;29180:20;29198:1;29180:20;:::i;:::-;29175:25;;29334:1;29266:66;29262:74;29259:1;29256:81;29253:107;;;29340:18;;:::i;:::-;29253:107;29384:1;29381;29377:9;29370:16;;29087:305;;;;:::o;29398:292::-;29538:34;29534:1;29526:6;29522:14;29515:58;29607:34;29602:2;29594:6;29590:15;29583:59;29676:6;29671:2;29663:6;29659:15;29652:31;29398:292;:::o;29696:366::-;29838:3;29859:67;29923:2;29918:3;29859:67;:::i;:::-;29852:74;;29935:93;30024:3;29935:93;:::i;:::-;30053:2;30048:3;30044:12;30037:19;;29696:366;;;:::o;30068:419::-;30234:4;30272:2;30261:9;30257:18;30249:26;;30321:9;30315:4;30311:20;30307:1;30296:9;30292:17;30285:47;30349:131;30475:4;30349:131;:::i;:::-;30341:139;;30068:419;;;:::o;30493:168::-;30633:20;30629:1;30621:6;30617:14;30610:44;30493:168;:::o;30667:366::-;30809:3;30830:67;30894:2;30889:3;30830:67;:::i;:::-;30823:74;;30906:93;30995:3;30906:93;:::i;:::-;31024:2;31019:3;31015:12;31008:19;;30667:366;;;:::o;31039:419::-;31205:4;31243:2;31232:9;31228:18;31220:26;;31292:9;31286:4;31282:20;31278:1;31267:9;31263:17;31256:47;31320:131;31446:4;31320:131;:::i;:::-;31312:139;;31039:419;;;:::o;31464:175::-;31604:27;31600:1;31592:6;31588:14;31581:51;31464:175;:::o;31645:366::-;31787:3;31808:67;31872:2;31867:3;31808:67;:::i;:::-;31801:74;;31884:93;31973:3;31884:93;:::i;:::-;32002:2;31997:3;31993:12;31986:19;;31645:366;;;:::o;32017:419::-;32183:4;32221:2;32210:9;32206:18;32198:26;;32270:9;32264:4;32260:20;32256:1;32245:9;32241:17;32234:47;32298:131;32424:4;32298:131;:::i;:::-;32290:139;;32017:419;;;:::o;32442:175::-;32582:27;32578:1;32570:6;32566:14;32559:51;32442:175;:::o;32623:366::-;32765:3;32786:67;32850:2;32845:3;32786:67;:::i;:::-;32779:74;;32862:93;32951:3;32862:93;:::i;:::-;32980:2;32975:3;32971:12;32964:19;;32623:366;;;:::o;32995:419::-;33161:4;33199:2;33188:9;33184:18;33176:26;;33248:9;33242:4;33238:20;33234:1;33223:9;33219:17;33212:47;33276:131;33402:4;33276:131;:::i;:::-;33268:139;;32995:419;;;:::o;33420:237::-;33560:34;33556:1;33548:6;33544:14;33537:58;33629:20;33624:2;33616:6;33612:15;33605:45;33420:237;:::o;33663:366::-;33805:3;33826:67;33890:2;33885:3;33826:67;:::i;:::-;33819:74;;33902:93;33991:3;33902:93;:::i;:::-;34020:2;34015:3;34011:12;34004:19;;33663:366;;;:::o;34035:419::-;34201:4;34239:2;34228:9;34224:18;34216:26;;34288:9;34282:4;34278:20;34274:1;34263:9;34259:17;34252:47;34316:131;34442:4;34316:131;:::i;:::-;34308:139;;34035:419;;;:::o;34460:191::-;34500:4;34520:20;34538:1;34520:20;:::i;:::-;34515:25;;34554:20;34572:1;34554:20;:::i;:::-;34549:25;;34593:1;34590;34587:8;34584:34;;;34598:18;;:::i;:::-;34584:34;34643:1;34640;34636:9;34628:17;;34460:191;;;;:::o;34657:98::-;34708:6;34742:5;34736:12;34726:22;;34657:98;;;:::o;34761:168::-;34844:11;34878:6;34873:3;34866:19;34918:4;34913:3;34909:14;34894:29;;34761:168;;;;:::o;34935:360::-;35021:3;35049:38;35081:5;35049:38;:::i;:::-;35103:70;35166:6;35161:3;35103:70;:::i;:::-;35096:77;;35182:52;35227:6;35222:3;35215:4;35208:5;35204:16;35182:52;:::i;:::-;35259:29;35281:6;35259:29;:::i;:::-;35254:3;35250:39;35243:46;;35025:270;34935:360;;;;:::o;35301:640::-;35496:4;35534:3;35523:9;35519:19;35511:27;;35548:71;35616:1;35605:9;35601:17;35592:6;35548:71;:::i;:::-;35629:72;35697:2;35686:9;35682:18;35673:6;35629:72;:::i;:::-;35711;35779:2;35768:9;35764:18;35755:6;35711:72;:::i;:::-;35830:9;35824:4;35820:20;35815:2;35804:9;35800:18;35793:48;35858:76;35929:4;35920:6;35858:76;:::i;:::-;35850:84;;35301:640;;;;;;;:::o;35947:141::-;36003:5;36034:6;36028:13;36019:22;;36050:32;36076:5;36050:32;:::i;:::-;35947:141;;;;:::o;36094:349::-;36163:6;36212:2;36200:9;36191:7;36187:23;36183:32;36180:119;;;36218:79;;:::i;:::-;36180:119;36338:1;36363:63;36418:7;36409:6;36398:9;36394:22;36363:63;:::i;:::-;36353:73;;36309:127;36094:349;;;;:::o;36449:182::-;36589:34;36585:1;36577:6;36573:14;36566:58;36449:182;:::o;36637:366::-;36779:3;36800:67;36864:2;36859:3;36800:67;:::i;:::-;36793:74;;36876:93;36965:3;36876:93;:::i;:::-;36994:2;36989:3;36985:12;36978:19;;36637:366;;;:::o;37009:419::-;37175:4;37213:2;37202:9;37198:18;37190:26;;37262:9;37256:4;37252:20;37248:1;37237:9;37233:17;37226:47;37290:131;37416:4;37290:131;:::i;:::-;37282:139;;37009:419;;;:::o;37434:178::-;37574:30;37570:1;37562:6;37558:14;37551:54;37434:178;:::o;37618:366::-;37760:3;37781:67;37845:2;37840:3;37781:67;:::i;:::-;37774:74;;37857:93;37946:3;37857:93;:::i;:::-;37975:2;37970:3;37966:12;37959:19;;37618:366;;;:::o;37990:419::-;38156:4;38194:2;38183:9;38179:18;38171:26;;38243:9;38237:4;38233:20;38229:1;38218:9;38214:17;38207:47;38271:131;38397:4;38271:131;:::i;:::-;38263:139;;37990:419;;;:::o

Swarm Source

ipfs://bf807bae786bc8655cfb06bbb182d75bf78c9c732dc740b6abfbe379c1f36a32
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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