Token XonasClowns

 

Overview ERC-721

Total Supply:
0 XC

Holders:
0 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
XonasClowns

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at FTMScan.com on 2022-12-09
*/

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/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/[email protected]/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: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Test clowns.sol


pragma solidity ^0.8.9;





contract XonasClowns is ERC721, ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    mapping(address => bool) public whitelisted;
    mapping(address => bool) public whitelistMinted;
    uint256 public mintPrice;
    bool public mintOpen = false;
    bool public revealed = false;
    uint256 public maximumSupply = 333;
    string private _metadataDataURI = "";
    string private preRevealURI = "https://gateway.pinata.cloud/ipfs/QmQCDLYnScKNdD3AR5p62NGmgm7jPCU3sUVDrUUYksKdtd";

    constructor() ERC721("XonasClowns", "XC") {
        setMintPrice(120 ether);

    }

    
    function setRevealed(bool isRevealed) public onlyOwner {
        revealed = isRevealed;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId));
        if(!revealed){
            return string(preRevealURI);
        }
        return
            string(
                abi.encodePacked(_metadataDataURI, Strings.toString(tokenId), ".json")
            );
    }
    function setMintPrice(uint256 publicMintPrice) public onlyOwner {
        mintPrice = publicMintPrice;
    }
    function setMinting(bool isOpen) public onlyOwner {
        mintOpen = isOpen;
    }

    function setMaximumSupply(uint256 amount) public onlyOwner {
        maximumSupply = amount;
    }

    function whitelistMembers(address[] memory addresses) public {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelisted[addresses[i]] = true;
        }
    }

    function mintClown() private {
        require(mintOpen); 
        require(_tokenIdCounter.current() < maximumSupply);
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();
        _safeMint(msg.sender, tokenId);

    }

    function whitelistMint() public {
        bool isWhitelisted = whitelisted[msg.sender];
        bool didMint = whitelistMinted[msg.sender];
        require(isWhitelisted,"ur not on the list homie, check ur address!");
        require(!didMint,"u already got a whitelist mint!!");
        mintClown();
        whitelistMinted[msg.sender] = true;
    }

     function publicMint(uint8 amount) public payable {
            require(
                amount >= 1,
                "not enough!"
            );
            require(
                amount < 6,
                "too many!"
            );
        uint256 publicMintPrice = mintPrice;
            require(
                msg.value >= publicMintPrice * amount,
                "neeed moar ftm plox"
        );
        for (uint256 i = 0; i < amount; i++) {
            mintClown();
        }
     }

    function setMetadataBaseURI(string memory URI) public onlyOwner {
        _metadataDataURI = URI;
    }

    function withdraw() public onlyOwner {
        require(address(this).balance > 0);
        require(address(msg.sender) == owner());
        payable(msg.sender).transfer(address(this).balance);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"setMaximumSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMetadataBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOpen","type":"bool"}],"name":"setMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isRevealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff02191690831515021790555061014d601055604051806020016040528060008152506011908162000060919062000589565b5060405180608001604052806050815260200162004c2d60509139601290816200008b919062000589565b503480156200009957600080fd5b506040518060400160405280600b81526020017f586f6e6173436c6f776e730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5843000000000000000000000000000000000000000000000000000000000000815250816000908162000117919062000589565b50806001908162000129919062000589565b5050506200014c620001406200016c60201b60201c565b6200017460201b60201c565b6200016668068155a43676e000006200023a60201b60201c565b620006f3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024a6200025460201b60201c565b80600e8190555050565b620002646200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028a620002e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002da90620006d1565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039157607f821691505b602082108103620003a757620003a662000349565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d2565b6200041d8683620003d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200046a620004646200045e8462000435565b6200043f565b62000435565b9050919050565b6000819050919050565b620004868362000449565b6200049e620004958262000471565b848454620003df565b825550505050565b600090565b620004b5620004a6565b620004c28184846200047b565b505050565b5b81811015620004ea57620004de600082620004ab565b600181019050620004c8565b5050565b601f82111562000539576200050381620003ad565b6200050e84620003c2565b810160208510156200051e578190505b620005366200052d85620003c2565b830182620004c7565b50505b505050565b600082821c905092915050565b60006200055e600019846008026200053e565b1980831691505092915050565b60006200057983836200054b565b9150826002028217905092915050565b62000594826200030f565b67ffffffffffffffff811115620005b057620005af6200031a565b5b620005bc825462000378565b620005c9828285620004ee565b600060209050601f831160018114620006015760008415620005ec578287015190505b620005f885826200056b565b86555062000668565b601f1984166200061186620003ad565b60005b828110156200063b5784890151825560018201915060208501945060208101905062000614565b868310156200065b578489015162000657601f8916826200054b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620006b960208362000670565b9150620006c68262000681565b602082019050919050565b60006020820190508181036000830152620006ec81620006aa565b9050919050565b61452a80620007036000396000f3fe6080604052600436106101f95760003560e01c8063804f43cd1161010d578063b88d4fde116100a0578063e4ad2aae1161006f578063e4ad2aae14610724578063e985e9c51461074d578063f2fde38b1461078a578063f4a0a528146107b3578063fb94bd8a146107dc576101f9565b8063b88d4fde14610658578063c87b56dd14610681578063d936547e146106be578063e0a80853146106fb576101f9565b806395d89b41116100dc57806395d89b411461059e57806398a8cffe146105c9578063a22cb46514610606578063b4c7f0661461062f576101f9565b8063804f43cd14610517578063858e83b51461052e5780638cb2c5d11461054a5780638da5cb5b14610573576101f9565b80632f745c5911610190578063518302271161015f57806351830227146104305780636352211e1461045b5780636817c76c1461049857806370a08231146104c3578063715018a614610500576101f9565b80632f745c59146103765780633ccfd60b146103b357806342842e0e146103ca5780634f6ccce7146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd1461032257806324bbd0491461034b576101f9565b806301ffc9a7146101fe5780630480e58b1461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612bcb565b610805565b6040516102329190612c13565b60405180910390f35b34801561024757600080fd5b50610250610817565b60405161025d9190612c47565b60405180910390f35b34801561027257600080fd5b5061027b61081d565b6040516102889190612cf2565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d40565b6108af565b6040516102c59190612dae565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612df5565b6108f5565b005b34801561030357600080fd5b5061030c610a0c565b6040516103199190612c47565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612e35565b610a19565b005b34801561035757600080fd5b50610360610a79565b60405161036d9190612c13565b60405180910390f35b34801561038257600080fd5b5061039d60048036038101906103989190612df5565b610a8c565b6040516103aa9190612c47565b60405180910390f35b3480156103bf57600080fd5b506103c8610b31565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612e35565b610bce565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612d40565b610bee565b6040516104279190612c47565b60405180910390f35b34801561043c57600080fd5b50610445610c5f565b6040516104529190612c13565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612d40565b610c72565b60405161048f9190612dae565b60405180910390f35b3480156104a457600080fd5b506104ad610cf8565b6040516104ba9190612c47565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612e88565b610cfe565b6040516104f79190612c47565b60405180910390f35b34801561050c57600080fd5b50610515610db5565b005b34801561052357600080fd5b5061052c610dc9565b005b61054860048036038101906105439190612eee565b610f50565b005b34801561055657600080fd5b50610571600480360381019061056c9190612d40565b611063565b005b34801561057f57600080fd5b50610588611075565b6040516105959190612dae565b60405180910390f35b3480156105aa57600080fd5b506105b361109f565b6040516105c09190612cf2565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612e88565b611131565b6040516105fd9190612c13565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612f47565b611151565b005b34801561063b57600080fd5b5061065660048036038101906106519190612f87565b611167565b005b34801561066457600080fd5b5061067f600480360381019061067a91906130e9565b61118c565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612d40565b6111ee565b6040516106b59190612cf2565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612e88565b6112db565b6040516106f29190612c13565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612f87565b6112fb565b005b34801561073057600080fd5b5061074b60048036038101906107469190613234565b611320565b005b34801561075957600080fd5b50610774600480360381019061076f919061327d565b6113b5565b6040516107819190612c13565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612e88565b611449565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190612d40565b6114cc565b005b3480156107e857600080fd5b5061080360048036038101906107fe919061335e565b6114de565b005b6000610810826114f9565b9050919050565b60105481565b60606000805461082c906133d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610858906133d6565b80156108a55780601f1061087a576101008083540402835291602001916108a5565b820191906000526020600020905b81548152906001019060200180831161088857829003601f168201915b5050505050905090565b60006108ba82611573565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610c72565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613479565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f6115be565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b86115be565b6113b5565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f49061350b565b60405180910390fd5b610a0783836115c6565b505050565b6000600880549050905090565b610a2a610a246115be565b8261167f565b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a609061359d565b60405180910390fd5b610a74838383611714565b505050565b600f60009054906101000a900460ff1681565b6000610a9783610cfe565b8210610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf9061362f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b39611a0d565b60004711610b4657600080fd5b610b4e611075565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bcb573d6000803e3d6000fd5b50565b610be98383836040518060200160405280600081525061118c565b505050565b6000610bf8610a0c565b8210610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c30906136c1565b60405180910390fd5b60088281548110610c4d57610c4c6136e1565b5b90600052602060002001549050919050565b600f60019054906101000a900460ff1681565b600080610c7e83611a8b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce69061375c565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d65906137ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dbd611a0d565b610dc76000611ac8565b565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905081610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613880565b60405180910390fd5b8015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906138ec565b60405180910390fd5b610ef4611b8e565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60018160ff161015610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613958565b60405180910390fd5b60068160ff1610610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd4906139c4565b60405180910390fd5b6000600e5490508160ff1681610ff39190613a13565b341015611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613aa1565b60405180910390fd5b60005b8260ff1681101561105e5761104b611b8e565b808061105690613ac1565b915050611038565b505050565b61106b611a0d565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110ae906133d6565b80601f01602080910402602001604051908101604052809291908181526020018280546110da906133d6565b80156111275780601f106110fc57610100808354040283529160200191611127565b820191906000526020600020905b81548152906001019060200180831161110a57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b61116361115c6115be565b8383611be3565b5050565b61116f611a0d565b80600f60006101000a81548160ff02191690831515021790555050565b61119d6111976115be565b8361167f565b6111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d39061359d565b60405180910390fd5b6111e884848484611d4f565b50505050565b60606111f982611dab565b61120257600080fd5b600f60019054906101000a900460ff166112a85760128054611223906133d6565b80601f016020809104026020016040519081016040528092919081815260200182805461124f906133d6565b801561129c5780601f106112715761010080835404028352916020019161129c565b820191906000526020600020905b81548152906001019060200180831161127f57829003601f168201915b505050505090506112d6565b60116112b383611dec565b6040516020016112c4929190613c29565b60405160208183030381529060405290505b919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b611303611a0d565b80600f60016101000a81548160ff02191690831515021790555050565b60005b81518110156113b1576001600c6000848481518110611345576113446136e1565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113a990613ac1565b915050611323565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611451611a0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613cca565b60405180910390fd5b6114c981611ac8565b50565b6114d4611a0d565b80600e8190555050565b6114e6611a0d565b80601190816114f59190613e81565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061156c575061156b82611eba565b5b9050919050565b61157c81611dab565b6115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b29061375c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163983610c72565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061168b83610c72565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116cd57506116cc81856113b5565b5b8061170b57508373ffffffffffffffffffffffffffffffffffffffff166116f3846108af565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661173482610c72565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613fc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090614057565b60405180910390fd5b6118068383836001611f9c565b8273ffffffffffffffffffffffffffffffffffffffff1661182682610c72565b73ffffffffffffffffffffffffffffffffffffffff161461187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613fc5565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a088383836001611fae565b505050565b611a156115be565b73ffffffffffffffffffffffffffffffffffffffff16611a33611075565b73ffffffffffffffffffffffffffffffffffffffff1614611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906140c3565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600f60009054906101000a900460ff16611ba757600080fd5b601054611bb4600b611fb4565b10611bbe57600080fd5b611bc8600b611fc2565b6000611bd4600b611fb4565b9050611be03382611fd8565b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c489061412f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d429190612c13565b60405180910390a3505050565b611d5a848484611714565b611d6684848484611ff6565b611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c906141c1565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611dcd83611a8b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060006001611dfb8461217d565b01905060008167ffffffffffffffff811115611e1a57611e19612fbe565b5b6040519080825280601f01601f191660200182016040528015611e4c5781602001600182028036833780820191505090505b509050600082602001820190505b600115611eaf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ea357611ea26141e1565b5b04945060008503611e5a575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f8557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f955750611f94826122d0565b5b9050919050565b611fa88484848461233a565b50505050565b50505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611ff2828260405180602001604052806000815250612498565b5050565b60006120178473ffffffffffffffffffffffffffffffffffffffff166124f3565b15612170578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120406115be565b8786866040518563ffffffff1660e01b81526004016120629493929190614265565b6020604051808303816000875af192505050801561209e57506040513d601f19601f8201168201806040525081019061209b91906142c6565b60015b612120573d80600081146120ce576040519150601f19603f3d011682016040523d82523d6000602084013e6120d3565b606091505b506000815103612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f906141c1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612175565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106121db577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121d1576121d06141e1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612218576d04ee2d6d415b85acef8100000000838161220e5761220d6141e1565b5b0492506020810190505b662386f26fc10000831061224757662386f26fc10000838161223d5761223c6141e1565b5b0492506010810190505b6305f5e1008310612270576305f5e1008381612266576122656141e1565b5b0492506008810190505b612710831061229557612710838161228b5761228a6141e1565b5b0492506004810190505b606483106122b857606483816122ae576122ad6141e1565b5b0492506002810190505b600a83106122c7576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61234684848484612516565b600181111561238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614365565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036123d1576123cc8161263c565b612410565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461240f5761240e8582612685565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124525761244d816127f2565b612491565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146124905761248f84826128c3565b5b5b5050505050565b6124a28383612942565b6124af6000848484611ff6565b6124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906141c1565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600181111561263657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125aa5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a29190614385565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126355780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262d91906143b9565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161269284610cfe565b61269c9190614385565b9050600060076000848152602001908152602001600020549050818114612781576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128069190614385565b9050600060096000848152602001908152602001600020549050600060088381548110612836576128356136e1565b5b906000526020600020015490508060088381548110612858576128576136e1565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128a7576128a66143ed565b5b6001900381819060005260206000200160009055905550505050565b60006128ce83610cfe565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a890614468565b60405180910390fd5b6129ba81611dab565b156129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f1906144d4565b60405180910390fd5b612a08600083836001611f9c565b612a1181611dab565b15612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a48906144d4565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5b600083836001611fae565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ba881612b73565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b600060208284031215612be157612be0612b69565b5b6000612bef84828501612bb6565b91505092915050565b60008115159050919050565b612c0d81612bf8565b82525050565b6000602082019050612c286000830184612c04565b92915050565b6000819050919050565b612c4181612c2e565b82525050565b6000602082019050612c5c6000830184612c38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c9c578082015181840152602081019050612c81565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cc482612c62565b612cce8185612c6d565b9350612cde818560208601612c7e565b612ce781612ca8565b840191505092915050565b60006020820190508181036000830152612d0c8184612cb9565b905092915050565b612d1d81612c2e565b8114612d2857600080fd5b50565b600081359050612d3a81612d14565b92915050565b600060208284031215612d5657612d55612b69565b5b6000612d6484828501612d2b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d9882612d6d565b9050919050565b612da881612d8d565b82525050565b6000602082019050612dc36000830184612d9f565b92915050565b612dd281612d8d565b8114612ddd57600080fd5b50565b600081359050612def81612dc9565b92915050565b60008060408385031215612e0c57612e0b612b69565b5b6000612e1a85828601612de0565b9250506020612e2b85828601612d2b565b9150509250929050565b600080600060608486031215612e4e57612e4d612b69565b5b6000612e5c86828701612de0565b9350506020612e6d86828701612de0565b9250506040612e7e86828701612d2b565b9150509250925092565b600060208284031215612e9e57612e9d612b69565b5b6000612eac84828501612de0565b91505092915050565b600060ff82169050919050565b612ecb81612eb5565b8114612ed657600080fd5b50565b600081359050612ee881612ec2565b92915050565b600060208284031215612f0457612f03612b69565b5b6000612f1284828501612ed9565b91505092915050565b612f2481612bf8565b8114612f2f57600080fd5b50565b600081359050612f4181612f1b565b92915050565b60008060408385031215612f5e57612f5d612b69565b5b6000612f6c85828601612de0565b9250506020612f7d85828601612f32565b9150509250929050565b600060208284031215612f9d57612f9c612b69565b5b6000612fab84828501612f32565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ff682612ca8565b810181811067ffffffffffffffff8211171561301557613014612fbe565b5b80604052505050565b6000613028612b5f565b90506130348282612fed565b919050565b600067ffffffffffffffff82111561305457613053612fbe565b5b61305d82612ca8565b9050602081019050919050565b82818337600083830152505050565b600061308c61308784613039565b61301e565b9050828152602081018484840111156130a8576130a7612fb9565b5b6130b384828561306a565b509392505050565b600082601f8301126130d0576130cf612fb4565b5b81356130e0848260208601613079565b91505092915050565b6000806000806080858703121561310357613102612b69565b5b600061311187828801612de0565b945050602061312287828801612de0565b935050604061313387828801612d2b565b925050606085013567ffffffffffffffff81111561315457613153612b6e565b5b613160878288016130bb565b91505092959194509250565b600067ffffffffffffffff82111561318757613186612fbe565b5b602082029050602081019050919050565b600080fd5b60006131b06131ab8461316c565b61301e565b905080838252602082019050602084028301858111156131d3576131d2613198565b5b835b818110156131fc57806131e88882612de0565b8452602084019350506020810190506131d5565b5050509392505050565b600082601f83011261321b5761321a612fb4565b5b813561322b84826020860161319d565b91505092915050565b60006020828403121561324a57613249612b69565b5b600082013567ffffffffffffffff81111561326857613267612b6e565b5b61327484828501613206565b91505092915050565b6000806040838503121561329457613293612b69565b5b60006132a285828601612de0565b92505060206132b385828601612de0565b9150509250929050565b600067ffffffffffffffff8211156132d8576132d7612fbe565b5b6132e182612ca8565b9050602081019050919050565b60006133016132fc846132bd565b61301e565b90508281526020810184848401111561331d5761331c612fb9565b5b61332884828561306a565b509392505050565b600082601f83011261334557613344612fb4565b5b81356133558482602086016132ee565b91505092915050565b60006020828403121561337457613373612b69565b5b600082013567ffffffffffffffff81111561339257613391612b6e565b5b61339e84828501613330565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133ee57607f821691505b602082108103613401576134006133a7565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613463602183612c6d565b915061346e82613407565b604082019050919050565b6000602082019050818103600083015261349281613456565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006134f5603d83612c6d565b915061350082613499565b604082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613587602d83612c6d565b91506135928261352b565b604082019050919050565b600060208201905081810360008301526135b68161357a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613619602b83612c6d565b9150613624826135bd565b604082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006136ab602c83612c6d565b91506136b68261364f565b604082019050919050565b600060208201905081810360008301526136da8161369e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613746601883612c6d565b915061375182613710565b602082019050919050565b6000602082019050818103600083015261377581613739565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006137d8602983612c6d565b91506137e38261377c565b604082019050919050565b60006020820190508181036000830152613807816137cb565b9050919050565b7f7572206e6f74206f6e20746865206c69737420686f6d69652c20636865636b2060008201527f7572206164647265737321000000000000000000000000000000000000000000602082015250565b600061386a602b83612c6d565b91506138758261380e565b604082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f7520616c726561647920676f7420612077686974656c697374206d696e742121600082015250565b60006138d6602083612c6d565b91506138e1826138a0565b602082019050919050565b60006020820190508181036000830152613905816138c9565b9050919050565b7f6e6f7420656e6f75676821000000000000000000000000000000000000000000600082015250565b6000613942600b83612c6d565b915061394d8261390c565b602082019050919050565b6000602082019050818103600083015261397181613935565b9050919050565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b60006139ae600983612c6d565b91506139b982613978565b602082019050919050565b600060208201905081810360008301526139dd816139a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a1e82612c2e565b9150613a2983612c2e565b9250828202613a3781612c2e565b91508282048414831517613a4e57613a4d6139e4565b5b5092915050565b7f6e65656564206d6f61722066746d20706c6f7800000000000000000000000000600082015250565b6000613a8b601383612c6d565b9150613a9682613a55565b602082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b6000613acc82612c2e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613afe57613afd6139e4565b5b600182019050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613b36816133d6565b613b408186613b09565b94506001821660008114613b5b5760018114613b7057613ba3565b60ff1983168652811515820286019350613ba3565b613b7985613b14565b60005b83811015613b9b57815481890152600182019150602081019050613b7c565b838801955050505b50505092915050565b6000613bb782612c62565b613bc18185613b09565b9350613bd1818560208601612c7e565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613c13600583613b09565b9150613c1e82613bdd565b600582019050919050565b6000613c358285613b29565b9150613c418284613bac565b9150613c4c82613c06565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cb4602683612c6d565b9150613cbf82613c58565b604082019050919050565b60006020820190508181036000830152613ce381613ca7565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613cfa565b613d418683613cfa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d7e613d79613d7484612c2e565b613d59565b612c2e565b9050919050565b6000819050919050565b613d9883613d63565b613dac613da482613d85565b848454613d07565b825550505050565b600090565b613dc1613db4565b613dcc818484613d8f565b505050565b5b81811015613df057613de5600082613db9565b600181019050613dd2565b5050565b601f821115613e3557613e0681613b14565b613e0f84613cea565b81016020851015613e1e578190505b613e32613e2a85613cea565b830182613dd1565b50505b505050565b600082821c905092915050565b6000613e5860001984600802613e3a565b1980831691505092915050565b6000613e718383613e47565b9150826002028217905092915050565b613e8a82612c62565b67ffffffffffffffff811115613ea357613ea2612fbe565b5b613ead82546133d6565b613eb8828285613df4565b600060209050601f831160018114613eeb5760008415613ed9578287015190505b613ee38582613e65565b865550613f4b565b601f198416613ef986613b14565b60005b82811015613f2157848901518255600182019150602085019450602081019050613efc565b86831015613f3e5784890151613f3a601f891682613e47565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613faf602583612c6d565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614041602483612c6d565b915061404c82613fe5565b604082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ad602083612c6d565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614119601983612c6d565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006141ab603283612c6d565b91506141b68261414f565b604082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061423782614210565b614241818561421b565b9350614251818560208601612c7e565b61425a81612ca8565b840191505092915050565b600060808201905061427a6000830187612d9f565b6142876020830186612d9f565b6142946040830185612c38565b81810360608301526142a6818461422c565b905095945050505050565b6000815190506142c081612b9f565b92915050565b6000602082840312156142dc576142db612b69565b5b60006142ea848285016142b1565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061434f603583612c6d565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b600061439082612c2e565b915061439b83612c2e565b92508282039050818111156143b3576143b26139e4565b5b92915050565b60006143c482612c2e565b91506143cf83612c2e565b92508282019050808211156143e7576143e66139e4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614452602083612c6d565b915061445d8261441c565b602082019050919050565b6000602082019050818103600083015261448181614445565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006144be601c83612c6d565b91506144c982614488565b602082019050919050565b600060208201905081810360008301526144ed816144b1565b905091905056fea2646970667358221220f688b8d442decc746ba5cc262394534fee20f9582a9f9f5e3d359ca5b562f43e64736f6c6343000811003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5143444c596e53634b4e6444334152357036324e476d676d376a5043553373555644725555596b734b647464

Deployed ByteCode Sourcemap

64049:3704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67538:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64410:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43607:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43125:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58679:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44307:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64340:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58347:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66996:202;;;;;;;;;;;;;:::i;:::-;;44713:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58869:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64375:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41805:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64309:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41536:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19470:103;;;;;;;;;;;;;:::i;:::-;;65996:357;;;;;;;;;;;;;:::i;:::-;;66362:513;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65425:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18822:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42264:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64255:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43850:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65331:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44969:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64818:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64205:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64715:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65533:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44076:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19728:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65215:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66883:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67538:212;67677:4;67706:36;67730:11;67706:23;:36::i;:::-;67699:43;;67538:212;;;:::o;64410:34::-;;;;:::o;42095:100::-;42149:13;42182:5;42175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42095:100;:::o;43607:171::-;43683:7;43703:23;43718:7;43703:14;:23::i;:::-;43746:15;:24;43762:7;43746:24;;;;;;;;;;;;;;;;;;;;;43739:31;;43607:171;;;:::o;43125:416::-;43206:13;43222:23;43237:7;43222:14;:23::i;:::-;43206:39;;43270:5;43264:11;;:2;:11;;;43256:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43364:5;43348:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;43373:37;43390:5;43397:12;:10;:12::i;:::-;43373:16;:37::i;:::-;43348:62;43326:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;43512:21;43521:2;43525:7;43512:8;:21::i;:::-;43195:346;43125:416;;:::o;58679:113::-;58740:7;58767:10;:17;;;;58760:24;;58679:113;:::o;44307:335::-;44502:41;44521:12;:10;:12::i;:::-;44535:7;44502:18;:41::i;:::-;44494:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44606:28;44616:4;44622:2;44626:7;44606:9;:28::i;:::-;44307:335;;;:::o;64340:28::-;;;;;;;;;;;;;:::o;58347:256::-;58444:7;58480:23;58497:5;58480:16;:23::i;:::-;58472:5;:31;58464:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;58569:12;:19;58582:5;58569:19;;;;;;;;;;;;;;;:26;58589:5;58569:26;;;;;;;;;;;;58562:33;;58347:256;;;;:::o;66996:202::-;18708:13;:11;:13::i;:::-;67076:1:::1;67052:21;:25;67044:34;;;::::0;::::1;;67120:7;:5;:7::i;:::-;67097:30;;67105:10;67097:30;;;67089:39;;;::::0;::::1;;67147:10;67139:28;;:51;67168:21;67139:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66996:202::o:0;44713:185::-;44851:39;44868:4;44874:2;44878:7;44851:39;;;;;;;;;;;;:16;:39::i;:::-;44713:185;;;:::o;58869:233::-;58944:7;58980:30;:28;:30::i;:::-;58972:5;:38;58964:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;59077:10;59088:5;59077:17;;;;;;;;:::i;:::-;;;;;;;;;;59070:24;;58869:233;;;:::o;64375:28::-;;;;;;;;;;;;;:::o;41805:223::-;41877:7;41897:13;41913:17;41922:7;41913:8;:17::i;:::-;41897:33;;41966:1;41949:19;;:5;:19;;;41941:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42015:5;42008:12;;;41805:223;;;:::o;64309:24::-;;;;:::o;41536:207::-;41608:7;41653:1;41636:19;;:5;:19;;;41628:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41719:9;:16;41729:5;41719:16;;;;;;;;;;;;;;;;41712:23;;41536:207;;;:::o;19470:103::-;18708:13;:11;:13::i;:::-;19535:30:::1;19562:1;19535:18;:30::i;:::-;19470:103::o:0;65996:357::-;66039:18;66060:11;:23;66072:10;66060:23;;;;;;;;;;;;;;;;;;;;;;;;;66039:44;;66094:12;66109:15;:27;66125:10;66109:27;;;;;;;;;;;;;;;;;;;;;;;;;66094:42;;66155:13;66147:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66235:7;66234:8;66226:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;66289:11;:9;:11::i;:::-;66341:4;66311:15;:27;66327:10;66311:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;66028:325;;65996:357::o;66362:513::-;66462:1;66452:6;:11;;;;66426:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;66560:1;66551:6;:10;;;66525:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;66617:23;66643:9;;66617:35;;66724:6;66706:24;;:15;:24;;;;:::i;:::-;66693:9;:37;;66667:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;66797:9;66792:75;66816:6;66812:10;;:1;:10;66792:75;;;66844:11;:9;:11::i;:::-;66824:3;;;;;:::i;:::-;;;;66792:75;;;;66411:464;66362:513;:::o;65425:100::-;18708:13;:11;:13::i;:::-;65511:6:::1;65495:13;:22;;;;65425:100:::0;:::o;18822:87::-;18868:7;18895:6;;;;;;;;;;;18888:13;;18822:87;:::o;42264:104::-;42320:13;42353:7;42346:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42264:104;:::o;64255:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;43850:155::-;43945:52;43964:12;:10;:12::i;:::-;43978:8;43988;43945:18;:52::i;:::-;43850:155;;:::o;65331:86::-;18708:13;:11;:13::i;:::-;65403:6:::1;65392:8;;:17;;;;;;;;;;;;;;;;;;65331:86:::0;:::o;44969:322::-;45143:41;45162:12;:10;:12::i;:::-;45176:7;45143:18;:41::i;:::-;45135:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45245:38;45259:4;45265:2;45269:7;45278:4;45245:13;:38::i;:::-;44969:322;;;;:::o;64818:391::-;64927:13;64966:16;64974:7;64966;:16::i;:::-;64958:25;;;;;;64998:8;;;;;;;;;;;64994:67;;65036:12;65022:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64994:67;65133:16;65151:25;65168:7;65151:16;:25::i;:::-;65116:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65071:130;;64818:391;;;;:::o;64205:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;64715:95::-;18708:13;:11;:13::i;:::-;64792:10:::1;64781:8;;:21;;;;;;;;;;;;;;;;;;64715:95:::0;:::o;65533:185::-;65610:9;65605:106;65629:9;:16;65625:1;:20;65605:106;;;65695:4;65667:11;:25;65679:9;65689:1;65679:12;;;;;;;;:::i;:::-;;;;;;;;65667:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;65647:3;;;;;:::i;:::-;;;;65605:106;;;;65533:185;:::o;44076:164::-;44173:4;44197:18;:25;44216:5;44197:25;;;;;;;;;;;;;;;:35;44223:8;44197:35;;;;;;;;;;;;;;;;;;;;;;;;;44190:42;;44076:164;;;;:::o;19728:201::-;18708:13;:11;:13::i;:::-;19837:1:::1;19817:22;;:8;:22;;::::0;19809:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19893:28;19912:8;19893:18;:28::i;:::-;19728:201:::0;:::o;65215:110::-;18708:13;:11;:13::i;:::-;65302:15:::1;65290:9;:27;;;;65215:110:::0;:::o;66883:105::-;18708:13;:11;:13::i;:::-;66977:3:::1;66958:16;:22;;;;;;:::i;:::-;;66883:105:::0;:::o;58039:224::-;58141:4;58180:35;58165:50;;;:11;:50;;;;:90;;;;58219:36;58243:11;58219:23;:36::i;:::-;58165:90;58158:97;;58039:224;;;:::o;53426:135::-;53508:16;53516:7;53508;:16::i;:::-;53500:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53426:135;:::o;17367:98::-;17420:7;17447:10;17440:17;;17367:98;:::o;52705:174::-;52807:2;52780:15;:24;52796:7;52780:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52863:7;52859:2;52825:46;;52834:23;52849:7;52834:14;:23::i;:::-;52825:46;;;;;;;;;;;;52705:174;;:::o;47324:264::-;47417:4;47434:13;47450:23;47465:7;47450:14;:23::i;:::-;47434:39;;47503:5;47492:16;;:7;:16;;;:52;;;;47512:32;47529:5;47536:7;47512:16;:32::i;:::-;47492:52;:87;;;;47572:7;47548:31;;:20;47560:7;47548:11;:20::i;:::-;:31;;;47492:87;47484:96;;;47324:264;;;;:::o;51323:1263::-;51482:4;51455:31;;:23;51470:7;51455:14;:23::i;:::-;:31;;;51447:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51561:1;51547:16;;:2;:16;;;51539:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51617:42;51638:4;51644:2;51648:7;51657:1;51617:20;:42::i;:::-;51789:4;51762:31;;:23;51777:7;51762:14;:23::i;:::-;:31;;;51754:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51907:15;:24;51923:7;51907:24;;;;;;;;;;;;51900:31;;;;;;;;;;;52402:1;52383:9;:15;52393:4;52383:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52435:1;52418:9;:13;52428:2;52418:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52477:2;52458:7;:16;52466:7;52458:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52516:7;52512:2;52497:27;;52506:4;52497:27;;;;;;;;;;;;52537:41;52557:4;52563:2;52567:7;52576:1;52537:19;:41::i;:::-;51323:1263;;;:::o;18987:132::-;19062:12;:10;:12::i;:::-;19051:23;;:7;:5;:7::i;:::-;:23;;;19043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18987:132::o;46599:117::-;46665:7;46692;:16;46700:7;46692:16;;;;;;;;;;;;;;;;;;;;;46685:23;;46599:117;;;:::o;20089:191::-;20163:16;20182:6;;;;;;;;;;;20163:25;;20208:8;20199:6;;:17;;;;;;;;;;;;;;;;;;20263:8;20232:40;;20253:8;20232:40;;;;;;;;;;;;20152:128;20089:191;:::o;65726:262::-;65774:8;;;;;;;;;;;65766:17;;;;;;65831:13;;65803:25;:15;:23;:25::i;:::-;:41;65795:50;;;;;;65856:27;:15;:25;:27::i;:::-;65894:15;65912:25;:15;:23;:25::i;:::-;65894:43;;65948:30;65958:10;65970:7;65948:9;:30::i;:::-;65755:233;65726:262::o;53022:315::-;53177:8;53168:17;;:5;:17;;;53160:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53264:8;53226:18;:25;53245:5;53226:25;;;;;;;;;;;;;;;:35;53252:8;53226:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53310:8;53288:41;;53303:5;53288:41;;;53320:8;53288:41;;;;;;:::i;:::-;;;;;;;;53022:315;;;:::o;46172:313::-;46328:28;46338:4;46344:2;46348:7;46328:9;:28::i;:::-;46375:47;46398:4;46404:2;46408:7;46417:4;46375:22;:47::i;:::-;46367:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46172:313;;;;:::o;47029:128::-;47094:4;47147:1;47118:31;;:17;47127:7;47118:8;:17::i;:::-;:31;;;;47111:38;;47029:128;;;:::o;14788:716::-;14844:13;14895:14;14932:1;14912:17;14923:5;14912:10;:17::i;:::-;:21;14895:38;;14948:20;14982:6;14971:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14948:41;;15004:11;15133:6;15129:2;15125:15;15117:6;15113:28;15106:35;;15170:288;15177:4;15170:288;;;15202:5;;;;;;;;15344:8;15339:2;15332:5;15328:14;15323:30;15318:3;15310:44;15400:2;15391:11;;;;;;:::i;:::-;;;;;15434:1;15425:5;:10;15170:288;15421:21;15170:288;15479:6;15472:13;;;;;14788:716;;;:::o;41167:305::-;41269:4;41321:25;41306:40;;;:11;:40;;;;:105;;;;41378:33;41363:48;;;:11;:48;;;;41306:105;:158;;;;41428:36;41452:11;41428:23;:36::i;:::-;41306:158;41286:178;;41167:305;;;:::o;67276:254::-;67466:56;67493:4;67499:2;67503:7;67512:9;67466:26;:56::i;:::-;67276:254;;;;:::o;56842:158::-;;;;;:::o;878:114::-;943:7;970;:14;;;963:21;;878:114;;;:::o;1000:127::-;1107:1;1089:7;:14;;;:19;;;;;;;;;;;1000:127;:::o;47930:110::-;48006:26;48016:2;48020:7;48006:26;;;;;;;;;;;;:9;:26::i;:::-;47930:110;;:::o;54125:853::-;54279:4;54300:15;:2;:13;;;:15::i;:::-;54296:675;;;54352:2;54336:36;;;54373:12;:10;:12::i;:::-;54387:4;54393:7;54402:4;54336:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54332:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54594:1;54577:6;:13;:18;54573:328;;54620:60;;;;;;;;;;:::i;:::-;;;;;;;;54573:328;54851:6;54845:13;54836:6;54832:2;54828:15;54821:38;54332:584;54468:41;;;54458:51;;;:6;:51;;;;54451:58;;;;;54296:675;54955:4;54948:11;;54125:853;;;;;;;:::o;11648:922::-;11701:7;11721:14;11738:1;11721:18;;11788:6;11779:5;:15;11775:102;;11824:6;11815:15;;;;;;:::i;:::-;;;;;11859:2;11849:12;;;;11775:102;11904:6;11895:5;:15;11891:102;;11940:6;11931:15;;;;;;:::i;:::-;;;;;11975:2;11965:12;;;;11891:102;12020:6;12011:5;:15;12007:102;;12056:6;12047:15;;;;;;:::i;:::-;;;;;12091:2;12081:12;;;;12007:102;12136:5;12127;:14;12123:99;;12171:5;12162:14;;;;;;:::i;:::-;;;;;12205:1;12195:11;;;;12123:99;12249:5;12240;:14;12236:99;;12284:5;12275:14;;;;;;:::i;:::-;;;;;12318:1;12308:11;;;;12236:99;12362:5;12353;:14;12349:99;;12397:5;12388:14;;;;;;:::i;:::-;;;;;12431:1;12421:11;;;;12349:99;12475:5;12466;:14;12462:66;;12511:1;12501:11;;;;12462:66;12556:6;12549:13;;;11648:922;;;:::o;32575:157::-;32660:4;32699:25;32684:40;;;:11;:40;;;;32677:47;;32575:157;;;:::o;59176:915::-;59353:61;59380:4;59386:2;59390:12;59404:9;59353:26;:61::i;:::-;59443:1;59431:9;:13;59427:222;;;59574:63;;;;;;;;;;:::i;:::-;;;;;;;;59427:222;59661:15;59679:12;59661:30;;59724:1;59708:18;;:4;:18;;;59704:187;;59743:40;59775:7;59743:31;:40::i;:::-;59704:187;;;59813:2;59805:10;;:4;:10;;;59801:90;;59832:47;59865:4;59871:7;59832:32;:47::i;:::-;59801:90;59704:187;59919:1;59905:16;;:2;:16;;;59901:183;;59938:45;59975:7;59938:36;:45::i;:::-;59901:183;;;60011:4;60005:10;;:2;:10;;;60001:83;;60032:40;60060:2;60064:7;60032:27;:40::i;:::-;60001:83;59901:183;59342:749;59176:915;;;;:::o;48267:319::-;48396:18;48402:2;48406:7;48396:5;:18::i;:::-;48447:53;48478:1;48482:2;48486:7;48495:4;48447:22;:53::i;:::-;48425:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48267:319;;;:::o;21526:326::-;21586:4;21843:1;21821:7;:19;;;:23;21814:30;;21526:326;;;:::o;55710:410::-;55900:1;55888:9;:13;55884:229;;;55938:1;55922:18;;:4;:18;;;55918:87;;55980:9;55961;:15;55971:4;55961:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;55918:87;56037:1;56023:16;;:2;:16;;;56019:83;;56077:9;56060;:13;56070:2;56060:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;56019:83;55884:229;55710:410;;;;:::o;60814:164::-;60918:10;:17;;;;60891:15;:24;60907:7;60891:24;;;;;;;;;;;:44;;;;60946:10;60962:7;60946:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60814:164;:::o;61605:988::-;61871:22;61921:1;61896:22;61913:4;61896:16;:22::i;:::-;:26;;;;:::i;:::-;61871:51;;61933:18;61954:17;:26;61972:7;61954:26;;;;;;;;;;;;61933:47;;62101:14;62087:10;:28;62083:328;;62132:19;62154:12;:18;62167:4;62154:18;;;;;;;;;;;;;;;:34;62173:14;62154:34;;;;;;;;;;;;62132:56;;62238:11;62205:12;:18;62218:4;62205:18;;;;;;;;;;;;;;;:30;62224:10;62205:30;;;;;;;;;;;:44;;;;62355:10;62322:17;:30;62340:11;62322:30;;;;;;;;;;;:43;;;;62117:294;62083:328;62507:17;:26;62525:7;62507:26;;;;;;;;;;;62500:33;;;62551:12;:18;62564:4;62551:18;;;;;;;;;;;;;;;:34;62570:14;62551:34;;;;;;;;;;;62544:41;;;61686:907;;61605:988;;:::o;62888:1079::-;63141:22;63186:1;63166:10;:17;;;;:21;;;;:::i;:::-;63141:46;;63198:18;63219:15;:24;63235:7;63219:24;;;;;;;;;;;;63198:45;;63570:19;63592:10;63603:14;63592:26;;;;;;;;:::i;:::-;;;;;;;;;;63570:48;;63656:11;63631:10;63642;63631:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;63767:10;63736:15;:28;63752:11;63736:28;;;;;;;;;;;:41;;;;63908:15;:24;63924:7;63908:24;;;;;;;;;;;63901:31;;;63943:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62959:1008;;;62888:1079;:::o;60392:221::-;60477:14;60494:20;60511:2;60494:16;:20::i;:::-;60477:37;;60552:7;60525:12;:16;60538:2;60525:16;;;;;;;;;;;;;;;:24;60542:6;60525:24;;;;;;;;;;;:34;;;;60599:6;60570:17;:26;60588:7;60570:26;;;;;;;;;;;:35;;;;60466:147;60392:221;;:::o;48922:942::-;49016:1;49002:16;;:2;:16;;;48994:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49075:16;49083:7;49075;:16::i;:::-;49074:17;49066:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49137:48;49166:1;49170:2;49174:7;49183:1;49137:20;:48::i;:::-;49284:16;49292:7;49284;:16::i;:::-;49283:17;49275:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49699:1;49682:9;:13;49692:2;49682:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49743:2;49724:7;:16;49732:7;49724:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49788:7;49784:2;49763:33;;49780:1;49763:33;;;;;;;;;;;;49809:47;49837:1;49841:2;49845:7;49854:1;49809:19;:47::i;:::-;48922:942;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:86::-;6237:7;6277:4;6270:5;6266:16;6255:27;;6202:86;;;:::o;6294:118::-;6365:22;6381:5;6365:22;:::i;:::-;6358:5;6355:33;6345:61;;6402:1;6399;6392:12;6345:61;6294:118;:::o;6418:135::-;6462:5;6500:6;6487:20;6478:29;;6516:31;6541:5;6516:31;:::i;:::-;6418:135;;;;:::o;6559:325::-;6616:6;6665:2;6653:9;6644:7;6640:23;6636:32;6633:119;;;6671:79;;:::i;:::-;6633:119;6791:1;6816:51;6859:7;6850:6;6839:9;6835:22;6816:51;:::i;:::-;6806:61;;6762:115;6559:325;;;;:::o;6890:116::-;6960:21;6975:5;6960:21;:::i;:::-;6953:5;6950:32;6940:60;;6996:1;6993;6986:12;6940:60;6890:116;:::o;7012:133::-;7055:5;7093:6;7080:20;7071:29;;7109:30;7133:5;7109:30;:::i;:::-;7012:133;;;;:::o;7151:468::-;7216:6;7224;7273:2;7261:9;7252:7;7248:23;7244:32;7241:119;;;7279:79;;:::i;:::-;7241:119;7399:1;7424:53;7469:7;7460:6;7449:9;7445:22;7424:53;:::i;:::-;7414:63;;7370:117;7526:2;7552:50;7594:7;7585:6;7574:9;7570:22;7552:50;:::i;:::-;7542:60;;7497:115;7151:468;;;;;:::o;7625:323::-;7681:6;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:50;7923:7;7914:6;7903:9;7899:22;7881:50;:::i;:::-;7871:60;;7827:114;7625:323;;;;:::o;7954:117::-;8063:1;8060;8053:12;8077:117;8186:1;8183;8176:12;8200:180;8248:77;8245:1;8238:88;8345:4;8342:1;8335:15;8369:4;8366:1;8359:15;8386:281;8469:27;8491:4;8469:27;:::i;:::-;8461:6;8457:40;8599:6;8587:10;8584:22;8563:18;8551:10;8548:34;8545:62;8542:88;;;8610:18;;:::i;:::-;8542:88;8650:10;8646:2;8639:22;8429:238;8386:281;;:::o;8673:129::-;8707:6;8734:20;;:::i;:::-;8724:30;;8763:33;8791:4;8783:6;8763:33;:::i;:::-;8673:129;;;:::o;8808:307::-;8869:4;8959:18;8951:6;8948:30;8945:56;;;8981:18;;:::i;:::-;8945:56;9019:29;9041:6;9019:29;:::i;:::-;9011:37;;9103:4;9097;9093:15;9085:23;;8808:307;;;:::o;9121:146::-;9218:6;9213:3;9208;9195:30;9259:1;9250:6;9245:3;9241:16;9234:27;9121:146;;;:::o;9273:423::-;9350:5;9375:65;9391:48;9432:6;9391:48;:::i;:::-;9375:65;:::i;:::-;9366:74;;9463:6;9456:5;9449:21;9501:4;9494:5;9490:16;9539:3;9530:6;9525:3;9521:16;9518:25;9515:112;;;9546:79;;:::i;:::-;9515:112;9636:54;9683:6;9678:3;9673;9636:54;:::i;:::-;9356:340;9273:423;;;;;:::o;9715:338::-;9770:5;9819:3;9812:4;9804:6;9800:17;9796:27;9786:122;;9827:79;;:::i;:::-;9786:122;9944:6;9931:20;9969:78;10043:3;10035:6;10028:4;10020:6;10016:17;9969:78;:::i;:::-;9960:87;;9776:277;9715:338;;;;:::o;10059:943::-;10154:6;10162;10170;10178;10227:3;10215:9;10206:7;10202:23;10198:33;10195:120;;;10234:79;;:::i;:::-;10195:120;10354:1;10379:53;10424:7;10415:6;10404:9;10400:22;10379:53;:::i;:::-;10369:63;;10325:117;10481:2;10507:53;10552:7;10543:6;10532:9;10528:22;10507:53;:::i;:::-;10497:63;;10452:118;10609:2;10635:53;10680:7;10671:6;10660:9;10656:22;10635:53;:::i;:::-;10625:63;;10580:118;10765:2;10754:9;10750:18;10737:32;10796:18;10788:6;10785:30;10782:117;;;10818:79;;:::i;:::-;10782:117;10923:62;10977:7;10968:6;10957:9;10953:22;10923:62;:::i;:::-;10913:72;;10708:287;10059:943;;;;;;;:::o;11008:311::-;11085:4;11175:18;11167:6;11164:30;11161:56;;;11197:18;;:::i;:::-;11161:56;11247:4;11239:6;11235:17;11227:25;;11307:4;11301;11297:15;11289:23;;11008:311;;;:::o;11325:117::-;11434:1;11431;11424:12;11465:710;11561:5;11586:81;11602:64;11659:6;11602:64;:::i;:::-;11586:81;:::i;:::-;11577:90;;11687:5;11716:6;11709:5;11702:21;11750:4;11743:5;11739:16;11732:23;;11803:4;11795:6;11791:17;11783:6;11779:30;11832:3;11824:6;11821:15;11818:122;;;11851:79;;:::i;:::-;11818:122;11966:6;11949:220;11983:6;11978:3;11975:15;11949:220;;;12058:3;12087:37;12120:3;12108:10;12087:37;:::i;:::-;12082:3;12075:50;12154:4;12149:3;12145:14;12138:21;;12025:144;12009:4;12004:3;12000:14;11993:21;;11949:220;;;11953:21;11567:608;;11465:710;;;;;:::o;12198:370::-;12269:5;12318:3;12311:4;12303:6;12299:17;12295:27;12285:122;;12326:79;;:::i;:::-;12285:122;12443:6;12430:20;12468:94;12558:3;12550:6;12543:4;12535:6;12531:17;12468:94;:::i;:::-;12459:103;;12275:293;12198:370;;;;:::o;12574:539::-;12658:6;12707:2;12695:9;12686:7;12682:23;12678:32;12675:119;;;12713:79;;:::i;:::-;12675:119;12861:1;12850:9;12846:17;12833:31;12891:18;12883:6;12880:30;12877:117;;;12913:79;;:::i;:::-;12877:117;13018:78;13088:7;13079:6;13068:9;13064:22;13018:78;:::i;:::-;13008:88;;12804:302;12574:539;;;;:::o;13119:474::-;13187:6;13195;13244:2;13232:9;13223:7;13219:23;13215:32;13212:119;;;13250:79;;:::i;:::-;13212:119;13370:1;13395:53;13440:7;13431:6;13420:9;13416:22;13395:53;:::i;:::-;13385:63;;13341:117;13497:2;13523:53;13568:7;13559:6;13548:9;13544:22;13523:53;:::i;:::-;13513:63;;13468:118;13119:474;;;;;:::o;13599:308::-;13661:4;13751:18;13743:6;13740:30;13737:56;;;13773:18;;:::i;:::-;13737:56;13811:29;13833:6;13811:29;:::i;:::-;13803:37;;13895:4;13889;13885:15;13877:23;;13599:308;;;:::o;13913:425::-;13991:5;14016:66;14032:49;14074:6;14032:49;:::i;:::-;14016:66;:::i;:::-;14007:75;;14105:6;14098:5;14091:21;14143:4;14136:5;14132:16;14181:3;14172:6;14167:3;14163:16;14160:25;14157:112;;;14188:79;;:::i;:::-;14157:112;14278:54;14325:6;14320:3;14315;14278:54;:::i;:::-;13997:341;13913:425;;;;;:::o;14358:340::-;14414:5;14463:3;14456:4;14448:6;14444:17;14440:27;14430:122;;14471:79;;:::i;:::-;14430:122;14588:6;14575:20;14613:79;14688:3;14680:6;14673:4;14665:6;14661:17;14613:79;:::i;:::-;14604:88;;14420:278;14358:340;;;;:::o;14704:509::-;14773:6;14822:2;14810:9;14801:7;14797:23;14793:32;14790:119;;;14828:79;;:::i;:::-;14790:119;14976:1;14965:9;14961:17;14948:31;15006:18;14998:6;14995:30;14992:117;;;15028:79;;:::i;:::-;14992:117;15133:63;15188:7;15179:6;15168:9;15164:22;15133:63;:::i;:::-;15123:73;;14919:287;14704:509;;;;:::o;15219:180::-;15267:77;15264:1;15257:88;15364:4;15361:1;15354:15;15388:4;15385:1;15378:15;15405:320;15449:6;15486:1;15480:4;15476:12;15466:22;;15533:1;15527:4;15523:12;15554:18;15544:81;;15610:4;15602:6;15598:17;15588:27;;15544:81;15672:2;15664:6;15661:14;15641:18;15638:38;15635:84;;15691:18;;:::i;:::-;15635:84;15456:269;15405:320;;;:::o;15731:220::-;15871:34;15867:1;15859:6;15855:14;15848:58;15940:3;15935:2;15927:6;15923:15;15916:28;15731:220;:::o;15957:366::-;16099:3;16120:67;16184:2;16179:3;16120:67;:::i;:::-;16113:74;;16196:93;16285:3;16196:93;:::i;:::-;16314:2;16309:3;16305:12;16298:19;;15957:366;;;:::o;16329:419::-;16495:4;16533:2;16522:9;16518:18;16510:26;;16582:9;16576:4;16572:20;16568:1;16557:9;16553:17;16546:47;16610:131;16736:4;16610:131;:::i;:::-;16602:139;;16329:419;;;:::o;16754:248::-;16894:34;16890:1;16882:6;16878:14;16871:58;16963:31;16958:2;16950:6;16946:15;16939:56;16754:248;:::o;17008:366::-;17150:3;17171:67;17235:2;17230:3;17171:67;:::i;:::-;17164:74;;17247:93;17336:3;17247:93;:::i;:::-;17365:2;17360:3;17356:12;17349:19;;17008:366;;;:::o;17380:419::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:232::-;17945:34;17941:1;17933:6;17929:14;17922:58;18014:15;18009:2;18001:6;17997:15;17990:40;17805:232;:::o;18043:366::-;18185:3;18206:67;18270:2;18265:3;18206:67;:::i;:::-;18199:74;;18282:93;18371:3;18282:93;:::i;:::-;18400:2;18395:3;18391:12;18384:19;;18043:366;;;:::o;18415:419::-;18581:4;18619:2;18608:9;18604:18;18596:26;;18668:9;18662:4;18658:20;18654:1;18643:9;18639:17;18632:47;18696:131;18822:4;18696:131;:::i;:::-;18688:139;;18415:419;;;:::o;18840:230::-;18980:34;18976:1;18968:6;18964:14;18957:58;19049:13;19044:2;19036:6;19032:15;19025:38;18840:230;:::o;19076:366::-;19218:3;19239:67;19303:2;19298:3;19239:67;:::i;:::-;19232:74;;19315:93;19404:3;19315:93;:::i;:::-;19433:2;19428:3;19424:12;19417:19;;19076:366;;;:::o;19448:419::-;19614:4;19652:2;19641:9;19637:18;19629:26;;19701:9;19695:4;19691:20;19687:1;19676:9;19672:17;19665:47;19729:131;19855:4;19729:131;:::i;:::-;19721:139;;19448:419;;;:::o;19873:231::-;20013:34;20009:1;20001:6;19997:14;19990:58;20082:14;20077:2;20069:6;20065:15;20058:39;19873:231;:::o;20110:366::-;20252:3;20273:67;20337:2;20332:3;20273:67;:::i;:::-;20266:74;;20349:93;20438:3;20349:93;:::i;:::-;20467:2;20462:3;20458:12;20451:19;;20110:366;;;:::o;20482:419::-;20648:4;20686:2;20675:9;20671:18;20663:26;;20735:9;20729:4;20725:20;20721:1;20710:9;20706:17;20699:47;20763:131;20889:4;20763:131;:::i;:::-;20755:139;;20482:419;;;:::o;20907:180::-;20955:77;20952:1;20945:88;21052:4;21049:1;21042:15;21076:4;21073:1;21066:15;21093:174;21233:26;21229:1;21221:6;21217:14;21210:50;21093:174;:::o;21273:366::-;21415:3;21436:67;21500:2;21495:3;21436:67;:::i;:::-;21429:74;;21512:93;21601:3;21512:93;:::i;:::-;21630:2;21625:3;21621:12;21614:19;;21273:366;;;:::o;21645:419::-;21811:4;21849:2;21838:9;21834:18;21826:26;;21898:9;21892:4;21888:20;21884:1;21873:9;21869:17;21862:47;21926:131;22052:4;21926:131;:::i;:::-;21918:139;;21645:419;;;:::o;22070:228::-;22210:34;22206:1;22198:6;22194:14;22187:58;22279:11;22274:2;22266:6;22262:15;22255:36;22070:228;:::o;22304:366::-;22446:3;22467:67;22531:2;22526:3;22467:67;:::i;:::-;22460:74;;22543:93;22632:3;22543:93;:::i;:::-;22661:2;22656:3;22652:12;22645:19;;22304:366;;;:::o;22676:419::-;22842:4;22880:2;22869:9;22865:18;22857:26;;22929:9;22923:4;22919:20;22915:1;22904:9;22900:17;22893:47;22957:131;23083:4;22957:131;:::i;:::-;22949:139;;22676:419;;;:::o;23101:230::-;23241:34;23237:1;23229:6;23225:14;23218:58;23310:13;23305:2;23297:6;23293:15;23286:38;23101:230;:::o;23337:366::-;23479:3;23500:67;23564:2;23559:3;23500:67;:::i;:::-;23493:74;;23576:93;23665:3;23576:93;:::i;:::-;23694:2;23689:3;23685:12;23678:19;;23337:366;;;:::o;23709:419::-;23875:4;23913:2;23902:9;23898:18;23890:26;;23962:9;23956:4;23952:20;23948:1;23937:9;23933:17;23926:47;23990:131;24116:4;23990:131;:::i;:::-;23982:139;;23709:419;;;:::o;24134:182::-;24274:34;24270:1;24262:6;24258:14;24251:58;24134:182;:::o;24322:366::-;24464:3;24485:67;24549:2;24544:3;24485:67;:::i;:::-;24478:74;;24561:93;24650:3;24561:93;:::i;:::-;24679:2;24674:3;24670:12;24663:19;;24322:366;;;:::o;24694:419::-;24860:4;24898:2;24887:9;24883:18;24875:26;;24947:9;24941:4;24937:20;24933:1;24922:9;24918:17;24911:47;24975:131;25101:4;24975:131;:::i;:::-;24967:139;;24694:419;;;:::o;25119:161::-;25259:13;25255:1;25247:6;25243:14;25236:37;25119:161;:::o;25286:366::-;25428:3;25449:67;25513:2;25508:3;25449:67;:::i;:::-;25442:74;;25525:93;25614:3;25525:93;:::i;:::-;25643:2;25638:3;25634:12;25627:19;;25286:366;;;:::o;25658:419::-;25824:4;25862:2;25851:9;25847:18;25839:26;;25911:9;25905:4;25901:20;25897:1;25886:9;25882:17;25875:47;25939:131;26065:4;25939:131;:::i;:::-;25931:139;;25658:419;;;:::o;26083:159::-;26223:11;26219:1;26211:6;26207:14;26200:35;26083:159;:::o;26248:365::-;26390:3;26411:66;26475:1;26470:3;26411:66;:::i;:::-;26404:73;;26486:93;26575:3;26486:93;:::i;:::-;26604:2;26599:3;26595:12;26588:19;;26248:365;;;:::o;26619:419::-;26785:4;26823:2;26812:9;26808:18;26800:26;;26872:9;26866:4;26862:20;26858:1;26847:9;26843:17;26836:47;26900:131;27026:4;26900:131;:::i;:::-;26892:139;;26619:419;;;:::o;27044:180::-;27092:77;27089:1;27082:88;27189:4;27186:1;27179:15;27213:4;27210:1;27203:15;27230:410;27270:7;27293:20;27311:1;27293:20;:::i;:::-;27288:25;;27327:20;27345:1;27327:20;:::i;:::-;27322:25;;27382:1;27379;27375:9;27404:30;27422:11;27404:30;:::i;:::-;27393:41;;27583:1;27574:7;27570:15;27567:1;27564:22;27544:1;27537:9;27517:83;27494:139;;27613:18;;:::i;:::-;27494:139;27278:362;27230:410;;;;:::o;27646:169::-;27786:21;27782:1;27774:6;27770:14;27763:45;27646:169;:::o;27821:366::-;27963:3;27984:67;28048:2;28043:3;27984:67;:::i;:::-;27977:74;;28060:93;28149:3;28060:93;:::i;:::-;28178:2;28173:3;28169:12;28162:19;;27821:366;;;:::o;28193:419::-;28359:4;28397:2;28386:9;28382:18;28374:26;;28446:9;28440:4;28436:20;28432:1;28421:9;28417:17;28410:47;28474:131;28600:4;28474:131;:::i;:::-;28466:139;;28193:419;;;:::o;28618:233::-;28657:3;28680:24;28698:5;28680:24;:::i;:::-;28671:33;;28726:66;28719:5;28716:77;28713:103;;28796:18;;:::i;:::-;28713:103;28843:1;28836:5;28832:13;28825:20;;28618:233;;;:::o;28857:148::-;28959:11;28996:3;28981:18;;28857:148;;;;:::o;29011:141::-;29060:4;29083:3;29075:11;;29106:3;29103:1;29096:14;29140:4;29137:1;29127:18;29119:26;;29011:141;;;:::o;29182:874::-;29285:3;29322:5;29316:12;29351:36;29377:9;29351:36;:::i;:::-;29403:89;29485:6;29480:3;29403:89;:::i;:::-;29396:96;;29523:1;29512:9;29508:17;29539:1;29534:166;;;;29714:1;29709:341;;;;29501:549;;29534:166;29618:4;29614:9;29603;29599:25;29594:3;29587:38;29680:6;29673:14;29666:22;29658:6;29654:35;29649:3;29645:45;29638:52;;29534:166;;29709:341;29776:38;29808:5;29776:38;:::i;:::-;29836:1;29850:154;29864:6;29861:1;29858:13;29850:154;;;29938:7;29932:14;29928:1;29923:3;29919:11;29912:35;29988:1;29979:7;29975:15;29964:26;;29886:4;29883:1;29879:12;29874:17;;29850:154;;;30033:6;30028:3;30024:16;30017:23;;29716:334;;29501:549;;29289:767;;29182:874;;;;:::o;30062:390::-;30168:3;30196:39;30229:5;30196:39;:::i;:::-;30251:89;30333:6;30328:3;30251:89;:::i;:::-;30244:96;;30349:65;30407:6;30402:3;30395:4;30388:5;30384:16;30349:65;:::i;:::-;30439:6;30434:3;30430:16;30423:23;;30172:280;30062:390;;;;:::o;30458:155::-;30598:7;30594:1;30586:6;30582:14;30575:31;30458:155;:::o;30619:400::-;30779:3;30800:84;30882:1;30877:3;30800:84;:::i;:::-;30793:91;;30893:93;30982:3;30893:93;:::i;:::-;31011:1;31006:3;31002:11;30995:18;;30619:400;;;:::o;31025:695::-;31303:3;31325:92;31413:3;31404:6;31325:92;:::i;:::-;31318:99;;31434:95;31525:3;31516:6;31434:95;:::i;:::-;31427:102;;31546:148;31690:3;31546:148;:::i;:::-;31539:155;;31711:3;31704:10;;31025:695;;;;;:::o;31726:225::-;31866:34;31862:1;31854:6;31850:14;31843:58;31935:8;31930:2;31922:6;31918:15;31911:33;31726:225;:::o;31957:366::-;32099:3;32120:67;32184:2;32179:3;32120:67;:::i;:::-;32113:74;;32196:93;32285:3;32196:93;:::i;:::-;32314:2;32309:3;32305:12;32298:19;;31957:366;;;:::o;32329:419::-;32495:4;32533:2;32522:9;32518:18;32510:26;;32582:9;32576:4;32572:20;32568:1;32557:9;32553:17;32546:47;32610:131;32736:4;32610:131;:::i;:::-;32602:139;;32329:419;;;:::o;32754:93::-;32791:6;32838:2;32833;32826:5;32822:14;32818:23;32808:33;;32754:93;;;:::o;32853:107::-;32897:8;32947:5;32941:4;32937:16;32916:37;;32853:107;;;;:::o;32966:393::-;33035:6;33085:1;33073:10;33069:18;33108:97;33138:66;33127:9;33108:97;:::i;:::-;33226:39;33256:8;33245:9;33226:39;:::i;:::-;33214:51;;33298:4;33294:9;33287:5;33283:21;33274:30;;33347:4;33337:8;33333:19;33326:5;33323:30;33313:40;;33042:317;;32966:393;;;;;:::o;33365:60::-;33393:3;33414:5;33407:12;;33365:60;;;:::o;33431:142::-;33481:9;33514:53;33532:34;33541:24;33559:5;33541:24;:::i;:::-;33532:34;:::i;:::-;33514:53;:::i;:::-;33501:66;;33431:142;;;:::o;33579:75::-;33622:3;33643:5;33636:12;;33579:75;;;:::o;33660:269::-;33770:39;33801:7;33770:39;:::i;:::-;33831:91;33880:41;33904:16;33880:41;:::i;:::-;33872:6;33865:4;33859:11;33831:91;:::i;:::-;33825:4;33818:105;33736:193;33660:269;;;:::o;33935:73::-;33980:3;33935:73;:::o;34014:189::-;34091:32;;:::i;:::-;34132:65;34190:6;34182;34176:4;34132:65;:::i;:::-;34067:136;34014:189;;:::o;34209:186::-;34269:120;34286:3;34279:5;34276:14;34269:120;;;34340:39;34377:1;34370:5;34340:39;:::i;:::-;34313:1;34306:5;34302:13;34293:22;;34269:120;;;34209:186;;:::o;34401:543::-;34502:2;34497:3;34494:11;34491:446;;;34536:38;34568:5;34536:38;:::i;:::-;34620:29;34638:10;34620:29;:::i;:::-;34610:8;34606:44;34803:2;34791:10;34788:18;34785:49;;;34824:8;34809:23;;34785:49;34847:80;34903:22;34921:3;34903:22;:::i;:::-;34893:8;34889:37;34876:11;34847:80;:::i;:::-;34506:431;;34491:446;34401:543;;;:::o;34950:117::-;35004:8;35054:5;35048:4;35044:16;35023:37;;34950:117;;;;:::o;35073:169::-;35117:6;35150:51;35198:1;35194:6;35186:5;35183:1;35179:13;35150:51;:::i;:::-;35146:56;35231:4;35225;35221:15;35211:25;;35124:118;35073:169;;;;:::o;35247:295::-;35323:4;35469:29;35494:3;35488:4;35469:29;:::i;:::-;35461:37;;35531:3;35528:1;35524:11;35518:4;35515:21;35507:29;;35247:295;;;;:::o;35547:1395::-;35664:37;35697:3;35664:37;:::i;:::-;35766:18;35758:6;35755:30;35752:56;;;35788:18;;:::i;:::-;35752:56;35832:38;35864:4;35858:11;35832:38;:::i;:::-;35917:67;35977:6;35969;35963:4;35917:67;:::i;:::-;36011:1;36035:4;36022:17;;36067:2;36059:6;36056:14;36084:1;36079:618;;;;36741:1;36758:6;36755:77;;;36807:9;36802:3;36798:19;36792:26;36783:35;;36755:77;36858:67;36918:6;36911:5;36858:67;:::i;:::-;36852:4;36845:81;36714:222;36049:887;;36079:618;36131:4;36127:9;36119:6;36115:22;36165:37;36197:4;36165:37;:::i;:::-;36224:1;36238:208;36252:7;36249:1;36246:14;36238:208;;;36331:9;36326:3;36322:19;36316:26;36308:6;36301:42;36382:1;36374:6;36370:14;36360:24;;36429:2;36418:9;36414:18;36401:31;;36275:4;36272:1;36268:12;36263:17;;36238:208;;;36474:6;36465:7;36462:19;36459:179;;;36532:9;36527:3;36523:19;36517:26;36575:48;36617:4;36609:6;36605:17;36594:9;36575:48;:::i;:::-;36567:6;36560:64;36482:156;36459:179;36684:1;36680;36672:6;36668:14;36664:22;36658:4;36651:36;36086:611;;;36049:887;;35639:1303;;;35547:1395;;:::o;36948:224::-;37088:34;37084:1;37076:6;37072:14;37065:58;37157:7;37152:2;37144:6;37140:15;37133:32;36948:224;:::o;37178:366::-;37320:3;37341:67;37405:2;37400:3;37341:67;:::i;:::-;37334:74;;37417:93;37506:3;37417:93;:::i;:::-;37535:2;37530:3;37526:12;37519:19;;37178:366;;;:::o;37550:419::-;37716:4;37754:2;37743:9;37739:18;37731:26;;37803:9;37797:4;37793:20;37789:1;37778:9;37774:17;37767:47;37831:131;37957:4;37831:131;:::i;:::-;37823:139;;37550:419;;;:::o;37975:223::-;38115:34;38111:1;38103:6;38099:14;38092:58;38184:6;38179:2;38171:6;38167:15;38160:31;37975:223;:::o;38204:366::-;38346:3;38367:67;38431:2;38426:3;38367:67;:::i;:::-;38360:74;;38443:93;38532:3;38443:93;:::i;:::-;38561:2;38556:3;38552:12;38545:19;;38204:366;;;:::o;38576:419::-;38742:4;38780:2;38769:9;38765:18;38757:26;;38829:9;38823:4;38819:20;38815:1;38804:9;38800:17;38793:47;38857:131;38983:4;38857:131;:::i;:::-;38849:139;;38576:419;;;:::o;39001:182::-;39141:34;39137:1;39129:6;39125:14;39118:58;39001:182;:::o;39189:366::-;39331:3;39352:67;39416:2;39411:3;39352:67;:::i;:::-;39345:74;;39428:93;39517:3;39428:93;:::i;:::-;39546:2;39541:3;39537:12;39530:19;;39189:366;;;:::o;39561:419::-;39727:4;39765:2;39754:9;39750:18;39742:26;;39814:9;39808:4;39804:20;39800:1;39789:9;39785:17;39778:47;39842:131;39968:4;39842:131;:::i;:::-;39834:139;;39561:419;;;:::o;39986:175::-;40126:27;40122:1;40114:6;40110:14;40103:51;39986:175;:::o;40167:366::-;40309:3;40330:67;40394:2;40389:3;40330:67;:::i;:::-;40323:74;;40406:93;40495:3;40406:93;:::i;:::-;40524:2;40519:3;40515:12;40508:19;;40167:366;;;:::o;40539:419::-;40705:4;40743:2;40732:9;40728:18;40720:26;;40792:9;40786:4;40782:20;40778:1;40767:9;40763:17;40756:47;40820:131;40946:4;40820:131;:::i;:::-;40812:139;;40539:419;;;:::o;40964:237::-;41104:34;41100:1;41092:6;41088:14;41081:58;41173:20;41168:2;41160:6;41156:15;41149:45;40964:237;:::o;41207:366::-;41349:3;41370:67;41434:2;41429:3;41370:67;:::i;:::-;41363:74;;41446:93;41535:3;41446:93;:::i;:::-;41564:2;41559:3;41555:12;41548:19;;41207:366;;;:::o;41579:419::-;41745:4;41783:2;41772:9;41768:18;41760:26;;41832:9;41826:4;41822:20;41818:1;41807:9;41803:17;41796:47;41860:131;41986:4;41860:131;:::i;:::-;41852:139;;41579:419;;;:::o;42004:180::-;42052:77;42049:1;42042:88;42149:4;42146:1;42139:15;42173:4;42170:1;42163:15;42190:98;42241:6;42275:5;42269:12;42259:22;;42190:98;;;:::o;42294:168::-;42377:11;42411:6;42406:3;42399:19;42451:4;42446:3;42442:14;42427:29;;42294:168;;;;:::o;42468:373::-;42554:3;42582:38;42614:5;42582:38;:::i;:::-;42636:70;42699:6;42694:3;42636:70;:::i;:::-;42629:77;;42715:65;42773:6;42768:3;42761:4;42754:5;42750:16;42715:65;:::i;:::-;42805:29;42827:6;42805:29;:::i;:::-;42800:3;42796:39;42789:46;;42558:283;42468:373;;;;:::o;42847:640::-;43042:4;43080:3;43069:9;43065:19;43057:27;;43094:71;43162:1;43151:9;43147:17;43138:6;43094:71;:::i;:::-;43175:72;43243:2;43232:9;43228:18;43219:6;43175:72;:::i;:::-;43257;43325:2;43314:9;43310:18;43301:6;43257:72;:::i;:::-;43376:9;43370:4;43366:20;43361:2;43350:9;43346:18;43339:48;43404:76;43475:4;43466:6;43404:76;:::i;:::-;43396:84;;42847:640;;;;;;;:::o;43493:141::-;43549:5;43580:6;43574:13;43565:22;;43596:32;43622:5;43596:32;:::i;:::-;43493:141;;;;:::o;43640:349::-;43709:6;43758:2;43746:9;43737:7;43733:23;43729:32;43726:119;;;43764:79;;:::i;:::-;43726:119;43884:1;43909:63;43964:7;43955:6;43944:9;43940:22;43909:63;:::i;:::-;43899:73;;43855:127;43640:349;;;;:::o;43995:240::-;44135:34;44131:1;44123:6;44119:14;44112:58;44204:23;44199:2;44191:6;44187:15;44180:48;43995:240;:::o;44241:366::-;44383:3;44404:67;44468:2;44463:3;44404:67;:::i;:::-;44397:74;;44480:93;44569:3;44480:93;:::i;:::-;44598:2;44593:3;44589:12;44582:19;;44241:366;;;:::o;44613:419::-;44779:4;44817:2;44806:9;44802:18;44794:26;;44866:9;44860:4;44856:20;44852:1;44841:9;44837:17;44830:47;44894:131;45020:4;44894:131;:::i;:::-;44886:139;;44613:419;;;:::o;45038:194::-;45078:4;45098:20;45116:1;45098:20;:::i;:::-;45093:25;;45132:20;45150:1;45132:20;:::i;:::-;45127:25;;45176:1;45173;45169:9;45161:17;;45200:1;45194:4;45191:11;45188:37;;;45205:18;;:::i;:::-;45188:37;45038:194;;;;:::o;45238:191::-;45278:3;45297:20;45315:1;45297:20;:::i;:::-;45292:25;;45331:20;45349:1;45331:20;:::i;:::-;45326:25;;45374:1;45371;45367:9;45360:16;;45395:3;45392:1;45389:10;45386:36;;;45402:18;;:::i;:::-;45386:36;45238:191;;;;:::o;45435:180::-;45483:77;45480:1;45473:88;45580:4;45577:1;45570:15;45604:4;45601:1;45594:15;45621:182;45761:34;45757:1;45749:6;45745:14;45738:58;45621:182;:::o;45809:366::-;45951:3;45972:67;46036:2;46031:3;45972:67;:::i;:::-;45965:74;;46048:93;46137:3;46048:93;:::i;:::-;46166:2;46161:3;46157:12;46150:19;;45809:366;;;:::o;46181:419::-;46347:4;46385:2;46374:9;46370:18;46362:26;;46434:9;46428:4;46424:20;46420:1;46409:9;46405:17;46398:47;46462:131;46588:4;46462:131;:::i;:::-;46454:139;;46181:419;;;:::o;46606:178::-;46746:30;46742:1;46734:6;46730:14;46723:54;46606:178;:::o;46790:366::-;46932:3;46953:67;47017:2;47012:3;46953:67;:::i;:::-;46946:74;;47029:93;47118:3;47029:93;:::i;:::-;47147:2;47142:3;47138:12;47131:19;;46790:366;;;:::o;47162:419::-;47328:4;47366:2;47355:9;47351:18;47343:26;;47415:9;47409:4;47405:20;47401:1;47390:9;47386:17;47379:47;47443:131;47569:4;47443:131;:::i;:::-;47435:139;;47162:419;;;:::o

Swarm Source

ipfs://f688b8d442decc746ba5cc262394534fee20f9582a9f9f5e3d359ca5b562f43e
Loading