ETH Price: $2,972.79 (+2.49%)
Gas: 1 Gwei

Token

Chateau De Generatif (CDG)
 

Overview

Max Total Supply

743 CDG

Holders

140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
depressif.eth
Balance
10 CDG
0xa556ce4353d9432b211311f87383f847a7bb1c1b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ChateauDeGeneratif

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-13
*/

pragma solidity ^0.8.20;

library GenLib {
    string internal constant _TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

        function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return "";

        string memory table = _TABLE;

        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            let tablePtr := add(table, 1)

            let resultPtr := add(result, 32)

            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    function parseInt(string memory _a)
        internal
        pure
        returns (uint8 _parsedInt)
    {
        bytes memory bresult = bytes(_a);
        uint8 mint = 0;
        for (uint8 i = 0; i < bresult.length; i++) {
            if (
                (uint8(uint8(bresult[i])) >= 48) &&
                (uint8(uint8(bresult[i])) <= 57)
            ) {
                mint *= 10;
                mint += uint8(bresult[i]) - 48;
            }
        }
        return mint;
    }

    function parseInt256(string memory _a) internal pure returns (uint256) {
    bytes memory bresult = bytes(_a);
    uint256 mint = 0;
    for (uint256 i = 0; i < bresult.length; i++) {
        if (bresult[i] >= "0" && bresult[i] <= "9") {
            mint *= 10;
            mint += uint256(uint8(bresult[i]) - 48); // ASCII code for '0' is 48
        }
    }
    return mint;
    }

    function substring(
        string memory str,
        uint256 startIndex,
        uint256 endIndex
    ) internal pure returns (string memory) {
        bytes memory strBytes = bytes(str);
        bytes memory result = new bytes(endIndex - startIndex);
        for (uint256 i = startIndex; i < endIndex; i++) {
            result[i - startIndex] = strBytes[i];
        }
        return string(result);
    }

}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 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.

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && 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
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @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), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

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

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


/**
 * @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 address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;


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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;








/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 {
        _approve(to, tokenId, _msgSender());
    }

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

        return _getApproved(tokenId);
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @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 {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;




/**
 * @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.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @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 returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

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

        return previousOwner;
    }

    /**
     * @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 = balanceOf(to) - 1;
        _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 = balanceOf(from);
        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();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

// File: CDG.sol


pragma solidity ^0.8.20;





contract ChateauDeGeneratif is ERC721Enumerable, ReentrancyGuard {
    /*
                                   
        .g8"""bgd `7MM"""Yb.     .g8"""bgd      
        .dP'     `M   MM    `Yb. .dP'     `M      
        dM'       `   MM     `Mb dM'       `      
        MM            MM      MM MM               
        MM.           MM     ,MP MM.    `7MMF'    
        `Mb.     ,'   MM    ,dP' `Mb.     MM      
        `"bmmmd'  .JMMmmmdP'     `"bmmmdPY     (2023)
    
    */
    using GenLib for uint8;

    struct TokenDetails {
        address tokenAddress;
        uint256 mintPrice;
        uint256 mintLimit;
        uint256 mintCount;
        bool isAccepted;
    }
    
    struct Trait {
        string traitName;
        string traitType;
        string pixels;
        uint256 pixelCount;
    }

    bool public mintingOpen = false;

    //Mappings
    mapping(address => uint256) public walletMintCount;
    mapping(uint256 => Trait[]) public traitTypes;
    mapping(string => bool) hashToMinted;
    mapping(uint256 => string) internal tokenIdToHash;
    mapping(uint8 => TokenDetails) public tokenDetails;
    mapping(uint8 => string[]) private secondTerms;

    //uint256s
    uint256 SEED_NONCE = 0;
    uint256 public maxSupply = 2800;
    uint256 public mintLimitPerWallet = 10;
    uint256 private constant splPer1 = 70;

    //ERC-20 Token Addresses
    address constant ETH_ADDRESS = 0x0000000000000000000000000000000000000000;
    
    address LINK_ADDRESS = 0x514910771AF9Ca656af840dff83E8264EcF986CA;
    address WBTC_ADDRESS = 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599;
    address RLB_ADDRESS = 0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d;
    address SHIB_ADDRESS = 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE;
    address PEPE_ADDRESS = 0x6982508145454Ce325dDbE47a25d4ec3d2311933;
    address BITCOIN_ADDRESS = 0x72e4f9F808C49A2a61dE9C5896298920Dc4EEEa9;
    address APE_ADDRESS = 0x4d224452801ACEd8B2F0aebE155379bb5D594381;
    address LADYS_ADDRESS = 0x12970E6868f88f6557B76120662c1B3E50A646bf;
    address GP_ADDRESS = 0x38Ec27c6F05a169e7eD03132bcA7d0cfeE93C2C5;
    
    //address
    address _owner;
    address payable private address1;
    address private constant address2 = 0xD1f785A1642c3310da57Bc966DB21328d96AC2c2;

    //string arrays
    string[] LETTERS = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];

    //uint arrays
    uint16[][8] TIERS;

    //This contract is a substantially modified fork of Anonymice, credit to the Anonymice devs for their work, which forms the basis of the hash derivation and SVG encoding!

constructor() ERC721("Chateau De Generatif", "CDG") {
        _owner = msg.sender;
        address1 = payable(_owner);

        // Populate second terms for each token type
        secondTerms[0] = ["Vitalique", "Gweigio", "DeFiasco", "De Generatif", "Hashianti", "Defignac", "Blockbelle"]; // ETH
        secondTerms[1] = ["Chainiot Noir", "D'Oracle", "Nodevignoble", "Linklanc", "Linklaret", "Oracelle", "Syncsirah"]; // LINK
        secondTerms[2] = ["Satoshiraz", "Wraprignon", "Ledgernet", "Bitbourg", "Hasherlot", "Ledgerlieu", "Bitbeau"]; // WBTC
        secondTerms[3] = ["Casinot", "Betblanc", "Rol' Brut", "Rollblanc", "Rouletteau", "Gambelais", "Casinac"]; // RLB
        secondTerms[4] = ["Le Dogelais", "Pawsecco", "Puppignon", "Shibernet", "Inuvignon", "Dogelato", "Puppoli"]; // SHIB
        secondTerms[5] = ["De Pepe", "Le Pepernay", "Greenogrigio", "Pays Du Pepe", "Ribbitret", "Froggiac", "Hopricot"]; // PEPE
        secondTerms[6] = ["Sonique", "Hedgehogue", "Barack", "Obamaroma", "Pottere", "Le Coin De Bite", "Hedgehaut"]; // BITCOIN
        secondTerms[7] = ["Boredaux", "Apevignon", "Apellation D'Ape", "Apertino", "Apeaujolais", "Yachtinac", "Primatage"]; // APE
        secondTerms[8] = ["Remiliot", "De La Rave", "Ladylicante", "Shizo", "Miladoret", "Du Frank", "Chibicru"]; // LADYS
        secondTerms[9] = ["D'Or", "Chainpain", "Du Dragon", "Goldpour", "Gold Cuvee", "Dragonello", "Dragonderne"]; // GP

        // TokenDetails Enumerate
        tokenDetails[0] = TokenDetails(ETH_ADDRESS, 40000000000000000, 2240, 0, true); // ETH
        tokenDetails[1] = TokenDetails(LINK_ADDRESS, 5430000000000000000, 336, 0, true); // LINK
        tokenDetails[2] = TokenDetails(WBTC_ADDRESS, 170000, 280, 0, true); // WBTC
        tokenDetails[3] = TokenDetails(RLB_ADDRESS, 461000000000000000000, 280, 0, true); // RLB
        tokenDetails[4] = TokenDetails(SHIB_ADDRESS, 7800000000000000000000000, 336, 0, true); // SHIB
        tokenDetails[5] = TokenDetails(PEPE_ADDRESS, 50200000000000000000000000, 336, 0, true); // PEPE
        tokenDetails[6] = TokenDetails(BITCOIN_ADDRESS, 64000000000, 168, 0, true); // BITCOIN
        tokenDetails[7] = TokenDetails(APE_ADDRESS, 37000000000000000000, 140, 0, true); // APE
        tokenDetails[8] = TokenDetails(LADYS_ADDRESS, 351000000000000000000000000, 140, 0, true); // LADYS
        tokenDetails[9] = TokenDetails(GP_ADDRESS, 400000000000000000000000, 49, 0, true); // GP

        // Type
        TIERS[0] = [5300, 100, 850, 500, 700, 900, 700, 350, 300, 250];
        // Domaine
        TIERS[1] = [3400, 1200, 1100, 1000, 900, 500, 500, 500, 500, 400];
        // Vintage
        TIERS[2] = [3100, 2100, 1475, 1150, 800, 600, 350, 200, 125, 100];
        // Accessory
        TIERS[3] = [8300, 400, 250, 150, 300, 600];
        // Top
        TIERS[4] = [6000, 1000, 150, 250, 500, 750, 300, 750, 300];
        // Label
        TIERS[5] = [1700, 1800, 600, 1800, 1400, 1400, 800, 100, 400];
        // Condition
        TIERS[6] = [9000, 750, 200, 50];
        // Bottle
        TIERS[7] = [3700, 500, 1000, 1900, 1000, 1900];

    }

    /*

    888b     d888 d8b          888    
    8888b   d8888 Y8P          888    
    88888b.d88888              888    
    888Y88888P888 888 88888b.  888888 
    888 Y888P 888 888 888 "88b 888    
    888  Y8P  888 888 888  888 888    
    888   "   888 888 888  888 Y88b.  
    888       888 888 888  888  "Y888 

   */

    /**
     * @dev Converts a digit from 0 - 10000 into its corresponding rarity based on the given rarity tier.
     * @param _randinput The input from 0 - 10000 to use for rarity gen.
     * @param _rarityTier The tier to use.
     */
    function rarityGen(uint256 _randinput, uint8 _rarityTier)
        internal
        view
        returns (string memory)
    {
        uint16 currentLowerBound = 0;
        for (uint8 i = 0; i < TIERS[_rarityTier].length; i++) {
            uint16 thisPercentage = TIERS[_rarityTier][i];
            if (
                _randinput >= currentLowerBound &&
                _randinput < currentLowerBound + thisPercentage
            ) return i.toString();
            currentLowerBound = currentLowerBound + thisPercentage;
        }

        revert();
    }

    /**
     * @dev Generates a 9 digit hash from a tokenId, address, and random number.
     * @param _t The token id to be used within the hash.
     * @param _a The address to be used within the hash.
     * @param _c The custom nonce to be used within the hash.
     */
    function hash(
        uint256 _t,
        address _a,
        uint256 _c,
        uint8 _tokenId
    ) internal returns (string memory) {
        require(_c < 10);

        // This will generate a 9 character string.
        // Initialize currentHash directly with the string representation of _tokenId
        
        string memory currentHash = GenLib.toString(_tokenId);

        for (uint8 i = 0; i < 8; i++) {
            SEED_NONCE++;
            uint16 _randinput = uint16(
                uint256(
                    keccak256(
                        abi.encodePacked(
                            block.timestamp,
                            block.prevrandao,
                            _t,
                            _a,
                            _c,
                            SEED_NONCE
                        )
                    )
                ) % 10000
            );

            currentHash = string(
                abi.encodePacked(currentHash, rarityGen(_randinput, i))
            );
        }

        if (hashToMinted[currentHash]) return hash(_t, _a, _c + 1, _tokenId);

        return currentHash;
    }

    /**
     * @notice Mints your NFTs with the specified token
     * @param _tokenId The ID of the token to use for minting
     *                 0 for ETH, 1 for LINK, 2 for WBTC, 3 for RLB (...)
     * @param _quantity The number of NFTs to mint in this transaction.
     *                  Must be a positive number and not exceed the set mint limit (5).
     */
    function mintCDG(uint8 _tokenId, uint8 _quantity) payable public nonReentrant {
        require(mintingOpen || msg.sender == _owner, "Minting is closed");
        require(walletMintCount[msg.sender] + _quantity <= mintLimitPerWallet || msg.sender == _owner, "Exceeds wallet mint limit");
        require(_quantity > 0 && (_quantity <= 5 || msg.sender == _owner), "1 to 5 NFTs allowed per transaction");

        TokenDetails storage details = tokenDetails[_tokenId];
        require(details.isAccepted, "Token not accepted");

        uint256 totalTokenAmount = details.mintPrice * _quantity;
        uint256 _totalSupply = totalSupply();
        require(_totalSupply + _quantity <= maxSupply, "Exceeds max supply");
        require(details.mintCount + _quantity <= details.mintLimit, "Exceeds mint limit for token");

        if (_tokenId == 0) {
            require(msg.value == totalTokenAmount, "Incorrect ETH value");
        } else {
            require(msg.value == 0, "ETH not required for ERC-20 minting");
            IERC20 tokenContract = IERC20(details.tokenAddress);
            require(tokenContract.transferFrom(msg.sender, address(this), totalTokenAmount), "ERC20 Transfer failed");
        }

        for (uint8 i = 0; i < _quantity; i++) {
            uint256 newTokenId = _totalSupply + i;
            tokenIdToHash[newTokenId] = hash(newTokenId, msg.sender, 0, _tokenId);
            hashToMinted[tokenIdToHash[newTokenId]] = true;
            _mint(msg.sender, newTokenId);
        }

        details.mintCount += _quantity;
        walletMintCount[msg.sender] += _quantity;
    }

    /*

    8888888b.                        888 
    888   Y88b                       888 
    888    888                       888 
    888   d88P .d88b.   8888b.   .d88888 
    8888888P" d8P  Y8b     "88b d88" 888 
    888 T88b  88888888 .d888888 888  888 
    888  T88b Y8b.     888  888 Y88b 888 
    888   T88b "Y8888  "Y888888  "Y88888  

    */

    /**
    * @dev Helper function to generate name
    */
    function generateName(string memory tokenHash) public view returns (string memory) {
        // Parse once and reuse
        uint8[4] memory indices = [
            GenLib.parseInt(GenLib.substring(tokenHash, 0, 1)), // tokenType
            GenLib.parseInt(GenLib.substring(tokenHash, 1, 2)), // suffixIndex
            GenLib.parseInt(GenLib.substring(tokenHash, 2, 3)), // prefixIndex
            GenLib.parseInt(GenLib.substring(tokenHash, 3, 4))  // vintageIndex
        ];

        // Hash the tokenHash once for reuse
        uint256 hashValue = uint256(keccak256(abi.encodePacked(tokenHash)));

        // Retrieve the prefix, suffix, and a term from secondTerms
        string memory suffix = traitTypes[1][indices[1]].traitName;
        string memory prefix = traitTypes[2][indices[2]].traitName;
        string memory secondTerm = secondTerms[indices[0]][hashValue % 7];

        // Year computation
        string memory yearStr = traitTypes[3][indices[3]].traitName;
        uint256 startYear = GenLib.parseInt256(GenLib.substring(yearStr, 0, 4));
        uint256 range = traitTypes[3][indices[3]].pixelCount;
        string memory year = GenLib.toString(startYear - (hashValue % (range + 1)));

        return string(abi.encodePacked(prefix, secondTerm, suffix, " ", year));
    }

    /**
     * @dev Helper function to reduce pixel size within contract
     */
    function letterToNumber(string memory _inputLetter)
        internal
        view
        returns (uint8)
    {
        for (uint8 i = 0; i < LETTERS.length; i++) {
            if (
                keccak256(abi.encodePacked((LETTERS[i]))) ==
                keccak256(abi.encodePacked((_inputLetter)))
            ) return (i);
        }
        revert();
    }

    /**
    * @dev Hash to SVG function
    */
    function hashToSVG(string memory _hash) public view returns (string memory) {
        string memory svgString;
        bool[26][26] memory placedPixels;
        bool shouldFlip = shouldFlipSVG(_hash);

        // Process trait-based pixels
        for (uint8 i = 4; i < 9; i++) { 
            uint8 thisTraitIndex = GenLib.parseInt(
                GenLib.substring(_hash, i, i + 1)
            );
            for (uint16 j = 0; j < traitTypes[i][thisTraitIndex].pixelCount; j++) {
                string memory thisPixel = GenLib.substring(
                    traitTypes[i][thisTraitIndex].pixels,
                    j * 4,
                    j * 4 + 4
                );
                svgString = processPixel(thisPixel, placedPixels, svgString, shouldFlip, 1, 2);
            }
        }

        // Process hardcoded pixels
        string memory hardcodedPixels = "ha11ia11ja11ka11hb11ib10jb10kb11hc11ic10jc10kc11hd11id10jd10kd11he11ie09je09ke11hf11kf11hg11kg11il00jl00im00jm00hn00in00jn00kn00ho00io00jo00ko00hp00ip00jp00kp00hq00iq00jq00kq00hr00ir00jr00kr00hs00is00js00ks00ht00it00jt00kt00hu00iu00ju00ku00hv00iv00jv00kv00hw00iw00jw00kw00ix00jx00iy00jy00hz11iz11jz11kz11";
        for (uint16 k = 0; k < bytes(hardcodedPixels).length / 4; k++) {
            string memory pixel = GenLib.substring(hardcodedPixels, k * 4, (k + 1) * 4);
            svgString = processPixel(pixel, placedPixels, svgString, shouldFlip, 1 , 2);
        }

        // Generate color styles and construct the final SVG string
        string memory colorStyles = generateColorStyles(_hash);

        svgString = string(
            abi.encodePacked(
                '<svg id="wine-svg" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 20 30">',
                svgString,
                "<style>rect{width:1px;height:1px;} #wine-svg{shape-rendering: crispedges;} ",
                colorStyles,
                "</style></svg>"
            )
        );

        return svgString;
    }

    function shouldFlipSVG(string memory _hash) internal pure returns (bool) {
        uint256 hashNumber = uint256(keccak256(abi.encodePacked(_hash)));
        return hashNumber % 10 % 2 == 0;
    }

    /**
    * @dev Helper function to process a pixel and update the SVG string
    */
    function processPixel(string memory thisPixel, bool[26][26] memory placedPixels, string memory svgString, bool shouldFlip, uint8 paddingLeft, uint8 paddingTop) internal view returns (string memory) {
        uint8 originalX = letterToNumber(
            GenLib.substring(thisPixel, 0, 1)
        );
        uint8 y = letterToNumber(
            GenLib.substring(thisPixel, 1, 2)
        );

        uint8 x = shouldFlip ? (17 - originalX) : originalX;

        if (!placedPixels[x][y]) {
            svgString = string(
                abi.encodePacked(
                    svgString,
                    "<rect class='c",
                    GenLib.substring(thisPixel, 2, 4),
                    "' x='",
                    (x + paddingLeft).toString(),
                    "' y='",
                    (y + paddingTop).toString(),
                    "'/>"
                )
            );
            placedPixels[x][y] = true;
        }
        return svgString;
    }

    /**
    * @dev Helper function to generate color styles
    */
    function generateColorStyles(string memory _hash) internal view returns (string memory) {
        string memory colorStyles = "";

        // Extract color codes for traits 0, 1, and 2
        string memory colorCodesTrait0 = traitTypes[0][GenLib.parseInt(GenLib.substring(_hash, 0, 1))].pixels;
        string memory colorCodesTrait1 = traitTypes[1][GenLib.parseInt(GenLib.substring(_hash, 1, 2))].pixels;
        string memory colorCodesTrait2 = traitTypes[2][GenLib.parseInt(GenLib.substring(_hash, 2, 3))].pixels;

        // c00-c02
        for (uint i = 0; i < 3; i++) {
            string memory colorCode = GenLib.substring(colorCodesTrait1, i * 3, (i + 1) * 3);
            colorStyles = string(abi.encodePacked(colorStyles, ".c0", GenLib.toString(i), "{fill:#", colorCode, "}"));
        }

        // c03-c05
        for (uint i = 0; i < 3; i++) {
            string memory colorCode = GenLib.substring(colorCodesTrait2, i * 3, (i + 1) * 3);
            colorStyles = string(abi.encodePacked(colorStyles, ".c0", GenLib.toString(i + 3), "{fill:#", colorCode, "}"));
        }

        // c06-c08
        colorStyles = string(abi.encodePacked(colorStyles, ".c06{fill:#e64539}.c07{fill:#f57}.c08{fill:#a34}"));

        // c09-c10
        for (uint i = 0; i < 2; i++) {
            string memory colorCode = GenLib.substring(colorCodesTrait0, i * 3, (i + 1) * 3);
            string memory className = i == 0 ? ".c09" : ".c10";
            colorStyles = string(abi.encodePacked(colorStyles, className, "{fill:#", colorCode, "}"));
        }

        // Append static color styles
        colorStyles = string(abi.encodePacked(colorStyles, ".c11{fill:#000}.c12{fill:#291d2b}.c13{fill:#ffc2a1}.c14{fill:#f0b541}.c15{fill:#3b2027}.c16{fill:#bd6a62}.c17{fill:#efe}.c18{fill:#cf7e2b}.c19{fill:#ab5130}.c20{fill:#3d2936}"));

        return colorStyles;
    }

    /**
     * @dev Hash to metadata function
     */
    function hashToMetadata(string memory _hash)
        public
        view
        returns (string memory)
    {
        string memory metadataString;

        for (uint8 i = 0; i < 9; i++) {
            uint8 thisTraitIndex = GenLib.parseInt(
                GenLib.substring(_hash, i, i + 1)
            );

            metadataString = string(
                abi.encodePacked(
                    metadataString,
                    '{"trait_type":"',
                    traitTypes[i][thisTraitIndex].traitType,
                    '","value":"',
                    traitTypes[i][thisTraitIndex].traitName,
                    '"}'
                )
            );

            if (i != 8)
                metadataString = string(abi.encodePacked(metadataString, ","));
        }

        return string(abi.encodePacked("[", metadataString, "]"));
    }

    /**
     * @dev Returns the SVG and metadata for a token Id
     * @param _tokenId The tokenId to return the SVG and metadata for.
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory) 
        {
        require(ownerOf(_tokenId) != address(0), "ERC721Metadata: URI query for nonexistent token");

        string memory tokenHash = _tokenIdToHash(_tokenId);
        string memory name = generateName(tokenHash);

        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    GenLib.encode(
                        bytes(
                            string(
                                abi.encodePacked(
                                '{"name": "', name, '", "tokenId": "', 
                                GenLib.toString(_tokenId),
                                    '", "description": "A bottle of the finest ', name, '. Generated and stored fully on-chain, courtesy of CDG.", "image": "data:image/svg+xml;base64,',
                                    GenLib.encode(
                                        bytes(hashToSVG(tokenHash))
                                    ),
                                    '","attributes":',
                                    hashToMetadata(tokenHash),
                                    "}"
                                )
                            )
                        )
                    )
                )
            );
    }

    /**
     * @dev Returns a hash for a given tokenId
     * @param _tokenId The tokenId to return the hash for.
     */
    function _tokenIdToHash(uint256 _tokenId)
        public
        view
        returns (string memory)
    {
        string memory tokenHash = tokenIdToHash[_tokenId];
        return tokenHash;
    }

    /*

    .d88888b.                                          
    d88P" "Y88b                                         
    888     888                                         
    888     888 888  888  888 88888b.   .d88b.  888d888 
    888     888 888  888  888 888 "88b d8P  Y8b 888P"   
    888     888 888  888  888 888  888 88888888 888     
    Y88b. .d88P Y88b 888 d88P 888  888 Y8b.     888     
     "Y88888P"   "Y8888888P"  888  888  "Y8888  888     

    */

    /**
     * @dev Add a trait type
     * @param _traitTypeIndex The trait type index
     * @param traits Array of traits to add
     */

    function addTraitType(uint256 _traitTypeIndex, Trait[] memory traits)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < traits.length; i++) {
            traitTypes[_traitTypeIndex].push(
                Trait(
                    traits[i].traitName,
                    traits[i].traitType,
                    traits[i].pixels,
                    traits[i].pixelCount
                )
            );
        }

        return;
    }

    /**
     * @dev Clears the traits.
     */
    function clearTraits() public onlyOwner {
        for (uint256 i = 0; i < 9; i++) {
            delete traitTypes[i];
        }
    }

    /**
    * @dev Ability to change token details if needed
    */
    function setTokenDetails(uint8 _id, address _tokenAddress, uint256 _mintPrice, uint256 _mintLimit, bool _isAccepted) external onlyOwner {
        tokenDetails[_id] = TokenDetails(_tokenAddress, _mintPrice, _mintLimit, tokenDetails[_id].mintCount, _isAccepted);
    }

    /**
    * @dev Allows the owner to reduce the max supply.
    * @param _newMaxSupply The new max supply, must be less than current max supply.
    */
    function reduceMaxSupply(uint256 _newMaxSupply) external onlyOwner {
        require(_newMaxSupply < maxSupply, "New max supply must be less than current max supply");
        maxSupply = _newMaxSupply;
    }

    /**
    * @dev Sets the minting status.
    * @param _mintingStatus Status of minting (open or closed).
    */
    function setMintingStatus(bool _mintingStatus) external onlyOwner {
        mintingOpen = _mintingStatus;
    }

    /**
    * @dev Sets mint limit per wallet and transfers ownership.
    * @param _mintLimitPerWallet Mint limit per wallet.
    * @param _newOwner Address of the new owner. Pass the current owner's address to leave unchanged.
    */
    function setMintLimitAndOwnership(uint256 _mintLimitPerWallet, address _newOwner) external onlyOwner {
        mintLimitPerWallet = _mintLimitPerWallet;

        if(_newOwner != address(0) && _newOwner != _owner) {
            _owner = _newOwner;
        }
    }

    /**
    * @dev Withdraw ETH to withdrawal addresses.
    */
    function withdrawETH() public onlyOwner {
        uint256 balance = address(this).balance;
        uint256 split1 = (balance * splPer1) / 100;
        uint256 split2 = balance - split1;

        address1.transfer(split1);
        address payable payableAddress2 = payable(address2);
        payableAddress2.transfer(split2);
    }

    /**
    * @dev Withdraw ETH to withdrawal addresses.
    * @param _tokenAddress Address of ERC-20 token to withdraw.
    */
    function withdrawERC20(address _tokenAddress) public onlyOwner {
        IERC20 token = IERC20(_tokenAddress);
        uint256 balance = token.balanceOf(address(this));
        uint256 split1 = (balance * splPer1) / 100;
        uint256 split2 = balance - split1;

        token.transfer(address1, split1);
        token.transfer(address2, split2);
    }

    /**
     * @dev Modifier to only allow owner to call functions
     */
    modifier onlyOwner() {
        require(_owner == msg.sender);
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"uint256","name":"_tokenId","type":"uint256"}],"name":"_tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_traitTypeIndex","type":"uint256"},{"components":[{"internalType":"string","name":"traitName","type":"string"},{"internalType":"string","name":"traitType","type":"string"},{"internalType":"string","name":"pixels","type":"string"},{"internalType":"uint256","name":"pixelCount","type":"uint256"}],"internalType":"struct ChateauDeGeneratif.Trait[]","name":"traits","type":"tuple[]"}],"name":"addTraitType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenHash","type":"string"}],"name":"generateName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_tokenId","type":"uint8"},{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mintCDG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"reduceMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimitPerWallet","type":"uint256"},{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setMintLimitAndOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintingStatus","type":"bool"}],"name":"setMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_id","type":"uint8"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"bool","name":"_isAccepted","type":"bool"}],"name":"setTokenDetails","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":"uint8","name":"","type":"uint8"}],"name":"tokenDetails","outputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"mintLimit","type":"uint256"},{"internalType":"uint256","name":"mintCount","type":"uint256"},{"internalType":"bool","name":"isAccepted","type":"bool"}],"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":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitTypes","outputs":[{"internalType":"string","name":"traitName","type":"string"},{"internalType":"string","name":"traitType","type":"string"},{"internalType":"string","name":"pixels","type":"string"},{"internalType":"uint256","name":"pixelCount","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":"","type":"address"}],"name":"walletMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600b805460ff191690555f601255610af0601355600a601455601580546001600160a01b031990811673514910771af9ca656af840dff83e8264ecf986ca17909155601680548216732260fac5e5542a773aa44fbcfedf7c193bc2c59917905560178054821673046eee2cc3188071c02bfc1745a6b17c656e3f3d1790556018805482167395ad61b0a150d79219dcf64e1e6cc01f0b64c4ce179055601980548216736982508145454ce325ddbe47a25d4ec3d2311933179055601a805482167372e4f9f808c49a2a61de9c5896298920dc4eeea9178155601b80548316734d224452801aced8b2f0aebe155379bb5d594381179055601c805483167312970e6868f88f6557b76120662c1b3e50a646bf179055601d80549092167338ec27c6f05a169e7ed03132bca7d0cfee93c2c51790915560016103c0818152606160f81b6103e0526080908152610400828152603160f91b6104205260a052610440828152606360f81b6104605260c052610480828152601960fa1b6104a05260e0526104c0828152606560f81b6104e05261010052610500828152603360f91b6105205261012052610540828152606760f81b6105605261014052610580828152600d60fb1b6105a052610160526105c0828152606960f81b6105e05261018052610600828152603560f91b610620526101a052610640828152606b60f81b610660526101c052610680828152601b60fa1b6106a0526101e0526106c0828152606d60f81b6106e05261020052610700828152603760f91b6107205261022052610740828152606f60f81b6107605261024052610780828152600760fc1b6107a052610260526107c0828152607160f81b6107e05261028052610800828152603960f91b610820526102a052610840828152607360f81b610860526102c052610880828152601d60fa1b6108a0526102e0526108c0828152607560f81b6108e05261030052610900828152603b60f91b6109205261032052610940828152607760f81b6109605261034052610980828152600f60fb1b6109a052610360526109c0828152607960f81b6109e05261038052610a40604052610a00918252603d60f91b610a20526103a09190915262000339916020919062001b13565b5034801562000346575f80fd5b506040518060400160405280601481526020017f436861746561752044652047656e6572617469660000000000000000000000008152506040518060400160405280600381526020016243444760e81b815250815f9081620003a9919062001d73565b506001620003b8828262001d73565b50506001600a908155601e8054336001600160a01b03199182168117909255601f805490911690911790556040805161012081018252600960e0820181815268566974616c6971756560b81b6101008401528252825180840184526007808252664777656967696f60c81b6020808401919091528085019290925284518086018652600880825267446546696173636f60c01b828501528587019190915285518087018752600c81526b22329023b2b732b930ba34b360a11b81850152606086015285518087018752938452684861736869616e746960b81b848401526080850193909352845180860186529283526744656669676e616360c01b8383015260a0840192909252835180850190945293835269426c6f636b62656c6c6560b01b8385015260c08201929092525f805260119092526200051b92507f4ad3b33220dddc71b994a52d72c06b10862965f7d926534c05c00fb7e819e7b7919062001b6e565b506040805161012081018252600d60e082019081526c21b430b4b734b7ba102737b4b960991b61010083015281528151808301835260088082526744274f7261636c6560c01b6020838101919091528084019290925283518085018552600c81526b4e6f64657669676e6f626c6560a01b818401528385015283518085018552818152674c696e6b6c616e6360c01b81840152606084015283518085018552600980825268131a5b9adb185c995d60ba1b82850152608085019190915284518086018652918252674f726163656c6c6560c01b8284015260a084019190915283518085019094528352680a6f2dcc6e6d2e4c2d60bb1b8382015260c082019290925260015f52601190915262000655907f17bc176d2408558f6e4111feebc3cab4e16b63e967be91cde721f4c8a488b55290600762001b6e565b506040805161012081018252600a60e082018181526929b0ba37b9b434b930bd60b11b610100840152825282518084018452818152692bb930b83934b3b737b760b11b602082810191909152808401919091528351808501855260098082526813195919d95c9b995d60ba1b8284015284860191909152845180860186526008815267426974626f75726760c01b818401526060850152845180860186529081526812185cda195c9b1bdd60ba1b81830152608084015283518085018552918252694c65646765726c69657560b01b8282015260a083019190915282518084019093526007808452664269746265617560c81b8483015260c083019390935260025f52601190526200078a917f08037d7b151cc412d25674a4e66b334d9ae9d2e5517a7feaae5cdb828bf1c628919062001b6e565b506040805161012081018252600760e082018181526610d85cda5b9bdd60ca1b6101008401528252825180840184526008815267426574626c616e6360c01b6020828101919091528084019190915283518085018552600980825268149bdb09c8109c9d5d60ba1b82840152848601919091528451808601865281815268526f6c6c626c616e6360b81b81840152606085015284518086018652600a815269526f756c65747465617560b01b818401526080850152845180860186529081526847616d62656c61697360b81b8183015260a0840152835180850190945281845266436173696e616360c81b8482015260c083019390935260035f526011909252620008b8917f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff919062001b6e565b506040805161012081018252600b60e082019081526a4c6520446f67656c61697360a81b610100830152815281518083018352600880825267506177736563636f60c01b6020838101919091528084019290925283518085018552600980825268283ab83834b3b737b760b91b8285015284860191909152845180860186528181526814da1a58995c9b995d60ba1b818501526060850152845180860186529081526824b73abb34b3b737b760b91b8184015260808401528351808501855290815267446f67656c61746f60c01b8183015260a08301528251808401909352600780845266507570706f6c6960c81b8483015260c083019390935260045f5260119052620009e9917f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f175585919062001b6e565b506040805161012081018252600760e08201818152664465205065706560c81b610100840152825282518084018452600b81526a4c652050657065726e617960a81b6020828101919091528084019190915283518085018552600c8082526b477265656e6f67726967696f60a01b8284015284860191909152845180860186529081526b50617973204475205065706560a01b818301526060840152835180850185526009815268149a58989a5d1c995d60ba1b8183015260808401528351808501855260088082526746726f676769616360c01b8284015260a08501919091528451808601909552845267121bdc1c9a58dbdd60c21b8482015260c083019390935260055f52601190925262000b23917fc550213cee30afd5e67ccba7be3d381bbc169034ae08eb3ec9168caca9fe55e7919062001b6e565b506040805161012081018252600760e0820181815266536f6e6971756560c81b610100840152825282518084018452600a8152694865646765686f67756560b01b602082810191909152808401919091528351808501855260068082526542617261636b60d01b8284015284860191909152845180860186526009808252684f62616d61726f6d6160b81b8285015260608601919091528551808701875284815266506f747465726560c81b81850152608086015285518087018752600f81526e4c6520436f696e204465204269746560881b8185015260a0860152855180870190965285526812195919d95a185d5d60ba1b8583015260c08401949094525f93909352601190925262000c5a917ffb9ce45064c7e7d9bf9deb4750ba7c94ab3d6e7418c5d76bf69966d39a9d42f6919062001b6e565b506040805161012081018252600860e0820181815267084dee4cac8c2eaf60c31b61010084015282528251808401845260098082526820b832bb34b3b737b760b91b6020838101919091528085019290925284518086018652601081526f4170656c6c6174696f6e20442741706560801b818401528486015284518086018652928352674170657274696e6f60c01b83830152606084019290925283518085018552600b81526a41706561756a6f6c61697360a81b81830152608084015283518085018552828152685961636874696e616360b81b8183015260a08401528351808501909452908352685072696d617461676560b81b8382015260c082019290925260075f819052601190925262000d95917f98ae0176de2844d118e1a6decfe92f97691bedbc578c71fc8d5c4374be77e50c919062001b6e565b506040805161012081018252600860e082018181526714995b5a5b1a5bdd60c21b610100840152825282518084018452600a8152694465204c61205261766560b01b6020828101919091528084019190915283518085018552600b81526a4c6164796c6963616e746560a81b81830152838501528351808501855260058152645368697a6f60d81b818301526060840152835180850185526009815268135a5b18591bdc995d60ba1b81830152608084015283518085018552828152674475204672616e6b60c01b8183015260a0840152835180850190945281845267436869626963727560c01b8482015260c08301939093525f52601190915262000ebf907f5fae251ae169e8e40026ce4ce85a026bc3adcccdc8459be361195e4cd924077f90600762001b6e565b506040805161012081018252600460e08201908152632213a7b960e11b61010083015281528151808301835260098082526821b430b4b73830b4b760b91b602083810191909152808401929092528351808501855281815268223a90223930b3b7b760b91b818401528385015283518085018552600881526723b7b6323837bab960c11b81840152606084015283518085018552600a80825269476f6c6420437576656560b01b8285015260808501919091528451808601865290815269447261676f6e656c6c6f60b01b8184015260a08401528351808501909452600b84526a447261676f6e6465726e6560a81b8483015260c08301939093525f92909252601190915262000ff3907ff53d7d0eac8d4a28c5e36c803b226f3ef35ce8ff0302108a97c0d862a51c6fa390600762001b6e565b506040518060a001604052805f6001600160a01b03168152602001668e1bc9bf04000081526020016108c081526020015f81526020016001151581525060105f8060ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a0016040528060155f9054906101000a90046001600160a01b03166001600160a01b03168152602001674b5b3c3b0a5f0000815260200161015081526020015f81526020016001151581525060105f600160ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a0016040528060165f9054906101000a90046001600160a01b03166001600160a01b0316815260200162029810815260200161011881526020015f81526020016001151581525060105f600260ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a0016040528060175f9054906101000a90046001600160a01b03166001600160a01b031681526020016818fda901846f140000815260200161011881526020015f81526020016001151581525060105f600360ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a0016040528060185f9054906101000a90046001600160a01b03166001600160a01b031681526020016a0673b6d8e6a4d71b000000815260200161015081526020015f81526020016001151581525060105f600460ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a0016040528060195f9054906101000a90046001600160a01b03166001600160a01b031681526020016a29864373f3c8ff5f000000815260200161015081526020015f81526020016001151581525060105f600560ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a00160405280601a5f9054906101000a90046001600160a01b03166001600160a01b03168152602001640ee6b28000815260200160a881526020015f81526020016001151581525060105f600660ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a00160405280601b5f9054906101000a90046001600160a01b03166001600160a01b031681526020016802017a67f7317400008152602001608c81526020015f81526020016001151581525060105f600760ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a00160405280601c5f9054906101000a90046001600160a01b03166001600160a01b031681526020016b01225724208af9cfbf0000008152602001608c81526020015f81526020016001151581525060105f600860ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518060a00160405280601d5f9054906101000a90046001600160a01b03166001600160a01b031681526020016954b40b1f852bda0000008152602001603181526020015f81526020016001151581525060105f600960ff1681526020019081526020015f205f820151815f015f6101000a8154816001600160a01b0302191690836001600160a01b031602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050506040518061014001604052806114b461ffff168152602001606461ffff16815260200161035261ffff1681526020016101f461ffff1681526020016102bc61ffff16815260200161038461ffff1681526020016102bc61ffff16815260200161015e61ffff16815260200161012c61ffff16815260200160fa61ffff1681525060215f6008811062001896576200189662001e3f565b620018a692910190600a62001bb7565b506040805161014081018252610d4881526104b0602082015261044c918101919091526103e8606082015261038460808201526101f460a0820181905260c0820181905260e082018190526101008201526101906101208201526200191090602290600a62001bb7565b506040805161014081018252610c1c815261083460208201526105c39181019190915261047e6060820152610320608082015261025860a082015261015e60c082015260c860e0820152607d61010082015260646101208201526200197a90602390600a62001bb7565b506040805160c08101825261206c8152610190602082015260fa918101919091526096606082015261012c608082015261025860a0820152620019c290602490600662001bb7565b50604080516101208101825261177081526103e8602082015260969181019190915260fa60608201526101f460808201526102ee60a0820181905261012c60c0830181905260e083019190915261010082015262001a2590602590600962001bb7565b5060408051610120810182526106a48152610708602082018190526102589282019290925260608101919091526105786080820181905260a082015261032060c0820152606460e082015261019061010082015262001a8990602690600962001bb7565b506040805160808101825261232881526102ee602082015260c8918101919091526032606082015262001ac190602790600462001bb7565b506040805160c081018252610e7481526101f460208201526103e891810182905261076c60608201819052608082019290925260a081019190915262001b0c90602890600662001bb7565b5062001e53565b828054828255905f5260205f2090810192821562001b5c579160200282015b8281111562001b5c578251829062001b4b908262001d73565b509160200191906001019062001b32565b5062001b6a92915062001c60565b5090565b828054828255905f5260205f2090810192821562001b5c579160200282015b8281111562001b5c578251829062001ba6908262001d73565b509160200191906001019062001b8d565b828054828255905f5260205f2090600f0160109004810192821562001c52579160200282015f5b8382111562001c2057835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001bde565b801562001c505782816101000a81549061ffff021916905560020160208160010104928301926001030262001c20565b505b5062001b6a92915062001c80565b8082111562001b6a575f62001c76828262001c96565b5060010162001c60565b5b8082111562001b6a575f815560010162001c81565b50805462001ca49062001ce9565b5f825580601f1062001cb4575050565b601f0160209004905f5260205f209081019062001cd2919062001c80565b50565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062001cfe57607f821691505b60208210810362001d1d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562001d6e57805f5260205f20601f840160051c8101602085101562001d4a5750805b601f840160051c820191505b8181101562001d6b575f815560010162001d56565b50505b505050565b81516001600160401b0381111562001d8f5762001d8f62001cd5565b62001da78162001da0845462001ce9565b8462001d23565b602080601f83116001811462001ddd575f841562001dc55750858301515b5f19600386901b1c1916600185901b17855562001e37565b5f85815260208120601f198616915b8281101562001e0d5788860151825594840194600190910190840162001dec565b508582101562001e2b57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52603260045260245ffd5b6150df8062001e615f395ff3fe608060405260043610610228575f3560e01c80637420aa3611610131578063c87b56dd116100ac578063e0f9b4791161007c578063f10edf5c11610062578063f10edf5c146106a7578063f4f3b200146106c6578063fe3dd788146106e5575f80fd5b8063e0f9b4791461064b578063e985e9c514610660575f80fd5b8063c87b56dd146105e4578063d5abeb0114610603578063d93dfe8814610618578063e086e5ec14610637575f80fd5b806395d89b4111610101578063a22cb465116100e7578063a22cb46514610587578063b88d4fde146105a6578063bcf77e60146105c5575f80fd5b806395d89b41146105605780639e61b52c14610574575f80fd5b80637420aa36146104de57806389ce3074146104fd5780638f4bb4971461051c57806393ecb0c614610535575f80fd5b80632f745c59116101c15780636352211e1161019157806370a082311161017757806370a082311461041757806370dc20391461043657806373532802146104bf575f80fd5b80636352211e146103d957806366e33870146103f8575f80fd5b80632f745c591461034d5780632fb098d21461036c57806342842e0e1461039b5780634f6ccce7146103ba575f80fd5b8063095ea7b3116101fc578063095ea7b3146102db578063098afd4b146102fc57806318160ddd1461031057806323b872dd1461032e575f80fd5b80625ea3071461022c57806301ffc9a71461026157806306fdde0314610290578063081812fc146102a4575b5f80fd5b348015610237575f80fd5b5061024b610246366004613b74565b610704565b6040516102589190613bd8565b60405180910390f35b34801561026c575f80fd5b5061028061027b366004613c1e565b6107a5565b6040519015158152602001610258565b34801561029b575f80fd5b5061024b610800565b3480156102af575f80fd5b506102c36102be366004613b74565b61088f565b6040516001600160a01b039091168152602001610258565b3480156102e6575f80fd5b506102fa6102f5366004613c54565b6108b6565b005b348015610307575f80fd5b506102fa6108c5565b34801561031b575f80fd5b506008545b604051908152602001610258565b348015610339575f80fd5b506102fa610348366004613c7c565b610907565b348015610358575f80fd5b50610320610367366004613c54565b6109c7565b348015610377575f80fd5b5061038b610386366004613cb5565b610a43565b6040516102589493929190613cd5565b3480156103a6575f80fd5b506102fa6103b5366004613c7c565b610c1b565b3480156103c5575f80fd5b506103206103d4366004613b74565b610c3a565b3480156103e4575f80fd5b506102c36103f3366004613b74565b610ca8565b348015610403575f80fd5b5061024b610412366004613e19565b610cb2565b348015610422575f80fd5b50610320610431366004613e4b565b610dda565b348015610441575f80fd5b5061048b610450366004613e74565b60106020525f9081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919290919060ff1685565b604080516001600160a01b03909616865260208601949094529284019190915260608301521515608082015260a001610258565b3480156104ca575f80fd5b506102fa6104d9366004613b74565b610e38565b3480156104e9575f80fd5b506102fa6104f8366004613e9a565b610eca565b348015610508575f80fd5b5061024b610517366004613e19565b610ef3565b348015610527575f80fd5b50600b546102809060ff1681565b348015610540575f80fd5b5061032061054f366004613e4b565b600c6020525f908152604090205481565b34801561056b575f80fd5b5061024b611163565b6102fa610582366004613eb5565b611172565b348015610592575f80fd5b506102fa6105a1366004613ee6565b6116e9565b3480156105b1575f80fd5b506102fa6105c0366004613f1b565b6116f4565b3480156105d0575f80fd5b5061024b6105df366004613e19565b61170b565b3480156105ef575f80fd5b5061024b6105fe366004613b74565b611bf2565b34801561060e575f80fd5b5061032060135481565b348015610623575f80fd5b506102fa610632366004613f92565b611d0a565b348015610642575f80fd5b506102fa611e37565b348015610656575f80fd5b5061032060145481565b34801561066b575f80fd5b5061028061067a3660046140e1565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b3480156106b2575f80fd5b506102fa6106c1366004614109565b611ef3565b3480156106d1575f80fd5b506102fa6106e0366004613e4b565b611fb6565b3480156106f0575f80fd5b506102fa6106ff366004614160565b6121a9565b5f818152600f602052604081208054606092919061072190614181565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90614181565b80156107985780601f1061076f57610100808354040283529160200191610798565b820191905f5260205f20905b81548152906001019060200180831161077b57829003601f168201915b5093979650505050505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107fa57506107fa82612228565b92915050565b60605f805461080e90614181565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90614181565b80156108855780601f1061085c57610100808354040283529160200191610885565b820191905f5260205f20905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b5f6108998261230a565b505f828152600460205260409020546001600160a01b03166107fa565b6108c182823361235b565b5050565b601e546001600160a01b031633146108db575f80fd5b5f5b6009811015610904575f818152600d602052604081206108fc91613a83565b6001016108dd565b50565b6001600160a01b03821661094e576040517f64a0ae920000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b5f61095a838333612368565b9050836001600160a01b0316816001600160a01b0316146109c1576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610945565b50505050565b5f6109d183610dda565b8210610a1b576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401610945565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b600d602052815f5260405f208181548110610a5c575f80fd5b905f5260205f2090600402015f9150915050805f018054610a7c90614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890614181565b8015610af35780601f10610aca57610100808354040283529160200191610af3565b820191905f5260205f20905b815481529060010190602001808311610ad657829003601f168201915b505050505090806001018054610b0890614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3490614181565b8015610b7f5780601f10610b5657610100808354040283529160200191610b7f565b820191905f5260205f20905b815481529060010190602001808311610b6257829003601f168201915b505050505090806002018054610b9490614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc090614181565b8015610c0b5780601f10610be257610100808354040283529160200191610c0b565b820191905f5260205f20905b815481529060010190602001808311610bee57829003601f168201915b5050505050908060030154905084565b610c3583838360405180602001604052805f8152506116f4565b505050565b5f610c4460085490565b8210610c85576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081525f600482015260248101839052604401610945565b60088281548110610c9857610c986141d2565b905f5260205f2001549050919050565b5f6107fa8261230a565b6060805f5b60098160ff161015610db1575f610ce7610ce28660ff8516610cda86600161422c565b60ff1661243b565b61252c565b905082600d5f8460ff1681526020019081526020015f208260ff1681548110610d1257610d126141d2565b905f5260205f209060040201600101600d5f8560ff1681526020019081526020015f208360ff1681548110610d4957610d496141d2565b905f5260205f2090600402015f01604051602001610d69939291906142cf565b60405160208183030381529060405292508160ff16600814610da85782604051602001610d969190614376565b60405160208183030381529060405292505b50600101610cb7565b5080604051602001610dc391906143b6565b604051602081830303815290604052915050919050565b5f6001600160a01b038216610e1d576040517f89c62b640000000000000000000000000000000000000000000000000000000081525f6004820152602401610945565b506001600160a01b03165f9081526003602052604090205490565b601e546001600160a01b03163314610e4e575f80fd5b6013548110610ec55760405162461bcd60e51b815260206004820152603360248201527f4e6577206d617820737570706c79206d757374206265206c657373207468616e60448201527f2063757272656e74206d617820737570706c79000000000000000000000000006064820152608401610945565b601355565b601e546001600160a01b03163314610ee0575f80fd5b600b805460ff1916911515919091179055565b606080610efe613aa1565b5f610f08856125e9565b905060045b60098160ff16101561109b575f610f30610ce28860ff8516610cda86600161422c565b90505f5b600d5f8460ff1681526020019081526020015f208260ff1681548110610f5c57610f5c6141d2565b905f5260205f209060040201600301548161ffff161015611091575f611069600d5f8660ff1681526020019081526020015f208460ff1681548110610fa357610fa36141d2565b905f5260205f2090600402016002018054610fbd90614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe990614181565b80156110345780601f1061100b57610100808354040283529160200191611034565b820191905f5260205f20905b81548152906001019060200180831161101757829003601f168201915b50505050508360046110469190614421565b61ffff16611055856004614421565b611060906004614447565b61ffff1661243b565b905061107b8187898860016002612635565b965050808061108990614469565b915050610f34565b5050600101610f0d565b505f6040518061016001604052806101308152602001614f3a610130913990505f5b600482516110cb91906144b6565b8161ffff161015611128575f611100836110e6846004614421565b61ffff166110f5856001614447565b611060906004614421565b90506111128186888760016002612635565b955050808061112090614469565b9150506110bd565b505f6111338761274e565b905084816040516020016111489291906144c9565b60408051601f19818403018152919052979650505050505050565b60606001805461080e90614181565b61117a612bfb565b600b5460ff16806111955750601e546001600160a01b031633145b6111e15760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e6720697320636c6f7365640000000000000000000000000000006044820152606401610945565b601454335f908152600c60205260409020546112019060ff841690614631565b1115806112185750601e546001600160a01b031633145b6112645760405162461bcd60e51b815260206004820152601960248201527f457863656564732077616c6c6574206d696e74206c696d6974000000000000006044820152606401610945565b5f8160ff1611801561128e575060058160ff1611158061128e5750601e546001600160a01b031633145b6113005760405162461bcd60e51b815260206004820152602360248201527f3120746f2035204e46547320616c6c6f77656420706572207472616e7361637460448201527f696f6e00000000000000000000000000000000000000000000000000000000006064820152608401610945565b60ff8083165f90815260106020526040902060048101549091166113665760405162461bcd60e51b815260206004820152601260248201527f546f6b656e206e6f7420616363657074656400000000000000000000000000006044820152606401610945565b5f8260ff16826001015461137a9190614644565b90505f61138660085490565b60135490915061139960ff861683614631565b11156113e75760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610945565b82600201548460ff1684600301546113ff9190614631565b111561144d5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d696e74206c696d697420666f7220746f6b656e000000006044820152606401610945565b8460ff165f036114ab578134146114a65760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374204554482076616c7565000000000000000000000000006044820152606401610945565b6115ff565b341561151f5760405162461bcd60e51b815260206004820152602360248201527f455448206e6f7420726571756972656420666f72204552432d3230206d696e7460448201527f696e6700000000000000000000000000000000000000000000000000000000006064820152608401610945565b82546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018490526001600160a01b039091169081906323b872dd906064016020604051808303815f875af115801561158d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b1919061465b565b6115fd5760405162461bcd60e51b815260206004820152601560248201527f4552433230205472616e73666572206661696c656400000000000000000000006044820152606401610945565b505b5f5b8460ff168160ff161015611699575f61161d60ff831684614631565b905061162b81335f8a612c54565b5f828152600f602052604090209061164390826146ba565b506001600e600f5f8481526020019081526020015f206040516116669190614776565b908152604051908190036020019020805491151560ff199092169190911790556116903382612da1565b50600101611601565b508360ff16836003015f8282546116b09190614631565b9091555050335f908152600c60205260408120805460ff871692906116d6908490614631565b90915550506001600a55506108c1915050565b6108c1338383612e34565b6116ff848484610907565b6109c184848484612eeb565b60605f6040518060800160405280611728610ce2865f600161243b565b60ff168152602001611740610ce2866001600261243b565b60ff168152602001611758610ce2866002600361243b565b60ff168152602001611770610ce2866003600461243b565b60ff1690526040519091505f9061178b908590602001614781565b60408051601f19818403018152919052805160209182012060015f818152600d9093529092507ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c5908490602002015160ff16815481106117ed576117ed6141d2565b905f5260205f2090600402015f01805461180690614181565b80601f016020809104026020016040519081016040528092919081815260200182805461183290614181565b801561187d5780601f106118545761010080835404028352916020019161187d565b820191905f5260205f20905b81548152906001019060200180831161186057829003601f168201915b505060025f818152600d6020529495507f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc24993508792509050602002015160ff16815481106118cd576118cd6141d2565b905f5260205f2090600402015f0180546118e690614181565b80601f016020809104026020016040519081016040528092919081815260200182805461191290614181565b801561195d5780601f106119345761010080835404028352916020019161195d565b820191905f5260205f20905b81548152906001019060200180831161194057829003601f168201915b505050505090505f60115f865f6004811061197a5761197a6141d2565b602002015160ff1660ff1681526020019081526020015f2060078561199f919061479c565b815481106119af576119af6141d2565b905f5260205f200180546119c290614181565b80601f01602080910402602001604051908101604052809291908181526020018280546119ee90614181565b8015611a395780601f10611a1057610100808354040283529160200191611a39565b820191905f5260205f20905b815481529060010190602001808311611a1c57829003601f168201915b505060035f818152600d6020529495507f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e293508992509050602002015160ff1681548110611a8957611a896141d2565b905f5260205f2090600402015f018054611aa290614181565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace90614181565b8015611b195780601f10611af057610100808354040283529160200191611b19565b820191905f5260205f20905b815481529060010190602001808311611afc57829003601f168201915b505050505090505f611b35611b30835f600461243b565b613086565b60035f818152600d6020529192507f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e2908990602002015160ff1681548110611b7f57611b7f6141d2565b5f91825260208220600360049092020101549150611bba611ba1836001614631565b611bab908a61479c565b611bb590856147af565b6131a4565b905085858883604051602001611bd394939291906147c2565b6040516020818303038152906040529950505050505050505050919050565b60605f611bfe83610ca8565b6001600160a01b031603611c7a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610945565b5f611c8483610704565b90505f611c908261170b565b9050611ce281611c9f866131a4565b83611cb1611cac87610ef3565b6132d5565b611cba87610cb2565b604051602001611cce959493929190614841565b6040516020818303038152906040526132d5565b604051602001611cf29190614a0a565b60405160208183030381529060405292505050919050565b601e546001600160a01b03163314611d20575f80fd5b5f5b8151811015610c3557600d5f8481526020019081526020015f206040518060800160405280848481518110611d5957611d596141d2565b60200260200101515f01518152602001848481518110611d7b57611d7b6141d2565b6020026020010151602001518152602001848481518110611d9e57611d9e6141d2565b6020026020010151604001518152602001848481518110611dc157611dc16141d2565b6020908102919091018101516060015190915282546001810184555f93845292208151919260040201908190611df790826146ba565b5060208201516001820190611e0c90826146ba565b5060408201516002820190611e2190826146ba565b5060609190910151600390910155600101611d22565b601e546001600160a01b03163314611e4d575f80fd5b475f6064611e5c604684614644565b611e6691906144b6565b90505f611e7382846147af565b601f546040519192506001600160a01b03169083156108fc029084905f818181858888f19350505050158015611eab573d5f803e3d5ffd5b5060405173d1f785a1642c3310da57bc966db21328d96ac2c290819083156108fc029084905f818181858888f19350505050158015611eec573d5f803e3d5ffd5b5050505050565b601e546001600160a01b03163314611f09575f80fd5b6040805160a0810182526001600160a01b039586168152602080820195865281830194855260ff979097165f8181526010808a5293812060038101805460608601908152961515608086019081529390925293909852905182547fffffffffffffffffffffffff0000000000000000000000000000000000000000169616959095178155925160018401559051600283015551909255516004909101805460ff1916911515919091179055565b601e546001600160a01b03163314611fcc575f80fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561202b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204f9190614a4e565b90505f606461205f604684614644565b61206991906144b6565b90505f61207682846147af565b601f546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810185905291925085169063a9059cbb906044016020604051808303815f875af11580156120e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612105919061465b565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273d1f785a1642c3310da57bc966db21328d96ac2c26004820152602481018290526001600160a01b0385169063a9059cbb906044016020604051808303815f875af115801561217d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121a1919061465b565b505050505050565b601e546001600160a01b031633146121bf575f80fd5b60148290556001600160a01b038116158015906121ea5750601e546001600160a01b03828116911614155b156108c157601e80546001600160a01b0383167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790555050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806122ba57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107fa57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107fa565b5f818152600260205260408120546001600160a01b0316806107fa576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610945565b610c358383836001613424565b5f80612375858585613577565b90506001600160a01b0381166123d1576123cc84600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123f4565b846001600160a01b0316816001600160a01b0316146123f4576123f48185613681565b6001600160a01b0385166124105761240b8461370e565b612433565b846001600160a01b0316816001600160a01b0316146124335761243385856137b5565b949350505050565b6060835f61244985856147af565b67ffffffffffffffff81111561246157612461613d1f565b6040519080825280601f01601f19166020018201604052801561248b576020820181803683370190505b509050845b84811015612522578281815181106124aa576124aa6141d2565b01602001517fff0000000000000000000000000000000000000000000000000000000000000016826124dc88846147af565b815181106124ec576124ec6141d2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600101612490565b5095945050505050565b5f8181805b82518160ff1610156125e1576030838260ff1681518110612554576125546141d2565b016020015160f81c1080159061258757506039838260ff168151811061257c5761257c6141d2565b016020015160f81c11155b156125cf57612597600a83614a65565b91506030838260ff16815181106125b0576125b06141d2565b01602001516125c2919060f81c614a81565b6125cc908361422c565b91505b806125d981614a9a565b915050612531565b509392505050565b5f80826040516020016125fc9190614781565b60408051601f19818403018152919052805160209091012090506002612623600a8361479c565b61262d919061479c565b159392505050565b60605f61264c612647895f600161243b565b613803565b90505f61265f6126478a6001600261243b565b90505f8661266d5782612678565b612678836011614a81565b9050888160ff16601a811061268f5761268f6141d2565b60200201518260ff16601a81106126a8576126a86141d2565b602002015161274057876126bf8b6002600461243b565b6126d46126cc898561422c565b60ff166131a4565b6126e16126cc898761422c565b6040516020016126f49493929190614ab8565b60405160208183030381529060405297506001898260ff16601a811061271c5761271c6141d2565b60200201518360ff16601a8110612735576127356141d2565b911515602090920201525b509598975050505050505050565b6040805160208082019092525f808252808052600d9092526060917f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee612799610ce28684600161243b565b60ff16815481106127ac576127ac6141d2565b905f5260205f20906004020160020180546127c690614181565b80601f01602080910402602001604051908101604052809291908181526020018280546127f290614181565b801561283d5780601f106128145761010080835404028352916020019161283d565b820191905f5260205f20905b81548152906001019060200180831161282057829003601f168201915b505060015f818152600d6020529495507ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c593506128839250610ce291508890600261243b565b60ff1681548110612896576128966141d2565b905f5260205f20906004020160020180546128b090614181565b80601f01602080910402602001604051908101604052809291908181526020018280546128dc90614181565b80156129275780601f106128fe57610100808354040283529160200191612927565b820191905f5260205f20905b81548152906001019060200180831161290a57829003601f168201915b505060025f818152600d6020529495507f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc249935061296d9250610ce291508990600361243b565b60ff1681548110612980576129806141d2565b905f5260205f209060040201600201805461299a90614181565b80601f01602080910402602001604051908101604052809291908181526020018280546129c690614181565b8015612a115780601f106129e857610100808354040283529160200191612a11565b820191905f5260205f20905b8154815290600101906020018083116129f457829003601f168201915b505050505090505f5b6003811015612a88575f612a4e84612a33846003614644565b612a3e856001614631565b612a49906003614644565b61243b565b905085612a5a836131a4565b82604051602001612a6d93929190614bb7565b60408051601f19818403018152919052955050600101612a1a565b505f5b6003811015612ae3575f612aa483612a33846003614644565b905085612ab5611bb5846003614631565b82604051602001612ac893929190614bb7565b60408051601f19818403018152919052955050600101612a8b565b5083604051602001612af59190614c77565b60405160208183030381529060405293505f5b6002811015612bcf575f612b2185612a33846003614644565b90505f8215612b65576040518060400160405280600481526020017f2e63313000000000000000000000000000000000000000000000000000000000815250612b9c565b6040518060400160405280600481526020017f2e633039000000000000000000000000000000000000000000000000000000008152505b9050868183604051602001612bb393929190614cdd565b60408051808303601f1901815291905296505050600101612b08565b5083604051602001612be19190614d72565b60408051601f198184030181529190529695505050505050565b6002600a5403612c4d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610945565b6002600a55565b6060600a8310612c62575f80fd5b5f612c6f8360ff166131a4565b90505f5b60088160ff161015612d515760128054905f612c8e83614e70565b909155505060125460408051426020820152449181019190915260608082018a905288901b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660808201526094810187905260b48101919091525f906127109060d401604051602081830303815290604052805190602001205f1c612d14919061479c565b905082612d258261ffff168461389b565b604051602001612d36929190614e88565b60408051601f19818403018152919052925050600101612c73565b50600e81604051612d629190614781565b9081526040519081900360200190205460ff1615612d9857612d908686612d8a876001614631565b86612c54565b915050612433565b95945050505050565b6001600160a01b038216612de3576040517f64a0ae920000000000000000000000000000000000000000000000000000000081525f6004820152602401610945565b5f612def83835f612368565b90506001600160a01b03811615610c35576040517f73c6ac6e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610945565b6001600160a01b038216612e7f576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610945565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156109c1576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a0290612f46903390889087908790600401614eb6565b6020604051808303815f875af1925050508015612f80575060408051601f3d908101601f19168201909252612f7d91810190614ef1565b60015b613000573d808015612fad576040519150601f19603f3d011682016040523d82523d5f602084013e612fb2565b606091505b5080515f03612ff8576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610945565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014611eec576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610945565b5f8181805b82518110156125e1577f30000000000000000000000000000000000000000000000000000000000000008382815181106130c7576130c76141d2565b01602001517fff00000000000000000000000000000000000000000000000000000000000000161080159061315457507f390000000000000000000000000000000000000000000000000000000000000083828151811061312a5761312a6141d2565b01602001517fff000000000000000000000000000000000000000000000000000000000000001611155b1561319c57613164600a83614644565b9150603083828151811061317a5761317a6141d2565b016020015161318c919060f81c614a81565b6131999060ff1683614631565b91505b60010161308b565b6060815f036131e657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b815f5b811561320f57806131f981614e70565b91506132089050600a836144b6565b91506131e9565b5f8167ffffffffffffffff81111561322957613229613d1f565b6040519080825280601f01601f191660200182016040528015613253576020820181803683370190505b5090505b8415612433576132686001836147af565b9150613275600a8661479c565b613280906030614631565b60f81b818381518110613295576132956141d2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053506132ce600a866144b6565b9450613257565b606081515f036132f257505060408051602081019091525f815290565b5f60405180606001604052806040815260200161506a6040913990505f60038451600261331f9190614631565b61332991906144b6565b613334906004614644565b67ffffffffffffffff81111561334c5761334c613d1f565b6040519080825280601f01601f191660200182016040528015613376576020820181803683370190505b509050600182016020820185865187015b808210156133e2576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250613387565b50506003865106600181146133fe576002811461341157613419565b603d6001830353603d6002830353613419565b603d60018303535b509195945050505050565b808061343857506001600160a01b03821615155b15613530575f6134478461230a565b90506001600160a01b038316158015906134735750826001600160a01b0316816001600160a01b031614155b80156134a457506001600160a01b038082165f9081526005602090815260408083209387168352929052205460ff16155b156134e6576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610945565b811561352e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b5f828152600260205260408120546001600160a01b03908116908316156135a3576135a381848661396d565b6001600160a01b038116156135dd576135be5f855f80613424565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b0385161561360b576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b5f61368b83610dda565b5f838152600760205260409020549091508082146136dc576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f9061371f906001906147af565b5f8381526009602052604081205460088054939450909284908110613746576137466141d2565b905f5260205f20015490508060088381548110613765576137656141d2565b5f91825260208083209091019290925582815260099091526040808220849055858252812055600880548061379c5761379c614f0c565b600190038181905f5260205f20015f9055905550505050565b5f60016137c184610dda565b6137cb91906147af565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b5f805b60205460ff8216101561022857826040516020016138249190614781565b6040516020818303038152906040528051906020012060208260ff1681548110613850576138506141d2565b905f5260205f20016040516020016138689190614776565b60405160208183030381529060405280519060200120036138895792915050565b8061389381614a9a565b915050613806565b60605f805b60218460ff16600881106138b6576138b66141d2565b015460ff82161015610228575f60218560ff16600881106138d9576138d96141d2565b018260ff16815481106138ee576138ee6141d2565b905f5260205f2090601091828204019190066002029054906101000a900461ffff1690508261ffff168610158015613932575061392b8184614447565b61ffff1686105b1561394d576139438260ff166131a4565b93505050506107fa565b6139578184614447565b925050808061396590614a9a565b9150506138a0565b613978838383613a03565b610c35576001600160a01b0383166139bf576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610945565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610945565b5f6001600160a01b038316158015906124335750826001600160a01b0316846001600160a01b03161480613a5b57506001600160a01b038085165f9081526005602090815260408083209387168352929052205460ff165b806124335750505f908152600460205260409020546001600160a01b03908116911614919050565b5080545f8255600402905f5260205f20908101906109049190613acf565b604051806103400160405280601a905b613ab9613b0f565b815260200190600190039081613ab15790505090565b80821115613b0b575f613ae28282613b2e565b613aef600183015f613b2e565b613afc600283015f613b2e565b505f6003820155600401613acf565b5090565b604051806103400160405280601a906020820280368337509192915050565b508054613b3a90614181565b5f825580601f10613b49575050565b601f0160209004905f5260205f209081019061090491905b80821115613b0b575f8155600101613b61565b5f60208284031215613b84575f80fd5b5035919050565b5f5b83811015613ba5578181015183820152602001613b8d565b50505f910152565b5f8151808452613bc4816020860160208601613b8b565b601f01601f19169290920160200192915050565b602081525f613bea6020830184613bad565b9392505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610904575f80fd5b5f60208284031215613c2e575f80fd5b8135613bea81613bf1565b80356001600160a01b0381168114613c4f575f80fd5b919050565b5f8060408385031215613c65575f80fd5b613c6e83613c39565b946020939093013593505050565b5f805f60608486031215613c8e575f80fd5b613c9784613c39565b9250613ca560208501613c39565b9150604084013590509250925092565b5f8060408385031215613cc6575f80fd5b50508035926020909101359150565b608081525f613ce76080830187613bad565b8281036020840152613cf98187613bad565b90508281036040840152613d0d8186613bad565b91505082606083015295945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6040516080810167ffffffffffffffff81118282101715613d6f57613d6f613d1f565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613d9e57613d9e613d1f565b604052919050565b5f67ffffffffffffffff831115613dbf57613dbf613d1f565b613dd26020601f19601f86011601613d75565b9050828152838383011115613de5575f80fd5b828260208301375f602084830101529392505050565b5f82601f830112613e0a575f80fd5b613bea83833560208501613da6565b5f60208284031215613e29575f80fd5b813567ffffffffffffffff811115613e3f575f80fd5b61243384828501613dfb565b5f60208284031215613e5b575f80fd5b613bea82613c39565b803560ff81168114613c4f575f80fd5b5f60208284031215613e84575f80fd5b613bea82613e64565b8015158114610904575f80fd5b5f60208284031215613eaa575f80fd5b8135613bea81613e8d565b5f8060408385031215613ec6575f80fd5b613ecf83613e64565b9150613edd60208401613e64565b90509250929050565b5f8060408385031215613ef7575f80fd5b613f0083613c39565b91506020830135613f1081613e8d565b809150509250929050565b5f805f8060808587031215613f2e575f80fd5b613f3785613c39565b9350613f4560208601613c39565b925060408501359150606085013567ffffffffffffffff811115613f67575f80fd5b8501601f81018713613f77575f80fd5b613f8687823560208401613da6565b91505092959194509250565b5f8060408385031215613fa3575f80fd5b8235915060208084013567ffffffffffffffff80821115613fc2575f80fd5b818601915086601f830112613fd5575f80fd5b813581811115613fe757613fe7613d1f565b8060051b613ff6858201613d75565b918252838101850191858101908a84111561400f575f80fd5b86860192505b838310156140d05782358581111561402b575f80fd5b86016080818d03601f19011215614040575f80fd5b614048613d4c565b8882013587811115614058575f80fd5b6140668e8b83860101613dfb565b82525060408201358781111561407a575f80fd5b6140888e8b83860101613dfb565b8a830152506060808301358881111561409f575f80fd5b6140ad8f8c83870101613dfb565b604084015250608092909201359181019190915282529186019190860190614015565b809750505050505050509250929050565b5f80604083850312156140f2575f80fd5b6140fb83613c39565b9150613edd60208401613c39565b5f805f805f60a0868803121561411d575f80fd5b61412686613e64565b945061413460208701613c39565b93506040860135925060608601359150608086013561415281613e8d565b809150509295509295909350565b5f8060408385031215614171575f80fd5b82359150613edd60208401613c39565b600181811c9082168061419557607f821691505b6020821081036141cc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b60ff81811683821601908111156107fa576107fa6141ff565b5f8151614256818560208601613b8b565b9290920192915050565b5f815461426c81614181565b600182811680156142845760018114614299576142c5565b60ff19841687528215158302870194506142c5565b855f526020805f205f5b858110156142bc5781548a8201529084019082016142a3565b50505082870194505b5050505092915050565b5f84516142e0818460208901613b8b565b7f7b2274726169745f74797065223a220000000000000000000000000000000000908301908152614314600f820186614260565b90507f222c2276616c7565223a220000000000000000000000000000000000000000008152614346600b820185614260565b7f227d00000000000000000000000000000000000000000000000000000000000081526002019695505050505050565b5f8251614387818460208701613b8b565b7f2c00000000000000000000000000000000000000000000000000000000000000920191825250600101919050565b7f5b0000000000000000000000000000000000000000000000000000000000000081525f82516143ed816001850160208701613b8b565b7f5d000000000000000000000000000000000000000000000000000000000000006001939091019283015250600201919050565b61ffff81811683821602808216919082811461443f5761443f6141ff565b505092915050565b61ffff818116838216019080821115614462576144626141ff565b5092915050565b5f61ffff80831681810361447f5761447f6141ff565b6001019392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f826144c4576144c4614489565b500490565b7f3c7376672069643d2277696e652d7376672220786d6c6e733d22687474703a2f81527f2f7777772e77332e6f72672f323030302f73766722207072657365727665417360208201527f70656374526174696f3d22784d696e594d696e206d656574222076696577426f60408201527f783d22302030203230203330223e00000000000000000000000000000000000060608201525f835161457281606e850160208801613b8b565b7f3c7374796c653e726563747b77696474683a3170783b6865696768743a317078606e918401918201527f3b7d202377696e652d7376677b73686170652d72656e646572696e673a206372608e8201527f69737065646765733b7d2000000000000000000000000000000000000000000060ae82015283516145fb8160b9840160208801613b8b565b7f3c2f7374796c653e3c2f7376673e00000000000000000000000000000000000060b9929091019182015260c701949350505050565b808201808211156107fa576107fa6141ff565b80820281158282048414176107fa576107fa6141ff565b5f6020828403121561466b575f80fd5b8151613bea81613e8d565b601f821115610c3557805f5260205f20601f840160051c8101602085101561469b5750805b601f840160051c820191505b81811015611eec575f81556001016146a7565b815167ffffffffffffffff8111156146d4576146d4613d1f565b6146e8816146e28454614181565b84614676565b602080601f83116001811461471b575f84156147045750858301515b5f19600386901b1c1916600185901b1785556121a1565b5f85815260208120601f198616915b828110156147495788860151825594840194600190910190840161472a565b508582101561476657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f613bea8284614260565b5f8251614792818460208701613b8b565b9190910192915050565b5f826147aa576147aa614489565b500690565b818103818111156107fa576107fa6141ff565b5f85516147d3818460208a01613b8b565b8551908301906147e7818360208a01613b8b565b85519101906147fa818360208901613b8b565b7f200000000000000000000000000000000000000000000000000000000000000091019081528351614833816001840160208801613b8b565b016001019695505050505050565b7f7b226e616d65223a20220000000000000000000000000000000000000000000081525f865161487881600a850160208b01613b8b565b7f222c2022746f6b656e4964223a20220000000000000000000000000000000000600a9184019182015286516148b5816019840160208b01613b8b565b7f222c20226465736372697074696f6e223a20224120626f74746c65206f662074601992909101918201527f68652066696e657374200000000000000000000000000000000000000000000060398201528551614919816043840160208a01613b8b565b7f2e2047656e65726174656420616e642073746f7265642066756c6c79206f6e2d604392909101918201527f636861696e2c20636f757274657379206f66204344472e222c2022696d61676560638201527f223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c000060838201526149fe6149d56149cf6149a660a1850189614245565b7f222c2261747472696275746573223a00000000000000000000000000000000008152600f0190565b86614245565b7f7d00000000000000000000000000000000000000000000000000000000000000815260010190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f8251614a4181601d850160208701613b8b565b91909101601d0192915050565b5f60208284031215614a5e575f80fd5b5051919050565b60ff8181168382160290811690818114614462576144626141ff565b60ff82811682821603908111156107fa576107fa6141ff565b5f60ff821660ff8103614aaf57614aaf6141ff565b60010192915050565b5f8551614ac9818460208a01613b8b565b7f3c7265637420636c6173733d27630000000000000000000000000000000000009083019081528551614b0381600e840160208a01613b8b565b7f2720783d27000000000000000000000000000000000000000000000000000000600e92909101918201528451614b41816013840160208901613b8b565b7f2720793d27000000000000000000000000000000000000000000000000000000601392909101918201528351614b7f816018840160208801613b8b565b7f272f3e000000000000000000000000000000000000000000000000000000000060189290910191820152601b019695505050505050565b5f8451614bc8818460208901613b8b565b7f2e633000000000000000000000000000000000000000000000000000000000009083019081528451614c02816003840160208901613b8b565b7f7b66696c6c3a2300000000000000000000000000000000000000000000000000600392909101918201528351614c4081600a840160208801613b8b565b7f7d00000000000000000000000000000000000000000000000000000000000000600a9290910191820152600b0195945050505050565b5f8251614c88818460208701613b8b565b7f2e6330367b66696c6c3a236536343533397d2e6330377b66696c6c3a236635379201918252507f7d2e6330387b66696c6c3a236133347d000000000000000000000000000000006020820152603001919050565b5f8451614cee818460208901613b8b565b845190830190614d02818360208901613b8b565b7f7b66696c6c3a230000000000000000000000000000000000000000000000000091019081528351614d3b816007840160208801613b8b565b7f7d000000000000000000000000000000000000000000000000000000000000006007929091019182015260080195945050505050565b5f8251614d83818460208701613b8b565b7f2e6331317b66696c6c3a233030307d2e6331327b66696c6c3a233239316432629201918252507f7d2e6331337b66696c6c3a236666633261317d2e6331347b66696c6c3a23663060208201527f623534317d2e6331357b66696c6c3a233362323032377d2e6331367b66696c6c60408201527f3a236264366136327d2e6331377b66696c6c3a236566657d2e6331387b66696c60608201527f6c3a236366376532627d2e6331397b66696c6c3a236162353133307d2e63323060808201527f7b66696c6c3a233364323933367d00000000000000000000000000000000000060a082015260ae01919050565b5f5f198203614e8157614e816141ff565b5060010190565b5f8351614e99818460208801613b8b565b835190830190614ead818360208801613b8b565b01949350505050565b5f6001600160a01b03808716835280861660208401525083604083015260806060830152614ee76080830184613bad565b9695505050505050565b5f60208284031215614f01575f80fd5b8151613bea81613bf1565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfe68613131696131316a6131316b61313168623131696231306a6231306b62313168633131696331306a6331306b63313168643131696431306a6431306b64313168653131696530396a6530396b653131686631316b663131686731316b673131696c30306a6c3030696d30306a6d3030686e3030696e30306a6e30306b6e3030686f3030696f30306a6f30306b6f303068703030697030306a7030306b70303068713030697130306a7130306b71303068723030697230306a7230306b72303068733030697330306a7330306b73303068743030697430306a7430306b74303068753030697530306a7530306b75303068763030697630306a7630306b76303068773030697730306a7730306b773030697830306a783030697930306a793030687a3131697a31316a7a31316b7a31314142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201827bb1bfd37dda1fa9f6a7c1f3cb3515d3aee186232c92ed0d6cafe307cd8ce64736f6c63430008170033

Deployed Bytecode

0x608060405260043610610228575f3560e01c80637420aa3611610131578063c87b56dd116100ac578063e0f9b4791161007c578063f10edf5c11610062578063f10edf5c146106a7578063f4f3b200146106c6578063fe3dd788146106e5575f80fd5b8063e0f9b4791461064b578063e985e9c514610660575f80fd5b8063c87b56dd146105e4578063d5abeb0114610603578063d93dfe8814610618578063e086e5ec14610637575f80fd5b806395d89b4111610101578063a22cb465116100e7578063a22cb46514610587578063b88d4fde146105a6578063bcf77e60146105c5575f80fd5b806395d89b41146105605780639e61b52c14610574575f80fd5b80637420aa36146104de57806389ce3074146104fd5780638f4bb4971461051c57806393ecb0c614610535575f80fd5b80632f745c59116101c15780636352211e1161019157806370a082311161017757806370a082311461041757806370dc20391461043657806373532802146104bf575f80fd5b80636352211e146103d957806366e33870146103f8575f80fd5b80632f745c591461034d5780632fb098d21461036c57806342842e0e1461039b5780634f6ccce7146103ba575f80fd5b8063095ea7b3116101fc578063095ea7b3146102db578063098afd4b146102fc57806318160ddd1461031057806323b872dd1461032e575f80fd5b80625ea3071461022c57806301ffc9a71461026157806306fdde0314610290578063081812fc146102a4575b5f80fd5b348015610237575f80fd5b5061024b610246366004613b74565b610704565b6040516102589190613bd8565b60405180910390f35b34801561026c575f80fd5b5061028061027b366004613c1e565b6107a5565b6040519015158152602001610258565b34801561029b575f80fd5b5061024b610800565b3480156102af575f80fd5b506102c36102be366004613b74565b61088f565b6040516001600160a01b039091168152602001610258565b3480156102e6575f80fd5b506102fa6102f5366004613c54565b6108b6565b005b348015610307575f80fd5b506102fa6108c5565b34801561031b575f80fd5b506008545b604051908152602001610258565b348015610339575f80fd5b506102fa610348366004613c7c565b610907565b348015610358575f80fd5b50610320610367366004613c54565b6109c7565b348015610377575f80fd5b5061038b610386366004613cb5565b610a43565b6040516102589493929190613cd5565b3480156103a6575f80fd5b506102fa6103b5366004613c7c565b610c1b565b3480156103c5575f80fd5b506103206103d4366004613b74565b610c3a565b3480156103e4575f80fd5b506102c36103f3366004613b74565b610ca8565b348015610403575f80fd5b5061024b610412366004613e19565b610cb2565b348015610422575f80fd5b50610320610431366004613e4b565b610dda565b348015610441575f80fd5b5061048b610450366004613e74565b60106020525f9081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919290919060ff1685565b604080516001600160a01b03909616865260208601949094529284019190915260608301521515608082015260a001610258565b3480156104ca575f80fd5b506102fa6104d9366004613b74565b610e38565b3480156104e9575f80fd5b506102fa6104f8366004613e9a565b610eca565b348015610508575f80fd5b5061024b610517366004613e19565b610ef3565b348015610527575f80fd5b50600b546102809060ff1681565b348015610540575f80fd5b5061032061054f366004613e4b565b600c6020525f908152604090205481565b34801561056b575f80fd5b5061024b611163565b6102fa610582366004613eb5565b611172565b348015610592575f80fd5b506102fa6105a1366004613ee6565b6116e9565b3480156105b1575f80fd5b506102fa6105c0366004613f1b565b6116f4565b3480156105d0575f80fd5b5061024b6105df366004613e19565b61170b565b3480156105ef575f80fd5b5061024b6105fe366004613b74565b611bf2565b34801561060e575f80fd5b5061032060135481565b348015610623575f80fd5b506102fa610632366004613f92565b611d0a565b348015610642575f80fd5b506102fa611e37565b348015610656575f80fd5b5061032060145481565b34801561066b575f80fd5b5061028061067a3660046140e1565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b3480156106b2575f80fd5b506102fa6106c1366004614109565b611ef3565b3480156106d1575f80fd5b506102fa6106e0366004613e4b565b611fb6565b3480156106f0575f80fd5b506102fa6106ff366004614160565b6121a9565b5f818152600f602052604081208054606092919061072190614181565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90614181565b80156107985780601f1061076f57610100808354040283529160200191610798565b820191905f5260205f20905b81548152906001019060200180831161077b57829003601f168201915b5093979650505050505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107fa57506107fa82612228565b92915050565b60605f805461080e90614181565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90614181565b80156108855780601f1061085c57610100808354040283529160200191610885565b820191905f5260205f20905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b5f6108998261230a565b505f828152600460205260409020546001600160a01b03166107fa565b6108c182823361235b565b5050565b601e546001600160a01b031633146108db575f80fd5b5f5b6009811015610904575f818152600d602052604081206108fc91613a83565b6001016108dd565b50565b6001600160a01b03821661094e576040517f64a0ae920000000000000000000000000000000000000000000000000000000081525f60048201526024015b60405180910390fd5b5f61095a838333612368565b9050836001600160a01b0316816001600160a01b0316146109c1576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610945565b50505050565b5f6109d183610dda565b8210610a1b576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401610945565b506001600160a01b03919091165f908152600660209081526040808320938352929052205490565b600d602052815f5260405f208181548110610a5c575f80fd5b905f5260205f2090600402015f9150915050805f018054610a7c90614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890614181565b8015610af35780601f10610aca57610100808354040283529160200191610af3565b820191905f5260205f20905b815481529060010190602001808311610ad657829003601f168201915b505050505090806001018054610b0890614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3490614181565b8015610b7f5780601f10610b5657610100808354040283529160200191610b7f565b820191905f5260205f20905b815481529060010190602001808311610b6257829003601f168201915b505050505090806002018054610b9490614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc090614181565b8015610c0b5780601f10610be257610100808354040283529160200191610c0b565b820191905f5260205f20905b815481529060010190602001808311610bee57829003601f168201915b5050505050908060030154905084565b610c3583838360405180602001604052805f8152506116f4565b505050565b5f610c4460085490565b8210610c85576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081525f600482015260248101839052604401610945565b60088281548110610c9857610c986141d2565b905f5260205f2001549050919050565b5f6107fa8261230a565b6060805f5b60098160ff161015610db1575f610ce7610ce28660ff8516610cda86600161422c565b60ff1661243b565b61252c565b905082600d5f8460ff1681526020019081526020015f208260ff1681548110610d1257610d126141d2565b905f5260205f209060040201600101600d5f8560ff1681526020019081526020015f208360ff1681548110610d4957610d496141d2565b905f5260205f2090600402015f01604051602001610d69939291906142cf565b60405160208183030381529060405292508160ff16600814610da85782604051602001610d969190614376565b60405160208183030381529060405292505b50600101610cb7565b5080604051602001610dc391906143b6565b604051602081830303815290604052915050919050565b5f6001600160a01b038216610e1d576040517f89c62b640000000000000000000000000000000000000000000000000000000081525f6004820152602401610945565b506001600160a01b03165f9081526003602052604090205490565b601e546001600160a01b03163314610e4e575f80fd5b6013548110610ec55760405162461bcd60e51b815260206004820152603360248201527f4e6577206d617820737570706c79206d757374206265206c657373207468616e60448201527f2063757272656e74206d617820737570706c79000000000000000000000000006064820152608401610945565b601355565b601e546001600160a01b03163314610ee0575f80fd5b600b805460ff1916911515919091179055565b606080610efe613aa1565b5f610f08856125e9565b905060045b60098160ff16101561109b575f610f30610ce28860ff8516610cda86600161422c565b90505f5b600d5f8460ff1681526020019081526020015f208260ff1681548110610f5c57610f5c6141d2565b905f5260205f209060040201600301548161ffff161015611091575f611069600d5f8660ff1681526020019081526020015f208460ff1681548110610fa357610fa36141d2565b905f5260205f2090600402016002018054610fbd90614181565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe990614181565b80156110345780601f1061100b57610100808354040283529160200191611034565b820191905f5260205f20905b81548152906001019060200180831161101757829003601f168201915b50505050508360046110469190614421565b61ffff16611055856004614421565b611060906004614447565b61ffff1661243b565b905061107b8187898860016002612635565b965050808061108990614469565b915050610f34565b5050600101610f0d565b505f6040518061016001604052806101308152602001614f3a610130913990505f5b600482516110cb91906144b6565b8161ffff161015611128575f611100836110e6846004614421565b61ffff166110f5856001614447565b611060906004614421565b90506111128186888760016002612635565b955050808061112090614469565b9150506110bd565b505f6111338761274e565b905084816040516020016111489291906144c9565b60408051601f19818403018152919052979650505050505050565b60606001805461080e90614181565b61117a612bfb565b600b5460ff16806111955750601e546001600160a01b031633145b6111e15760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e6720697320636c6f7365640000000000000000000000000000006044820152606401610945565b601454335f908152600c60205260409020546112019060ff841690614631565b1115806112185750601e546001600160a01b031633145b6112645760405162461bcd60e51b815260206004820152601960248201527f457863656564732077616c6c6574206d696e74206c696d6974000000000000006044820152606401610945565b5f8160ff1611801561128e575060058160ff1611158061128e5750601e546001600160a01b031633145b6113005760405162461bcd60e51b815260206004820152602360248201527f3120746f2035204e46547320616c6c6f77656420706572207472616e7361637460448201527f696f6e00000000000000000000000000000000000000000000000000000000006064820152608401610945565b60ff8083165f90815260106020526040902060048101549091166113665760405162461bcd60e51b815260206004820152601260248201527f546f6b656e206e6f7420616363657074656400000000000000000000000000006044820152606401610945565b5f8260ff16826001015461137a9190614644565b90505f61138660085490565b60135490915061139960ff861683614631565b11156113e75760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610945565b82600201548460ff1684600301546113ff9190614631565b111561144d5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d696e74206c696d697420666f7220746f6b656e000000006044820152606401610945565b8460ff165f036114ab578134146114a65760405162461bcd60e51b815260206004820152601360248201527f496e636f7272656374204554482076616c7565000000000000000000000000006044820152606401610945565b6115ff565b341561151f5760405162461bcd60e51b815260206004820152602360248201527f455448206e6f7420726571756972656420666f72204552432d3230206d696e7460448201527f696e6700000000000000000000000000000000000000000000000000000000006064820152608401610945565b82546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018490526001600160a01b039091169081906323b872dd906064016020604051808303815f875af115801561158d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b1919061465b565b6115fd5760405162461bcd60e51b815260206004820152601560248201527f4552433230205472616e73666572206661696c656400000000000000000000006044820152606401610945565b505b5f5b8460ff168160ff161015611699575f61161d60ff831684614631565b905061162b81335f8a612c54565b5f828152600f602052604090209061164390826146ba565b506001600e600f5f8481526020019081526020015f206040516116669190614776565b908152604051908190036020019020805491151560ff199092169190911790556116903382612da1565b50600101611601565b508360ff16836003015f8282546116b09190614631565b9091555050335f908152600c60205260408120805460ff871692906116d6908490614631565b90915550506001600a55506108c1915050565b6108c1338383612e34565b6116ff848484610907565b6109c184848484612eeb565b60605f6040518060800160405280611728610ce2865f600161243b565b60ff168152602001611740610ce2866001600261243b565b60ff168152602001611758610ce2866002600361243b565b60ff168152602001611770610ce2866003600461243b565b60ff1690526040519091505f9061178b908590602001614781565b60408051601f19818403018152919052805160209182012060015f818152600d9093529092507ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c5908490602002015160ff16815481106117ed576117ed6141d2565b905f5260205f2090600402015f01805461180690614181565b80601f016020809104026020016040519081016040528092919081815260200182805461183290614181565b801561187d5780601f106118545761010080835404028352916020019161187d565b820191905f5260205f20905b81548152906001019060200180831161186057829003601f168201915b505060025f818152600d6020529495507f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc24993508792509050602002015160ff16815481106118cd576118cd6141d2565b905f5260205f2090600402015f0180546118e690614181565b80601f016020809104026020016040519081016040528092919081815260200182805461191290614181565b801561195d5780601f106119345761010080835404028352916020019161195d565b820191905f5260205f20905b81548152906001019060200180831161194057829003601f168201915b505050505090505f60115f865f6004811061197a5761197a6141d2565b602002015160ff1660ff1681526020019081526020015f2060078561199f919061479c565b815481106119af576119af6141d2565b905f5260205f200180546119c290614181565b80601f01602080910402602001604051908101604052809291908181526020018280546119ee90614181565b8015611a395780601f10611a1057610100808354040283529160200191611a39565b820191905f5260205f20905b815481529060010190602001808311611a1c57829003601f168201915b505060035f818152600d6020529495507f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e293508992509050602002015160ff1681548110611a8957611a896141d2565b905f5260205f2090600402015f018054611aa290614181565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace90614181565b8015611b195780601f10611af057610100808354040283529160200191611b19565b820191905f5260205f20905b815481529060010190602001808311611afc57829003601f168201915b505050505090505f611b35611b30835f600461243b565b613086565b60035f818152600d6020529192507f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e2908990602002015160ff1681548110611b7f57611b7f6141d2565b5f91825260208220600360049092020101549150611bba611ba1836001614631565b611bab908a61479c565b611bb590856147af565b6131a4565b905085858883604051602001611bd394939291906147c2565b6040516020818303038152906040529950505050505050505050919050565b60605f611bfe83610ca8565b6001600160a01b031603611c7a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610945565b5f611c8483610704565b90505f611c908261170b565b9050611ce281611c9f866131a4565b83611cb1611cac87610ef3565b6132d5565b611cba87610cb2565b604051602001611cce959493929190614841565b6040516020818303038152906040526132d5565b604051602001611cf29190614a0a565b60405160208183030381529060405292505050919050565b601e546001600160a01b03163314611d20575f80fd5b5f5b8151811015610c3557600d5f8481526020019081526020015f206040518060800160405280848481518110611d5957611d596141d2565b60200260200101515f01518152602001848481518110611d7b57611d7b6141d2565b6020026020010151602001518152602001848481518110611d9e57611d9e6141d2565b6020026020010151604001518152602001848481518110611dc157611dc16141d2565b6020908102919091018101516060015190915282546001810184555f93845292208151919260040201908190611df790826146ba565b5060208201516001820190611e0c90826146ba565b5060408201516002820190611e2190826146ba565b5060609190910151600390910155600101611d22565b601e546001600160a01b03163314611e4d575f80fd5b475f6064611e5c604684614644565b611e6691906144b6565b90505f611e7382846147af565b601f546040519192506001600160a01b03169083156108fc029084905f818181858888f19350505050158015611eab573d5f803e3d5ffd5b5060405173d1f785a1642c3310da57bc966db21328d96ac2c290819083156108fc029084905f818181858888f19350505050158015611eec573d5f803e3d5ffd5b5050505050565b601e546001600160a01b03163314611f09575f80fd5b6040805160a0810182526001600160a01b039586168152602080820195865281830194855260ff979097165f8181526010808a5293812060038101805460608601908152961515608086019081529390925293909852905182547fffffffffffffffffffffffff0000000000000000000000000000000000000000169616959095178155925160018401559051600283015551909255516004909101805460ff1916911515919091179055565b601e546001600160a01b03163314611fcc575f80fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561202b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204f9190614a4e565b90505f606461205f604684614644565b61206991906144b6565b90505f61207682846147af565b601f546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810185905291925085169063a9059cbb906044016020604051808303815f875af11580156120e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612105919061465b565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273d1f785a1642c3310da57bc966db21328d96ac2c26004820152602481018290526001600160a01b0385169063a9059cbb906044016020604051808303815f875af115801561217d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121a1919061465b565b505050505050565b601e546001600160a01b031633146121bf575f80fd5b60148290556001600160a01b038116158015906121ea5750601e546001600160a01b03828116911614155b156108c157601e80546001600160a01b0383167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790555050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806122ba57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107fa57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107fa565b5f818152600260205260408120546001600160a01b0316806107fa576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610945565b610c358383836001613424565b5f80612375858585613577565b90506001600160a01b0381166123d1576123cc84600880545f838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123f4565b846001600160a01b0316816001600160a01b0316146123f4576123f48185613681565b6001600160a01b0385166124105761240b8461370e565b612433565b846001600160a01b0316816001600160a01b0316146124335761243385856137b5565b949350505050565b6060835f61244985856147af565b67ffffffffffffffff81111561246157612461613d1f565b6040519080825280601f01601f19166020018201604052801561248b576020820181803683370190505b509050845b84811015612522578281815181106124aa576124aa6141d2565b01602001517fff0000000000000000000000000000000000000000000000000000000000000016826124dc88846147af565b815181106124ec576124ec6141d2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600101612490565b5095945050505050565b5f8181805b82518160ff1610156125e1576030838260ff1681518110612554576125546141d2565b016020015160f81c1080159061258757506039838260ff168151811061257c5761257c6141d2565b016020015160f81c11155b156125cf57612597600a83614a65565b91506030838260ff16815181106125b0576125b06141d2565b01602001516125c2919060f81c614a81565b6125cc908361422c565b91505b806125d981614a9a565b915050612531565b509392505050565b5f80826040516020016125fc9190614781565b60408051601f19818403018152919052805160209091012090506002612623600a8361479c565b61262d919061479c565b159392505050565b60605f61264c612647895f600161243b565b613803565b90505f61265f6126478a6001600261243b565b90505f8661266d5782612678565b612678836011614a81565b9050888160ff16601a811061268f5761268f6141d2565b60200201518260ff16601a81106126a8576126a86141d2565b602002015161274057876126bf8b6002600461243b565b6126d46126cc898561422c565b60ff166131a4565b6126e16126cc898761422c565b6040516020016126f49493929190614ab8565b60405160208183030381529060405297506001898260ff16601a811061271c5761271c6141d2565b60200201518360ff16601a8110612735576127356141d2565b911515602090920201525b509598975050505050505050565b6040805160208082019092525f808252808052600d9092526060917f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee612799610ce28684600161243b565b60ff16815481106127ac576127ac6141d2565b905f5260205f20906004020160020180546127c690614181565b80601f01602080910402602001604051908101604052809291908181526020018280546127f290614181565b801561283d5780601f106128145761010080835404028352916020019161283d565b820191905f5260205f20905b81548152906001019060200180831161282057829003601f168201915b505060015f818152600d6020529495507ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c593506128839250610ce291508890600261243b565b60ff1681548110612896576128966141d2565b905f5260205f20906004020160020180546128b090614181565b80601f01602080910402602001604051908101604052809291908181526020018280546128dc90614181565b80156129275780601f106128fe57610100808354040283529160200191612927565b820191905f5260205f20905b81548152906001019060200180831161290a57829003601f168201915b505060025f818152600d6020529495507f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc249935061296d9250610ce291508990600361243b565b60ff1681548110612980576129806141d2565b905f5260205f209060040201600201805461299a90614181565b80601f01602080910402602001604051908101604052809291908181526020018280546129c690614181565b8015612a115780601f106129e857610100808354040283529160200191612a11565b820191905f5260205f20905b8154815290600101906020018083116129f457829003601f168201915b505050505090505f5b6003811015612a88575f612a4e84612a33846003614644565b612a3e856001614631565b612a49906003614644565b61243b565b905085612a5a836131a4565b82604051602001612a6d93929190614bb7565b60408051601f19818403018152919052955050600101612a1a565b505f5b6003811015612ae3575f612aa483612a33846003614644565b905085612ab5611bb5846003614631565b82604051602001612ac893929190614bb7565b60408051601f19818403018152919052955050600101612a8b565b5083604051602001612af59190614c77565b60405160208183030381529060405293505f5b6002811015612bcf575f612b2185612a33846003614644565b90505f8215612b65576040518060400160405280600481526020017f2e63313000000000000000000000000000000000000000000000000000000000815250612b9c565b6040518060400160405280600481526020017f2e633039000000000000000000000000000000000000000000000000000000008152505b9050868183604051602001612bb393929190614cdd565b60408051808303601f1901815291905296505050600101612b08565b5083604051602001612be19190614d72565b60408051601f198184030181529190529695505050505050565b6002600a5403612c4d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610945565b6002600a55565b6060600a8310612c62575f80fd5b5f612c6f8360ff166131a4565b90505f5b60088160ff161015612d515760128054905f612c8e83614e70565b909155505060125460408051426020820152449181019190915260608082018a905288901b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001660808201526094810187905260b48101919091525f906127109060d401604051602081830303815290604052805190602001205f1c612d14919061479c565b905082612d258261ffff168461389b565b604051602001612d36929190614e88565b60408051601f19818403018152919052925050600101612c73565b50600e81604051612d629190614781565b9081526040519081900360200190205460ff1615612d9857612d908686612d8a876001614631565b86612c54565b915050612433565b95945050505050565b6001600160a01b038216612de3576040517f64a0ae920000000000000000000000000000000000000000000000000000000081525f6004820152602401610945565b5f612def83835f612368565b90506001600160a01b03811615610c35576040517f73c6ac6e0000000000000000000000000000000000000000000000000000000081525f6004820152602401610945565b6001600160a01b038216612e7f576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610945565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156109c1576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a0290612f46903390889087908790600401614eb6565b6020604051808303815f875af1925050508015612f80575060408051601f3d908101601f19168201909252612f7d91810190614ef1565b60015b613000573d808015612fad576040519150601f19603f3d011682016040523d82523d5f602084013e612fb2565b606091505b5080515f03612ff8576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610945565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014611eec576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610945565b5f8181805b82518110156125e1577f30000000000000000000000000000000000000000000000000000000000000008382815181106130c7576130c76141d2565b01602001517fff00000000000000000000000000000000000000000000000000000000000000161080159061315457507f390000000000000000000000000000000000000000000000000000000000000083828151811061312a5761312a6141d2565b01602001517fff000000000000000000000000000000000000000000000000000000000000001611155b1561319c57613164600a83614644565b9150603083828151811061317a5761317a6141d2565b016020015161318c919060f81c614a81565b6131999060ff1683614631565b91505b60010161308b565b6060815f036131e657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b815f5b811561320f57806131f981614e70565b91506132089050600a836144b6565b91506131e9565b5f8167ffffffffffffffff81111561322957613229613d1f565b6040519080825280601f01601f191660200182016040528015613253576020820181803683370190505b5090505b8415612433576132686001836147af565b9150613275600a8661479c565b613280906030614631565b60f81b818381518110613295576132956141d2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053506132ce600a866144b6565b9450613257565b606081515f036132f257505060408051602081019091525f815290565b5f60405180606001604052806040815260200161506a6040913990505f60038451600261331f9190614631565b61332991906144b6565b613334906004614644565b67ffffffffffffffff81111561334c5761334c613d1f565b6040519080825280601f01601f191660200182016040528015613376576020820181803683370190505b509050600182016020820185865187015b808210156133e2576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250613387565b50506003865106600181146133fe576002811461341157613419565b603d6001830353603d6002830353613419565b603d60018303535b509195945050505050565b808061343857506001600160a01b03821615155b15613530575f6134478461230a565b90506001600160a01b038316158015906134735750826001600160a01b0316816001600160a01b031614155b80156134a457506001600160a01b038082165f9081526005602090815260408083209387168352929052205460ff16155b156134e6576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610945565b811561352e5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b5f828152600260205260408120546001600160a01b03908116908316156135a3576135a381848661396d565b6001600160a01b038116156135dd576135be5f855f80613424565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b0385161561360b576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b5f61368b83610dda565b5f838152600760205260409020549091508082146136dc576001600160a01b0384165f9081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b505f9182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008545f9061371f906001906147af565b5f8381526009602052604081205460088054939450909284908110613746576137466141d2565b905f5260205f20015490508060088381548110613765576137656141d2565b5f91825260208083209091019290925582815260099091526040808220849055858252812055600880548061379c5761379c614f0c565b600190038181905f5260205f20015f9055905550505050565b5f60016137c184610dda565b6137cb91906147af565b6001600160a01b039093165f908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b5f805b60205460ff8216101561022857826040516020016138249190614781565b6040516020818303038152906040528051906020012060208260ff1681548110613850576138506141d2565b905f5260205f20016040516020016138689190614776565b60405160208183030381529060405280519060200120036138895792915050565b8061389381614a9a565b915050613806565b60605f805b60218460ff16600881106138b6576138b66141d2565b015460ff82161015610228575f60218560ff16600881106138d9576138d96141d2565b018260ff16815481106138ee576138ee6141d2565b905f5260205f2090601091828204019190066002029054906101000a900461ffff1690508261ffff168610158015613932575061392b8184614447565b61ffff1686105b1561394d576139438260ff166131a4565b93505050506107fa565b6139578184614447565b925050808061396590614a9a565b9150506138a0565b613978838383613a03565b610c35576001600160a01b0383166139bf576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610945565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610945565b5f6001600160a01b038316158015906124335750826001600160a01b0316846001600160a01b03161480613a5b57506001600160a01b038085165f9081526005602090815260408083209387168352929052205460ff165b806124335750505f908152600460205260409020546001600160a01b03908116911614919050565b5080545f8255600402905f5260205f20908101906109049190613acf565b604051806103400160405280601a905b613ab9613b0f565b815260200190600190039081613ab15790505090565b80821115613b0b575f613ae28282613b2e565b613aef600183015f613b2e565b613afc600283015f613b2e565b505f6003820155600401613acf565b5090565b604051806103400160405280601a906020820280368337509192915050565b508054613b3a90614181565b5f825580601f10613b49575050565b601f0160209004905f5260205f209081019061090491905b80821115613b0b575f8155600101613b61565b5f60208284031215613b84575f80fd5b5035919050565b5f5b83811015613ba5578181015183820152602001613b8d565b50505f910152565b5f8151808452613bc4816020860160208601613b8b565b601f01601f19169290920160200192915050565b602081525f613bea6020830184613bad565b9392505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610904575f80fd5b5f60208284031215613c2e575f80fd5b8135613bea81613bf1565b80356001600160a01b0381168114613c4f575f80fd5b919050565b5f8060408385031215613c65575f80fd5b613c6e83613c39565b946020939093013593505050565b5f805f60608486031215613c8e575f80fd5b613c9784613c39565b9250613ca560208501613c39565b9150604084013590509250925092565b5f8060408385031215613cc6575f80fd5b50508035926020909101359150565b608081525f613ce76080830187613bad565b8281036020840152613cf98187613bad565b90508281036040840152613d0d8186613bad565b91505082606083015295945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6040516080810167ffffffffffffffff81118282101715613d6f57613d6f613d1f565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613d9e57613d9e613d1f565b604052919050565b5f67ffffffffffffffff831115613dbf57613dbf613d1f565b613dd26020601f19601f86011601613d75565b9050828152838383011115613de5575f80fd5b828260208301375f602084830101529392505050565b5f82601f830112613e0a575f80fd5b613bea83833560208501613da6565b5f60208284031215613e29575f80fd5b813567ffffffffffffffff811115613e3f575f80fd5b61243384828501613dfb565b5f60208284031215613e5b575f80fd5b613bea82613c39565b803560ff81168114613c4f575f80fd5b5f60208284031215613e84575f80fd5b613bea82613e64565b8015158114610904575f80fd5b5f60208284031215613eaa575f80fd5b8135613bea81613e8d565b5f8060408385031215613ec6575f80fd5b613ecf83613e64565b9150613edd60208401613e64565b90509250929050565b5f8060408385031215613ef7575f80fd5b613f0083613c39565b91506020830135613f1081613e8d565b809150509250929050565b5f805f8060808587031215613f2e575f80fd5b613f3785613c39565b9350613f4560208601613c39565b925060408501359150606085013567ffffffffffffffff811115613f67575f80fd5b8501601f81018713613f77575f80fd5b613f8687823560208401613da6565b91505092959194509250565b5f8060408385031215613fa3575f80fd5b8235915060208084013567ffffffffffffffff80821115613fc2575f80fd5b818601915086601f830112613fd5575f80fd5b813581811115613fe757613fe7613d1f565b8060051b613ff6858201613d75565b918252838101850191858101908a84111561400f575f80fd5b86860192505b838310156140d05782358581111561402b575f80fd5b86016080818d03601f19011215614040575f80fd5b614048613d4c565b8882013587811115614058575f80fd5b6140668e8b83860101613dfb565b82525060408201358781111561407a575f80fd5b6140888e8b83860101613dfb565b8a830152506060808301358881111561409f575f80fd5b6140ad8f8c83870101613dfb565b604084015250608092909201359181019190915282529186019190860190614015565b809750505050505050509250929050565b5f80604083850312156140f2575f80fd5b6140fb83613c39565b9150613edd60208401613c39565b5f805f805f60a0868803121561411d575f80fd5b61412686613e64565b945061413460208701613c39565b93506040860135925060608601359150608086013561415281613e8d565b809150509295509295909350565b5f8060408385031215614171575f80fd5b82359150613edd60208401613c39565b600181811c9082168061419557607f821691505b6020821081036141cc577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b60ff81811683821601908111156107fa576107fa6141ff565b5f8151614256818560208601613b8b565b9290920192915050565b5f815461426c81614181565b600182811680156142845760018114614299576142c5565b60ff19841687528215158302870194506142c5565b855f526020805f205f5b858110156142bc5781548a8201529084019082016142a3565b50505082870194505b5050505092915050565b5f84516142e0818460208901613b8b565b7f7b2274726169745f74797065223a220000000000000000000000000000000000908301908152614314600f820186614260565b90507f222c2276616c7565223a220000000000000000000000000000000000000000008152614346600b820185614260565b7f227d00000000000000000000000000000000000000000000000000000000000081526002019695505050505050565b5f8251614387818460208701613b8b565b7f2c00000000000000000000000000000000000000000000000000000000000000920191825250600101919050565b7f5b0000000000000000000000000000000000000000000000000000000000000081525f82516143ed816001850160208701613b8b565b7f5d000000000000000000000000000000000000000000000000000000000000006001939091019283015250600201919050565b61ffff81811683821602808216919082811461443f5761443f6141ff565b505092915050565b61ffff818116838216019080821115614462576144626141ff565b5092915050565b5f61ffff80831681810361447f5761447f6141ff565b6001019392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f826144c4576144c4614489565b500490565b7f3c7376672069643d2277696e652d7376672220786d6c6e733d22687474703a2f81527f2f7777772e77332e6f72672f323030302f73766722207072657365727665417360208201527f70656374526174696f3d22784d696e594d696e206d656574222076696577426f60408201527f783d22302030203230203330223e00000000000000000000000000000000000060608201525f835161457281606e850160208801613b8b565b7f3c7374796c653e726563747b77696474683a3170783b6865696768743a317078606e918401918201527f3b7d202377696e652d7376677b73686170652d72656e646572696e673a206372608e8201527f69737065646765733b7d2000000000000000000000000000000000000000000060ae82015283516145fb8160b9840160208801613b8b565b7f3c2f7374796c653e3c2f7376673e00000000000000000000000000000000000060b9929091019182015260c701949350505050565b808201808211156107fa576107fa6141ff565b80820281158282048414176107fa576107fa6141ff565b5f6020828403121561466b575f80fd5b8151613bea81613e8d565b601f821115610c3557805f5260205f20601f840160051c8101602085101561469b5750805b601f840160051c820191505b81811015611eec575f81556001016146a7565b815167ffffffffffffffff8111156146d4576146d4613d1f565b6146e8816146e28454614181565b84614676565b602080601f83116001811461471b575f84156147045750858301515b5f19600386901b1c1916600185901b1785556121a1565b5f85815260208120601f198616915b828110156147495788860151825594840194600190910190840161472a565b508582101561476657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f613bea8284614260565b5f8251614792818460208701613b8b565b9190910192915050565b5f826147aa576147aa614489565b500690565b818103818111156107fa576107fa6141ff565b5f85516147d3818460208a01613b8b565b8551908301906147e7818360208a01613b8b565b85519101906147fa818360208901613b8b565b7f200000000000000000000000000000000000000000000000000000000000000091019081528351614833816001840160208801613b8b565b016001019695505050505050565b7f7b226e616d65223a20220000000000000000000000000000000000000000000081525f865161487881600a850160208b01613b8b565b7f222c2022746f6b656e4964223a20220000000000000000000000000000000000600a9184019182015286516148b5816019840160208b01613b8b565b7f222c20226465736372697074696f6e223a20224120626f74746c65206f662074601992909101918201527f68652066696e657374200000000000000000000000000000000000000000000060398201528551614919816043840160208a01613b8b565b7f2e2047656e65726174656420616e642073746f7265642066756c6c79206f6e2d604392909101918201527f636861696e2c20636f757274657379206f66204344472e222c2022696d61676560638201527f223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c000060838201526149fe6149d56149cf6149a660a1850189614245565b7f222c2261747472696275746573223a00000000000000000000000000000000008152600f0190565b86614245565b7f7d00000000000000000000000000000000000000000000000000000000000000815260010190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f8251614a4181601d850160208701613b8b565b91909101601d0192915050565b5f60208284031215614a5e575f80fd5b5051919050565b60ff8181168382160290811690818114614462576144626141ff565b60ff82811682821603908111156107fa576107fa6141ff565b5f60ff821660ff8103614aaf57614aaf6141ff565b60010192915050565b5f8551614ac9818460208a01613b8b565b7f3c7265637420636c6173733d27630000000000000000000000000000000000009083019081528551614b0381600e840160208a01613b8b565b7f2720783d27000000000000000000000000000000000000000000000000000000600e92909101918201528451614b41816013840160208901613b8b565b7f2720793d27000000000000000000000000000000000000000000000000000000601392909101918201528351614b7f816018840160208801613b8b565b7f272f3e000000000000000000000000000000000000000000000000000000000060189290910191820152601b019695505050505050565b5f8451614bc8818460208901613b8b565b7f2e633000000000000000000000000000000000000000000000000000000000009083019081528451614c02816003840160208901613b8b565b7f7b66696c6c3a2300000000000000000000000000000000000000000000000000600392909101918201528351614c4081600a840160208801613b8b565b7f7d00000000000000000000000000000000000000000000000000000000000000600a9290910191820152600b0195945050505050565b5f8251614c88818460208701613b8b565b7f2e6330367b66696c6c3a236536343533397d2e6330377b66696c6c3a236635379201918252507f7d2e6330387b66696c6c3a236133347d000000000000000000000000000000006020820152603001919050565b5f8451614cee818460208901613b8b565b845190830190614d02818360208901613b8b565b7f7b66696c6c3a230000000000000000000000000000000000000000000000000091019081528351614d3b816007840160208801613b8b565b7f7d000000000000000000000000000000000000000000000000000000000000006007929091019182015260080195945050505050565b5f8251614d83818460208701613b8b565b7f2e6331317b66696c6c3a233030307d2e6331327b66696c6c3a233239316432629201918252507f7d2e6331337b66696c6c3a236666633261317d2e6331347b66696c6c3a23663060208201527f623534317d2e6331357b66696c6c3a233362323032377d2e6331367b66696c6c60408201527f3a236264366136327d2e6331377b66696c6c3a236566657d2e6331387b66696c60608201527f6c3a236366376532627d2e6331397b66696c6c3a236162353133307d2e63323060808201527f7b66696c6c3a233364323933367d00000000000000000000000000000000000060a082015260ae01919050565b5f5f198203614e8157614e816141ff565b5060010190565b5f8351614e99818460208801613b8b565b835190830190614ead818360208801613b8b565b01949350505050565b5f6001600160a01b03808716835280861660208401525083604083015260806060830152614ee76080830184613bad565b9695505050505050565b5f60208284031215614f01575f80fd5b8151613bea81613bf1565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfe68613131696131316a6131316b61313168623131696231306a6231306b62313168633131696331306a6331306b63313168643131696431306a6431306b64313168653131696530396a6530396b653131686631316b663131686731316b673131696c30306a6c3030696d30306a6d3030686e3030696e30306a6e30306b6e3030686f3030696f30306a6f30306b6f303068703030697030306a7030306b70303068713030697130306a7130306b71303068723030697230306a7230306b72303068733030697330306a7330306b73303068743030697430306a7430306b74303068753030697530306a7530306b75303068763030697630306a7630306b76303068773030697730306a7730306b773030697830306a783030697930306a793030687a3131697a31316a7a31316b7a31314142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212201827bb1bfd37dda1fa9f6a7c1f3cb3515d3aee186232c92ed0d6cafe307cd8ce64736f6c63430008170033

Deployed Bytecode Sourcemap

72708:24876:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93504:205;;;;;;;;;;-1:-1:-1;93504:205:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66663:224;;;;;;;;;;-1:-1:-1;66663:224:0;;;;;:::i;:::-;;:::i;:::-;;;1633:14:1;;1626:22;1608:41;;1596:2;1581:18;66663:224:0;1468:187:1;49551:91:0;;;;;;;;;;;;;:::i;50723:158::-;;;;;;;;;;-1:-1:-1;50723:158:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1824:55:1;;;1806:74;;1794:2;1779:18;50723:158:0;1660:226:1;50542:115:0;;;;;;;;;;-1:-1:-1;50542:115:0;;;;;:::i;:::-;;:::i;:::-;;94881:137;;;;;;;;;;;;;:::i;67307:104::-;;;;;;;;;;-1:-1:-1;67386:10:0;:17;67307:104;;;2497:25:1;;;2485:2;2470:18;67307:104:0;2351:177:1;51392:588:0;;;;;;;;;;-1:-1:-1;51392:588:0;;;;;:::i;:::-;;:::i;66971:260::-;;;;;;;;;;-1:-1:-1;66971:260:0;;;;;:::i;:::-;;:::i;73665:45::-;;;;;;;;;;-1:-1:-1;73665:45:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;52051:134::-;;;;;;;;;;-1:-1:-1;52051:134:0;;;;;:::i;:::-;;:::i;67488:231::-;;;;;;;;;;-1:-1:-1;67488:231:0;;;;;:::i;:::-;;:::i;49364:120::-;;;;;;;;;;-1:-1:-1;49364:120:0;;;;;:::i;:::-;;:::i;90898:885::-;;;;;;;;;;-1:-1:-1;90898:885:0;;;;;:::i;:::-;;:::i;49089:213::-;;;;;;;;;;-1:-1:-1;49089:213:0;;;;;:::i;:::-;;:::i;73816:50::-;;;;;;;;;;-1:-1:-1;73816:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;73816:50:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6397:55:1;;;6379:74;;6484:2;6469:18;;6462:34;;;;6512:18;;;6505:34;;;;6570:2;6555:18;;6548:34;6626:14;6619:22;6613:3;6598:19;;6591:51;6366:3;6351:19;73816:50:0;6126:522:1;95531:211:0;;;;;;;;;;-1:-1:-1;95531:211:0;;;;;:::i;:::-;;:::i;95869:113::-;;;;;;;;;;-1:-1:-1;95869:113:0;;;;;:::i;:::-;;:::i;85510:2046::-;;;;;;;;;;-1:-1:-1;85510:2046:0;;;;;:::i;:::-;;:::i;73552:31::-;;;;;;;;;;-1:-1:-1;73552:31:0;;;;;;;;73608:50;;;;;;;;;;-1:-1:-1;73608:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;49711:95;;;;;;;;;;;;;:::i;81599:1632::-;;;;;;:::i;:::-;;:::i;50953:146::-;;;;;;;;;;-1:-1:-1;50953:146:0;;;;;:::i;:::-;;:::i;52256:211::-;;;;;;;;;;-1:-1:-1;52256:211:0;;;;;:::i;:::-;;:::i;83668:1318::-;;;;;;;;;;-1:-1:-1;83668:1318:0;;;;;:::i;:::-;;:::i;91938:1432::-;;;;;;;;;;-1:-1:-1;91938:1432:0;;;;;:::i;:::-;;:::i;73973:31::-;;;;;;;;;;;;;;;;94349:474;;;;;;;;;;-1:-1:-1;94349:474:0;;;;;:::i;:::-;;:::i;96574:338::-;;;;;;;;;;;;;:::i;74011:38::-;;;;;;;;;;;;;;;;51170:155;;;;;;;;;;-1:-1:-1;51170:155:0;;;;;:::i;:::-;-1:-1:-1;;;;;51282:25:0;;;51258:4;51282:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;51170:155;95097:268;;;;;;;;;;-1:-1:-1;95097:268:0;;;;;:::i;:::-;;:::i;97052:362::-;;;;;;;;;;-1:-1:-1;97052:362:0;;;;;:::i;:::-;;:::i;96231:268::-;;;;;;;;;;-1:-1:-1;96231:268:0;;;;;:::i;:::-;;:::i;93504:205::-;93625:23;93651;;;:13;:23;;;;;93625:49;;93594:13;;93625:23;93651;93625:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93625:49:0;;93504:205;-1:-1:-1;;;;;;;93504:205:0:o;66663:224::-;66765:4;66789:50;;;66804:35;66789:50;;:90;;;66843:36;66867:11;66843:23;:36::i;:::-;66782:97;66663:224;-1:-1:-1;;66663:224:0:o;49551:91::-;49596:13;49629:5;49622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49551:91;:::o;50723:158::-;50790:7;50810:22;50824:7;50810:13;:22::i;:::-;-1:-1:-1;53299:7:0;53326:24;;;:15;:24;;;;;;-1:-1:-1;;;;;53326:24:0;50852:21;53229:129;50542:115;50614:35;50623:2;50627:7;37362:10;50614:8;:35::i;:::-;50542:115;;:::o;94881:137::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;94937:9:::1;94932:79;94956:1;94952;:5;94932:79;;;94986:13;::::0;;;:10:::1;:13;::::0;;;;94979:20:::1;::::0;::::1;:::i;:::-;94959:3;;94932:79;;;;94881:137::o:0;51392:588::-;-1:-1:-1;;;;;51487:16:0;;51483:89;;51527:33;;;;;51557:1;51527:33;;;1806:74:1;1779:18;;51527:33:0;;;;;;;;51483:89;51793:21;51817:34;51825:2;51829:7;37362:10;51817:7;:34::i;:::-;51793:58;;51883:4;-1:-1:-1;;;;;51866:21:0;:13;-1:-1:-1;;;;;51866:21:0;;51862:111;;51911:50;;;;;-1:-1:-1;;;;;12063:15:1;;;51911:50:0;;;12045:34:1;12095:18;;;12088:34;;;12158:15;;12138:18;;;12131:43;11957:18;;51911:50:0;11782:398:1;51862:111:0;51472:508;51392:588;;;:::o;66971:260::-;67059:7;67092:16;67102:5;67092:9;:16::i;:::-;67083:5;:25;67079:101;;67132:36;;;;;-1:-1:-1;;;;;12377:55:1;;67132:36:0;;;12359:74:1;12449:18;;;12442:34;;;12332:18;;67132:36:0;12185:297:1;67079:101:0;-1:-1:-1;;;;;;67197:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;66971:260::o;73665:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52051:134::-;52138:39;52155:4;52161:2;52165:7;52138:39;;;;;;;;;;;;:16;:39::i;:::-;52051:134;;;:::o;67488:231::-;67554:7;67587:13;67386:10;:17;;67307:104;67587:13;67578:5;:22;67574:103;;67624:41;;;;;67655:1;67624:41;;;12359:74:1;12449:18;;;12442:34;;;12332:18;;67624:41:0;12185:297:1;67574:103:0;67694:10;67705:5;67694:17;;;;;;;;:::i;:::-;;;;;;;;;67687:24;;67488:231;;;:::o;49364:120::-;49427:7;49454:22;49468:7;49454:13;:22::i;90898:885::-;90991:13;91022:28;91068:7;91063:643;91085:1;91081;:5;;;91063:643;;;91108:20;91131:82;91165:33;91182:5;91165:33;;;91192:5;91189:1;91196;91192:5;:::i;:::-;91165:33;;:16;:33::i;:::-;91131:15;:82::i;:::-;91108:105;;91311:14;91388:10;:13;91399:1;91388:13;;;;;;;;;;;;;91402:14;91388:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;91486:10;:13;91497:1;91486:13;;;;;;;;;;;;;91500:14;91486:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;91272:299;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91230:356;;91607:1;:6;;91612:1;91607:6;91603:91;;91673:14;91656:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;91632:62;;91603:91;-1:-1:-1;91088:3:0;;91063:643;;;;91754:14;91732:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;91718:57;;;90898:885;;;:::o;49089:213::-;49152:7;-1:-1:-1;;;;;49176:19:0;;49172:89;;49219:30;;;;;49246:1;49219:30;;;1806:74:1;1779:18;;49219:30:0;1660:226:1;49172:89:0;-1:-1:-1;;;;;;49278:16:0;;;;;:9;:16;;;;;;;49089:213::o;95531:211::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;95633:9:::1;;95617:13;:25;95609:89;;;::::0;-1:-1:-1;;;95609:89:0;;16498:2:1;95609:89:0::1;::::0;::::1;16480:21:1::0;16537:2;16517:18;;;16510:30;16576:34;16556:18;;;16549:62;16647:21;16627:18;;;16620:49;16686:19;;95609:89:0::1;16296:415:1::0;95609:89:0::1;95709:9;:25:::0;95531:211::o;95869:113::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;95946:11:::1;:28:::0;;-1:-1:-1;;95946:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;95869:113::o;85510:2046::-;85571:13;85597:23;85631:32;;:::i;:::-;85674:15;85692:20;85706:5;85692:13;:20::i;:::-;85674:38;-1:-1:-1;85779:1:0;85764:559;85786:1;85782;:5;;;85764:559;;;85810:20;85833:82;85867:33;85884:5;85867:33;;;85894:5;85891:1;85898;85894:5;:::i;85833:82::-;85810:105;;85935:8;85930:382;85953:10;:13;85964:1;85953:13;;;;;;;;;;;;;85967:14;85953:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:40;;;85949:1;:44;;;85930:382;;;86019:23;86045:154;86084:10;:13;86095:1;86084:13;;;;;;;;;;;;;86098:14;86084:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;86045:154;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86143:1;86147;86143:5;;;;:::i;:::-;86045:154;;86171:5;:1;86175;86171:5;:::i;:::-;:9;;86179:1;86171:9;:::i;:::-;86045:154;;:16;:154::i;:::-;86019:180;;86230:66;86243:9;86254:12;86268:9;86279:10;86291:1;86294;86230:12;:66::i;:::-;86218:78;;86000:312;85995:3;;;;;:::i;:::-;;;;85930:382;;;-1:-1:-1;;85789:3:0;;85764:559;;;;86372:29;:338;;;;;;;;;;;;;;;;;;;86726:8;86721:255;86776:1;86750:15;86744:29;:33;;;;:::i;:::-;86740:1;:37;;;86721:255;;;86799:19;86821:53;86838:15;86855:5;:1;86859;86855:5;:::i;:::-;86821:53;;86863:5;:1;86867;86863:5;:::i;:::-;86862:11;;86872:1;86862:11;:::i;86821:53::-;86799:75;;86901:63;86914:5;86921:12;86935:9;86946:10;86958:1;86962;86901:12;:63::i;:::-;86889:75;;86784:192;86779:3;;;;;:::i;:::-;;;;86721:255;;;;87057:25;87085:26;87105:5;87085:19;:26::i;:::-;87057:54;;87323:9;87447:11;87157:351;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;87157:351:0;;;;;;;;;;85510:2046;-1:-1:-1;;;;;;;85510:2046:0:o;49711:95::-;49758:13;49791:7;49784:14;;;;;:::i;81599:1632::-;6044:21;:19;:21::i;:::-;81696:11:::1;::::0;::::1;;::::0;:35:::1;;-1:-1:-1::0;81725:6:0::1;::::0;-1:-1:-1;;;;;81725:6:0::1;81711:10;:20;81696:35;81688:65;;;::::0;-1:-1:-1;;;81688:65:0;;19299:2:1;81688:65:0::1;::::0;::::1;19281:21:1::0;19338:2;19318:18;;;19311:30;19377:19;19357:18;;;19350:47;19414:18;;81688:65:0::1;19097:341:1::0;81688:65:0::1;81815:18;::::0;81788:10:::1;81772:27;::::0;;;:15:::1;:27;::::0;;;;;:39:::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;:61;;:85;;;-1:-1:-1::0;81851:6:0::1;::::0;-1:-1:-1;;;;;81851:6:0::1;81837:10;:20;81772:85;81764:123;;;::::0;-1:-1:-1;;;81764:123:0;;19775:2:1;81764:123:0::1;::::0;::::1;19757:21:1::0;19814:2;19794:18;;;19787:30;19853:27;19833:18;;;19826:55;19898:18;;81764:123:0::1;19573:349:1::0;81764:123:0::1;81918:1;81906:9;:13;;;:57;;;;;81937:1;81924:9;:14;;;;:38;;;-1:-1:-1::0;81956:6:0::1;::::0;-1:-1:-1;;;;;81956:6:0::1;81942:10;:20;81924:38;81898:105;;;::::0;-1:-1:-1;;;81898:105:0;;20129:2:1;81898:105:0::1;::::0;::::1;20111:21:1::0;20168:2;20148:18;;;20141:30;20207:34;20187:18;;;20180:62;20278:5;20258:18;;;20251:33;20301:19;;81898:105:0::1;19927:399:1::0;81898:105:0::1;82047:22;::::0;;::::1;82016:28;82047:22:::0;;;:12:::1;:22;::::0;;;;82088:18:::1;::::0;::::1;::::0;82047:22;;82088:18:::1;82080:49;;;::::0;-1:-1:-1;;;82080:49:0;;20533:2:1;82080:49:0::1;::::0;::::1;20515:21:1::0;20572:2;20552:18;;;20545:30;20611:20;20591:18;;;20584:48;20649:18;;82080:49:0::1;20331:342:1::0;82080:49:0::1;82142:24;82189:9;82169:29;;:7;:17;;;:29;;;;:::i;:::-;82142:56;;82209:20;82232:13;67386:10:::0;:17;;67307:104;82232:13:::1;82292:9;::::0;82209:36;;-1:-1:-1;82264:24:0::1;;::::0;::::1;82209:36:::0;82264:24:::1;:::i;:::-;:37;;82256:68;;;::::0;-1:-1:-1;;;82256:68:0;;21053:2:1;82256:68:0::1;::::0;::::1;21035:21:1::0;21092:2;21072:18;;;21065:30;21131:20;21111:18;;;21104:48;21169:18;;82256:68:0::1;20851:342:1::0;82256:68:0::1;82376:7;:17;;;82363:9;82343:29;;:7;:17;;;:29;;;;:::i;:::-;:50;;82335:91;;;::::0;-1:-1:-1;;;82335:91:0;;21400:2:1;82335:91:0::1;::::0;::::1;21382:21:1::0;21439:2;21419:18;;;21412:30;21478;21458:18;;;21451:58;21526:18;;82335:91:0::1;21198:352:1::0;82335:91:0::1;82443:8;:13;;82455:1;82443:13:::0;82439:388:::1;;82494:16;82481:9;:29;82473:61;;;::::0;-1:-1:-1;;;82473:61:0;;21757:2:1;82473:61:0::1;::::0;::::1;21739:21:1::0;21796:2;21776:18;;;21769:30;21835:21;21815:18;;;21808:49;21874:18;;82473:61:0::1;21555:343:1::0;82473:61:0::1;82439:388;;;82575:9;:14:::0;82567:62:::1;;;::::0;-1:-1:-1;;;82567:62:0;;22105:2:1;82567:62:0::1;::::0;::::1;22087:21:1::0;22144:2;22124:18;;;22117:30;22183:34;22163:18;;;22156:62;22254:5;22234:18;;;22227:33;22277:19;;82567:62:0::1;21903:399:1::0;82567:62:0::1;82674:20:::0;;82718:71:::1;::::0;;;;82745:10:::1;82718:71;::::0;::::1;22570:34:1::0;82765:4:0::1;22620:18:1::0;;;22613:43;22672:18;;;22665:34;;;-1:-1:-1;;;;;82674:20:0;;::::1;::::0;;;82718:26:::1;::::0;22482:18:1;;82718:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;82710:105;;;::::0;-1:-1:-1;;;82710:105:0;;23162:2:1;82710:105:0::1;::::0;::::1;23144:21:1::0;23201:2;23181:18;;;23174:30;23240:23;23220:18;;;23213:51;23281:18;;82710:105:0::1;22960:345:1::0;82710:105:0::1;82552:275;82439:388;82844:7;82839:291;82861:9;82857:13;;:1;:13;;;82839:291;;;82892:18;82913:16;;::::0;::::1;:12:::0;:16:::1;:::i;:::-;82892:37;;82972:41;82977:10;82989;83001:1;83004:8;82972:4;:41::i;:::-;82944:25;::::0;;;:13:::1;:25;::::0;;;;;:69:::1;::::0;:25;:69:::1;:::i;:::-;;83070:4;83028:12;83041:13;:25;83055:10;83041:25;;;;;;;;;;;83028:39;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:46;;;::::1;;-1:-1:-1::0;;83028:46:0;;::::1;::::0;;;::::1;::::0;;83089:29:::1;83095:10;83107::::0;83089:5:::1;:29::i;:::-;-1:-1:-1::0;82872:3:0::1;;82839:291;;;;83163:9;83142:30;;:7;:17;;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;83199:10:0::1;83183:27;::::0;;;:15:::1;:27;::::0;;;;:40;;::::1;::::0;::::1;::::0;:27;:40:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;5482:1:0;6608:7;:22;-1:-1:-1;6088:20:0;;-1:-1:-1;;6425:213:0;50953:146;51039:52;37362:10;51072:8;51082;51039:18;:52::i;52256:211::-;52370:31;52383:4;52389:2;52393:7;52370:12;:31::i;:::-;52412:47;52435:4;52441:2;52445:7;52454:4;52412:22;:47::i;83668:1318::-;83736:13;83795:23;:357;;;;;;;;83836:50;83852:33;83869:9;83880:1;83883;83852:16;:33::i;83836:50::-;83795:357;;;;;;83914:50;83930:33;83947:9;83958:1;83961;83930:16;:33::i;83914:50::-;83795:357;;;;;;83994:50;84010:33;84027:9;84038:1;84041;84010:16;:33::i;83994:50::-;83795:357;;;;;;84074:50;84090:33;84107:9;84118:1;84121;84090:16;:33::i;84074:50::-;83795:357;;;;84249:27;;83795:357;;-1:-1:-1;84211:17:0;;84249:27;;84266:9;;84249:27;;;:::i;:::-;;;;-1:-1:-1;;84249:27:0;;;;;;;;;84239:38;;84249:27;84239:38;;;;84394:1;84231:47;84383:13;;;:10;:13;;;84239:38;;-1:-1:-1;84383:13:0;;84397:7;;:10;;;;84383:25;;;;;;;;;;:::i;:::-;;;;;;;;;;;:35;;84360:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;84463:1:0;84429:20;84452:13;;;:10;:13;;84360:58;;-1:-1:-1;84452:13:0;;-1:-1:-1;84466:7:0;;-1:-1:-1;84463:1:0;-1:-1:-1;84466:10:0;;;;84452:25;;;;;;;;;;:::i;:::-;;;;;;;;;;;:35;;84429:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84498:24;84525:11;:23;84537:7;84545:1;84537:10;;;;;;;:::i;:::-;;;;;84525:23;;;;;;;;;;;;;;;84561:1;84549:9;:13;;;;:::i;:::-;84525:38;;;;;;;;:::i;:::-;;;;;;;;84498:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;84640:1:0;84605:21;84629:13;;;:10;:13;;84498:65;;-1:-1:-1;84629:13:0;;-1:-1:-1;84643:7:0;;-1:-1:-1;84640:1:0;-1:-1:-1;84643:10:0;;;;84629:25;;;;;;;;;;:::i;:::-;;;;;;;;;;;:35;;84605:59;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84675:17;84695:51;84714:31;84731:7;84740:1;84743;84714:16;:31::i;:::-;84695:18;:51::i;:::-;84784:1;84757:13;84773;;;:10;:13;;84675:71;;-1:-1:-1;84773:13:0;;84787:7;;:10;;;;84773:25;;;;;;;;;;:::i;:::-;;;;;;;;:36;:25;;;;;:36;;;-1:-1:-1;84841:54:0;84883:9;84773:36;84891:1;84883:9;:::i;:::-;84870:23;;:9;:23;:::i;:::-;84857:37;;:9;:37;:::i;:::-;84841:15;:54::i;:::-;84820:75;;84939:6;84947:10;84959:6;84972:4;84922:55;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84908:70;;;;;;;;;;;83668:1318;;;:::o;91938:1432::-;92040:13;92113:1;92084:17;92092:8;92084:7;:17::i;:::-;-1:-1:-1;;;;;92084:31:0;;92076:91;;;;-1:-1:-1;;;92076:91:0;;27540:2:1;92076:91:0;;;27522:21:1;27579:2;27559:18;;;27552:30;27618:34;27598:18;;;27591:62;27689:17;27669:18;;;27662:45;27724:19;;92076:91:0;27338:411:1;92076:91:0;92180:23;92206:24;92221:8;92206:14;:24::i;:::-;92180:50;;92241:18;92262:23;92275:9;92262:12;:23::i;:::-;92241:44;;92436:892;92618:4;92677:25;92693:8;92677:15;:25::i;:::-;92787:4;92928:122;92990:20;93000:9;92990;:20::i;:::-;92928:13;:122::i;:::-;93145:25;93160:9;93145:14;:25::i;:::-;92553:694;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92436:13;:892::i;:::-;92343:1004;;;;;;;;:::i;:::-;;;;;;;;;;;;;92298:1064;;;;91938:1432;;;:::o;94349:474::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;94475:9:::1;94470:327;94494:6;:13;94490:1;:17;94470:327;;;94529:10;:27;94540:15;94529:27;;;;;;;;;;;94580:190;;;;;;;;94608:6;94615:1;94608:9;;;;;;;;:::i;:::-;;;;;;;:19;;;94580:190;;;;94650:6;94657:1;94650:9;;;;;;;;:::i;:::-;;;;;;;:19;;;94580:190;;;;94692:6;94699:1;94692:9;;;;;;;;:::i;:::-;;;;;;;:16;;;94580:190;;;;94731:6;94738:1;94731:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;:20:::1;;::::0;94580:190;;;94529:256;;::::1;::::0;::::1;::::0;;-1:-1:-1;94529:256:0;;;;;;;;;::::1;;;::::0;;;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;94529:256:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;94529:256:0::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;94529:256:0::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;94509:3:::1;;94470:327;;96574:338:::0;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;96643:21:::1;96625:15;96714:3;96693:17;74091:2;96643:21:::0;96693:17:::1;:::i;:::-;96692:25;;;;:::i;:::-;96675:42:::0;-1:-1:-1;96728:14:0::1;96745:16;96675:42:::0;96745:7;:16:::1;:::i;:::-;96774:8;::::0;:25:::1;::::0;96728:33;;-1:-1:-1;;;;;;96774:8:0::1;::::0;:25;::::1;;;::::0;96792:6;;96774:8:::1;:25:::0;:8;:25;96792:6;96774:8;:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;96872:32:0::1;::::0;74983:42:::1;::::0;;;96872:32;::::1;;;::::0;96897:6;;96810:31:::1;96872:32:::0;96810:31;96872:32;96897:6;74983:42;96872:32;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;96614:298;;;;96574:338::o:0;95097:268::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;95264:93:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;95264:93:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;95316:17:::1;::::0;;;::::1;-1:-1:-1::0;95316:17:0;;;:12:::1;:17:::0;;;;;;:27:::1;::::0;::::1;::::0;;95264:93;;;;;;;::::1;;::::0;;;;;;95244:17;;;;;;;;:113;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;95244:113:0;::::1;::::0;;;-1:-1:-1;95244:113:0;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;95244:113:0::1;::::0;::::1;;::::0;;;::::1;::::0;;95097:268::o;97052:362::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;97191:30:::1;::::0;;;;97215:4:::1;97191:30;::::0;::::1;1806:74:1::0;97148:13:0;;97126:12:::1;::::0;-1:-1:-1;;;;;97191:15:0;::::1;::::0;::::1;::::0;1779:18:1;;97191:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;97173:48:::0;-1:-1:-1;97232:14:0::1;97271:3;97250:17;74091:2;97173:48:::0;97250:17:::1;:::i;:::-;97249:25;;;;:::i;:::-;97232:42:::0;-1:-1:-1;97285:14:0::1;97302:16;97232:42:::0;97302:7;:16:::1;:::i;:::-;97346:8;::::0;97331:32:::1;::::0;;;;-1:-1:-1;;;;;97346:8:0;;::::1;97331:32;::::0;::::1;12359:74:1::0;12449:18;;;12442:34;;;97285:33:0;;-1:-1:-1;97331:14:0;::::1;::::0;::::1;::::0;12332:18:1;;97331:32:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;97374:32:0::1;::::0;;;;74983:42:::1;97374:32;::::0;::::1;12359:74:1::0;12449:18;;;12442:34;;;-1:-1:-1;;;;;97374:14:0;::::1;::::0;::::1;::::0;12332:18:1;;97374:32:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;97115:299;;;;97052:362:::0;:::o;96231:268::-;97540:6;;-1:-1:-1;;;;;97540:6:0;97550:10;97540:20;97532:29;;;;;;96343:18:::1;:40:::0;;;-1:-1:-1;;;;;96399:23:0;::::1;::::0;;::::1;::::0;:46:::1;;-1:-1:-1::0;96439:6:0::1;::::0;-1:-1:-1;;;;;96426:19:0;;::::1;96439:6:::0;::::1;96426:19;;96399:46;96396:96;;;96462:6;:18:::0;;-1:-1:-1;;;;;96462:18:0;::::1;::::0;;;::::1;;::::0;;96231:268;;:::o;48720:305::-;48822:4;48859:40;;;48874:25;48859:40;;:105;;-1:-1:-1;48916:48:0;;;48931:33;48916:48;48859:105;:158;;;-1:-1:-1;40495:25:0;40480:40;;;;48981:36;40380:148;63698:247;63761:7;53084:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53084:16:0;;63825:90;;63872:31;;;;;;;;2497:25:1;;;2470:18;;63872:31:0;2351:177:1;61930:122:0;62011:33;62020:2;62024:7;62033:4;62039;62011:8;:33::i;67780:640::-;67875:7;67895:21;67919:32;67933:2;67937:7;67946:4;67919:13;:32::i;:::-;67895:56;-1:-1:-1;;;;;;67968:27:0;;67964:214;;68012:40;68044:7;69244:10;:17;;69217:24;;;;:15;:24;;;;;:44;;;69272:24;;;;;;;;;;;;69140:164;68012:40;67964:214;;;68091:2;-1:-1:-1;;;;;68074:19:0;:13;-1:-1:-1;;;;;68074:19:0;;68070:108;;68110:56;68143:13;68158:7;68110:32;:56::i;:::-;-1:-1:-1;;;;;68192:16:0;;68188:192;;68225:45;68262:7;68225:36;:45::i;:::-;68188:192;;;68309:2;-1:-1:-1;;;;;68292:19:0;:13;-1:-1:-1;;;;;68292:19:0;;68288:92;;68328:40;68356:2;68360:7;68328:27;:40::i;:::-;68399:13;67780:640;-1:-1:-1;;;;67780:640:0:o;3273:419::-;3406:13;3462:3;3432:21;3509;3520:10;3509:8;:21;:::i;:::-;3499:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3499:32:0;-1:-1:-1;3477:54:0;-1:-1:-1;3559:10:0;3542:111;3575:8;3571:1;:12;3542:111;;;3630:8;3639:1;3630:11;;;;;;;;:::i;:::-;;;;;;;3605:6;3612:14;3616:10;3612:1;:14;:::i;:::-;3605:22;;;;;;;;:::i;:::-;;;;:36;;;;;;;;;;-1:-1:-1;3585:3:0;;3542:111;;;-1:-1:-1;3677:6:0;3273:419;-1:-1:-1;;;;;3273:419:0:o;2363:503::-;2449:16;2512:2;2449:16;;2551:286;2573:7;:14;2569:1;:18;;;2551:286;;;2660:2;2644:7;2652:1;2644:10;;;;;;;;;;:::i;:::-;;;;;;;2632:30;;;;2631:85;;;2713:2;2697:7;2705:1;2697:10;;;;;;;;;;:::i;:::-;;;;;;;2685:30;;2631:85;2609:217;;;2751:10;2759:2;2751:10;;:::i;:::-;;;2808:2;2794:7;2802:1;2794:10;;;;;;;;;;:::i;:::-;;;;;2788:22;;;2794:10;;2788:22;:::i;:::-;2780:30;;;;:::i;:::-;;;2609:217;2589:3;;;;:::i;:::-;;;;2551:286;;;-1:-1:-1;2854:4:0;2363:503;-1:-1:-1;;;2363:503:0:o;87564:198::-;87631:4;87648:18;87704:5;87687:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;87687:23:0;;;;;;;;;87677:34;;87687:23;87677:34;;;;;-1:-1:-1;87748:1:0;87730:15;87743:2;87677:34;87730:15;:::i;:::-;:19;;;;:::i;:::-;:24;;87564:198;-1:-1:-1;;;87564:198:0:o;87860:1000::-;88043:13;88069:15;88087:73;88116:33;88133:9;88144:1;88147;88116:16;:33::i;:::-;88087:14;:73::i;:::-;88069:91;;88171:7;88181:73;88210:33;88227:9;88238:1;88241;88210:16;:33::i;88181:73::-;88171:83;;88267:7;88277:10;:41;;88309:9;88277:41;;;88291:14;88296:9;88291:2;:14;:::i;:::-;88267:51;;88336:12;88349:1;88336:15;;;;;;;;;:::i;:::-;;;;;88352:1;88336:18;;;;;;;;;:::i;:::-;;;;;88331:495;;88447:9;88518:33;88535:9;88546:1;88549;88518:16;:33::i;:::-;88604:28;88605:15;88609:11;88605:1;:15;:::i;:::-;88604:26;;;:28::i;:::-;88685:27;88686:14;88690:10;88686:1;:14;:::i;88685:27::-;88408:351;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88371:403;;88810:4;88789:12;88802:1;88789:15;;;;;;;;;:::i;:::-;;;;;88805:1;88789:18;;;;;;;;;:::i;:::-;:25;;;:18;;;;;:25;88331:495;-1:-1:-1;88843:9:0;;87860:1000;-1:-1:-1;;;;;;;;87860:1000:0:o;88938:1895::-;89037:30;;;;;;;;;;:25;:30;;;89168:13;;;:10;:13;;;89011;;89168;89182:46;89198:29;89215:5;89037:25;89225:1;89198:16;:29::i;89182:46::-;89168:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;:68;;89135:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;89291:1:0;89247:30;89280:13;;;:10;:13;;89135:101;;-1:-1:-1;89280:13:0;;-1:-1:-1;89294:46:0;;-1:-1:-1;89310:29:0;;-1:-1:-1;89327:5:0;;89337:1;89310:16;:29::i;89294:46::-;89280:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;:68;;89247:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;89403:1:0;89359:30;89392:13;;;:10;:13;;89247:101;;-1:-1:-1;89392:13:0;;-1:-1:-1;89406:46:0;;-1:-1:-1;89422:29:0;;-1:-1:-1;89439:5:0;;89449:1;89422:16;:29::i;89406:46::-;89392:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;:68;;89359:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89498:6;89493:256;89514:1;89510;:5;89493:256;;;89537:23;89563:54;89580:16;89598:5;:1;89602;89598:5;:::i;:::-;89606;:1;89610;89606:5;:::i;:::-;89605:11;;89615:1;89605:11;:::i;:::-;89563:16;:54::i;:::-;89537:80;;89670:11;89690:18;89706:1;89690:15;:18::i;:::-;89721:9;89653:83;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;89653:83:0;;;;;;;;;;-1:-1:-1;;89517:3:0;;89493:256;;;;89786:6;89781:260;89802:1;89798;:5;89781:260;;;89825:23;89851:54;89868:16;89886:5;:1;89890;89886:5;:::i;89851:54::-;89825:80;-1:-1:-1;89958:11:0;89978:22;89994:5;:1;89998;89994:5;:::i;89978:22::-;90013:9;89941:87;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;89941:87:0;;;;;;;;;;-1:-1:-1;;89805:3:0;;89781:260;;;;90111:11;90094:81;;;;;;;;:::i;:::-;;;;;;;;;;;;;90073:103;;90214:6;90209:305;90230:1;90226;:5;90209:305;;;90253:23;90279:54;90296:16;90314:5;:1;90318;90314:5;:::i;90279:54::-;90253:80;-1:-1:-1;90348:23:0;90374:6;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90348:50;;90451:11;90464:9;90486;90434:67;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;90434:67:0;;;;;;;-1:-1:-1;;;90233:3:0;;90209:305;;;;90603:11;90586:207;;;;;;;;:::i;:::-;;;;-1:-1:-1;;90586:207:0;;;;;;;;;;88938:1895;-1:-1:-1;;;;;;88938:1895:0:o;6124:293::-;5526:1;6258:7;;:19;6250:63;;;;-1:-1:-1;;;6250:63:0;;36945:2:1;6250:63:0;;;36927:21:1;36984:2;36964:18;;;36957:30;37023:33;37003:18;;;36996:61;37074:18;;6250:63:0;36743:355:1;6250:63:0;5526:1;6391:7;:18;6124:293::o;80036:1179::-;80163:13;80202:2;80197;:7;80189:16;;;;;;80368:25;80396;80412:8;80396:25;;:15;:25::i;:::-;80368:53;;80439:7;80434:662;80456:1;80452;:5;;;80434:662;;;80479:10;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;;80856:10:0;;80617:276;;;80664:15;80617:276;;;37572:19:1;80710:16:0;37607:12:1;;;37600:28;;;;37644:12;;;;37637:28;;;37699:15;;;37716:66;37695:88;37681:12;;;37674:110;37800:13;;;37793:29;;;37838:13;;;37831:29;;;;-1:-1:-1;;80938:5:0;;37876:13:1;;80617:276:0;;;;;;;;;;;;80581:335;;;;;;80551:384;;:392;;;;:::i;:::-;80506:452;;81031:11;81044:24;81054:10;81044:24;;81066:1;81044:9;:24::i;:::-;81014:55;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;81014:55:0;;;;;;;;;;-1:-1:-1;;80459:3:0;;80434:662;;;;81112:12;81125:11;81112:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;81108:68;;;81146:30;81151:2;81155;81159:6;:2;81164:1;81159:6;:::i;:::-;81167:8;81146:4;:30::i;:::-;81139:37;;;;;81108:68;81196:11;80036:1179;-1:-1:-1;;;;;80036:1179:0:o;57351:335::-;-1:-1:-1;;;;;57419:16:0;;57415:89;;57459:33;;;;;57489:1;57459:33;;;1806:74:1;1779:18;;57459:33:0;1660:226:1;57415:89:0;57514:21;57538:32;57546:2;57550:7;57567:1;57538:7;:32::i;:::-;57514:56;-1:-1:-1;;;;;;57585:27:0;;;57581:98;;57636:31;;;;;57664:1;57636:31;;;1806:74:1;1779:18;;57636:31:0;1660:226:1;63137:318:0;-1:-1:-1;;;;;63245:22:0;;63241:93;;63291:31;;;;;-1:-1:-1;;;;;1824:55:1;;63291:31:0;;;1806:74:1;1779:18;;63291:31:0;1660:226:1;63241:93:0;-1:-1:-1;;;;;63344:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;63344:46:0;;;;;;;;;;63406:41;;1608::1;;;63406::0;;1581:18:1;63406:41:0;;;;;;;63137:318;;;:::o;64495:799::-;-1:-1:-1;;;;;64612:14:0;;;:18;64608:679;;64651:71;;;;;-1:-1:-1;;;;;64651:36:0;;;;;:71;;37362:10;;64702:4;;64708:7;;64717:4;;64651:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64651:71:0;;;;;;;;-1:-1:-1;;64651:71:0;;;;;;;;;;;;:::i;:::-;;;64647:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64965:6;:13;64982:1;64965:18;64961:300;;65015:25;;;;;-1:-1:-1;;;;;1824:55:1;;65015:25:0;;;1806:74:1;1779:18;;65015:25:0;1660:226:1;64961:300:0;65211:6;65205:13;65196:6;65192:2;65188:15;65181:38;64647:629;64770:51;;;64780:41;64770:51;64766:132;;64853:25;;;;;-1:-1:-1;;;;;1824:55:1;;64853:25:0;;;1806:74:1;1779:18;;64853:25:0;1660:226:1;2874:391:0;2936:7;2981:2;2936:7;;3014:226;3038:7;:14;3034:1;:18;3014:226;;;3074:17;:7;3082:1;3074:10;;;;;;;;:::i;:::-;;;;;;;:17;;;;:38;;;3095:17;:7;3103:1;3095:10;;;;;;;;:::i;:::-;;;;;;;:17;;3074:38;3070:163;;;3129:10;3137:2;3129:10;;:::i;:::-;;;3190:2;3176:7;3184:1;3176:10;;;;;;;;:::i;:::-;;;;;3170:22;;;3176:10;;3170:22;:::i;:::-;3154:39;;3162:31;;3154:39;;:::i;:::-;;;3070:163;3054:3;;3014:226;;1823:532;1879:13;1909:5;1918:1;1909:10;1905:53;;-1:-1:-1;;1936:10:0;;;;;;;;;;;;;;;;;;1823:532::o;1905:53::-;1983:5;1968:12;2024:78;2031:9;;2024:78;;2057:8;;;;:::i;:::-;;-1:-1:-1;2080:10:0;;-1:-1:-1;2088:2:0;2080:10;;:::i;:::-;;;2024:78;;;2112:19;2144:6;2134:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2134:17:0;;2112:39;;2162:154;2169:10;;2162:154;;2196:11;2206:1;2196:11;;:::i;:::-;;-1:-1:-1;2265:10:0;2273:2;2265:5;:10;:::i;:::-;2252:24;;:2;:24;:::i;:::-;2239:39;;2222:6;2229;2222:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2293:11:0;2302:2;2293:11;;:::i;:::-;;;2162:154;;172:1545;230:13;260:4;:11;275:1;260:16;256:31;;-1:-1:-1;;278:9:0;;;;;;;;;-1:-1:-1;278:9:0;;;172:1545::o;256:31::-;300:19;322:6;;;;;;;;;;;;;;;;;300:28;;341:20;400:1;381:4;:11;395:1;381:15;;;;:::i;:::-;380:21;;;;:::i;:::-;375:27;;:1;:27;:::i;:::-;364:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;364:39:0;;341:62;;511:1;504:5;500:13;558:2;550:6;546:15;615:4;667;661:11;655:4;651:22;577:830;701:6;692:7;689:19;577:830;;;771:1;762:7;758:15;747:26;;810:7;804:14;897:4;889:5;885:2;881:14;877:25;867:8;863:40;857:47;846:9;838:67;951:1;940:9;936:17;923:30;;1043:4;1035:5;1031:2;1027:14;1023:25;1013:8;1009:40;1003:47;992:9;984:67;1097:1;1086:9;1082:17;1069:30;;1188:4;1180:5;1177:1;1173:13;1169:24;1159:8;1155:39;1149:46;1138:9;1130:66;1242:1;1231:9;1227:17;1214:30;;1325:4;1318:5;1314:16;1304:8;1300:31;1294:38;1283:9;1275:58;;1379:1;1368:9;1364:17;1351:30;;577:830;;;581:107;;1447:1;1440:4;1434:11;1430:19;1468:1;1463:123;;;;1605:1;1600:73;;;;1423:250;;1463:123;1516:4;1512:1;1501:9;1497:17;1489:32;1566:4;1562:1;1551:9;1547:17;1539:32;1463:123;;1600:73;1653:4;1649:1;1638:9;1634:17;1626:32;1423:250;-1:-1:-1;1703:6:0;;172:1545;-1:-1:-1;;;;;172:1545:0:o;62240:678::-;62402:9;:31;;;-1:-1:-1;;;;;;62415:18:0;;;;62402:31;62398:471;;;62450:13;62466:22;62480:7;62466:13;:22::i;:::-;62450:38;-1:-1:-1;;;;;;62619:18:0;;;;;;:35;;;62650:4;-1:-1:-1;;;;;62641:13:0;:5;-1:-1:-1;;;;;62641:13:0;;;62619:35;:69;;;;-1:-1:-1;;;;;;51282:25:0;;;51258:4;51282:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;62658:30;62619:69;62615:144;;;62716:27;;;;;-1:-1:-1;;;;;1824:55:1;;62716:27:0;;;1806:74:1;1779:18;;62716:27:0;1660:226:1;62615:144:0;62779:9;62775:83;;;62834:7;62830:2;-1:-1:-1;;;;;62814:28:0;62823:5;-1:-1:-1;;;;;62814:28:0;;;;;;;;;;;62775:83;62435:434;62398:471;-1:-1:-1;;62881:24:0;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;62881:29:0;;;;;;;;;;62240:678::o;56191:824::-;56277:7;53084:16;;;:7;:16;;;;;;-1:-1:-1;;;;;53084:16:0;;;;56392:18;;;56388:88;;56427:37;56444:4;56450;56456:7;56427:16;:37::i;:::-;-1:-1:-1;;;;;56523:18:0;;;56519:263;;56641:48;56658:1;56662:7;56679:1;56683:5;56641:8;:48::i;:::-;-1:-1:-1;;;;;56735:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;56735:20:0;;;56519:263;-1:-1:-1;;;;;56798:16:0;;;56794:111;;-1:-1:-1;;;;;56860:13:0;;;;;;:9;:13;;;;;:18;;56877:1;56860:18;;;56794:111;56917:16;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;56917:21:0;;;;;;;;;56956:27;;56917:16;;56956:27;;;;;;;57003:4;56191:824;-1:-1:-1;;;;56191:824:0:o;69931:977::-;70197:22;70222:15;70232:4;70222:9;:15::i;:::-;70248:18;70269:26;;;:17;:26;;;;;;70197:40;;-1:-1:-1;70402:28:0;;;70398:328;;-1:-1:-1;;;;;70469:18:0;;70447:19;70469:18;;;:12;:18;;;;;;;;:34;;;;;;;;;70520:30;;;;;;:44;;;70637:30;;:17;:30;;;;;:43;;;70398:328;-1:-1:-1;70822:26:0;;;;:17;:26;;;;;;;;70815:33;;;-1:-1:-1;;;;;70866:18:0;;;;;:12;:18;;;;;:34;;;;;;;70859:41;69931:977::o;71203:1079::-;71481:10;:17;71456:22;;71481:21;;71501:1;;71481:21;:::i;:::-;71513:18;71534:24;;;:15;:24;;;;;;71907:10;:26;;71456:46;;-1:-1:-1;71534:24:0;;71456:46;;71907:26;;;;;;:::i;:::-;;;;;;;;;71885:48;;71971:11;71946:10;71957;71946:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;72051:28;;;:15;:28;;;;;;;:41;;;72223:24;;;;;72216:31;72258:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;71274:1008;;;71203:1079;:::o;68721:218::-;68806:14;68839:1;68823:13;68833:2;68823:9;:13::i;:::-;:17;;;;:::i;:::-;-1:-1:-1;;;;;68851:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;68896:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;68721:218:0:o;85078:374::-;85180:5;;85203:223;85225:7;:14;85221:18;;;;85203:223;;;85373:12;85355:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;85345:43;;;;;;85311:7;85319:1;85311:10;;;;;;;;;;:::i;:::-;;;;;;;;85293:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;85283:41;;;;;;:105;85261:153;;85412:1;85078:374;-1:-1:-1;;85078:374:0:o;85261:153::-;85241:3;;;;:::i;:::-;;;;85203:223;;79176:572;79284:13;79315:24;79359:7;79354:366;79376:5;79382:11;79376:18;;;;;;;;;:::i;:::-;;:25;79372:29;;;;79354:366;;;79423:21;79447:5;79453:11;79447:18;;;;;;;;;:::i;:::-;;79466:1;79447:21;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;79423:45;;79519:17;79505:31;;:10;:31;;:99;;;;-1:-1:-1;79570:34:0;79590:14;79570:17;:34;:::i;:::-;79557:47;;:10;:47;79505:99;79483:156;;;79627:12;:1;:10;;;:12::i;:::-;79620:19;;;;;;;79483:156;79674:34;79694:14;79674:17;:34;:::i;:::-;79654:54;;79408:312;79403:3;;;;;:::i;:::-;;;;79354:366;;54398:376;54511:38;54525:5;54532:7;54541;54511:13;:38::i;:::-;54506:261;;-1:-1:-1;;;;;54570:19:0;;54566:190;;54617:31;;;;;;;;2497:25:1;;;2470:18;;54617:31:0;2351:177:1;54566:190:0;54696:44;;;;;-1:-1:-1;;;;;12377:55:1;;54696:44:0;;;12359:74:1;12449:18;;;12442:34;;;12332:18;;54696:44:0;12185:297:1;53678:276:0;53781:4;-1:-1:-1;;;;;53818:21:0;;;;;;:128;;;53866:7;-1:-1:-1;;;;;53857:16:0;:5;-1:-1:-1;;;;;53857:16:0;;:52;;;-1:-1:-1;;;;;;51282:25:0;;;51258:4;51282:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;53877:32;53857:88;;;-1:-1:-1;;53299:7:0;53326:24;;;:15;:24;;;;;;-1:-1:-1;;;;;53326:24:0;;;53913:32;;;;53798:148;-1:-1:-1;53678:276:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:250::-;284:1;294:113;308:6;305:1;302:13;294:113;;;384:11;;;378:18;365:11;;;358:39;330:2;323:10;294:113;;;-1:-1:-1;;441:1:1;423:16;;416:27;199:250::o;454:341::-;507:3;545:5;539:12;572:6;567:3;560:19;588:76;657:6;650:4;645:3;641:14;634:4;627:5;623:16;588:76;:::i;:::-;709:2;697:15;-1:-1:-1;;693:88:1;684:98;;;;784:4;680:109;;454:341;-1:-1:-1;;454:341:1:o;800:231::-;949:2;938:9;931:21;912:4;969:56;1021:2;1010:9;1006:18;998:6;969:56;:::i;:::-;961:64;800:231;-1:-1:-1;;;800:231:1:o;1036:177::-;1121:66;1114:5;1110:78;1103:5;1100:89;1090:117;;1203:1;1200;1193:12;1218:245;1276:6;1329:2;1317:9;1308:7;1304:23;1300:32;1297:52;;;1345:1;1342;1335:12;1297:52;1384:9;1371:23;1403:30;1427:5;1403:30;:::i;1891:196::-;1959:20;;-1:-1:-1;;;;;2008:54:1;;1998:65;;1988:93;;2077:1;2074;2067:12;1988:93;1891:196;;;:::o;2092:254::-;2160:6;2168;2221:2;2209:9;2200:7;2196:23;2192:32;2189:52;;;2237:1;2234;2227:12;2189:52;2260:29;2279:9;2260:29;:::i;:::-;2250:39;2336:2;2321:18;;;;2308:32;;-1:-1:-1;;;2092:254:1:o;2533:328::-;2610:6;2618;2626;2679:2;2667:9;2658:7;2654:23;2650:32;2647:52;;;2695:1;2692;2685:12;2647:52;2718:29;2737:9;2718:29;:::i;:::-;2708:39;;2766:38;2800:2;2789:9;2785:18;2766:38;:::i;:::-;2756:48;;2851:2;2840:9;2836:18;2823:32;2813:42;;2533:328;;;;;:::o;2866:248::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;-1:-1:-1;;3034:23:1;;;3104:2;3089:18;;;3076:32;;-1:-1:-1;2866:248:1:o;3119:652::-;3392:3;3381:9;3374:22;3355:4;3419:57;3471:3;3460:9;3456:19;3448:6;3419:57;:::i;:::-;3524:9;3516:6;3512:22;3507:2;3496:9;3492:18;3485:50;3558:44;3595:6;3587;3558:44;:::i;:::-;3544:58;;3650:9;3642:6;3638:22;3633:2;3622:9;3618:18;3611:50;3678:44;3715:6;3707;3678:44;:::i;:::-;3670:52;;;3758:6;3753:2;3742:9;3738:18;3731:34;3119:652;;;;;;;:::o;3776:184::-;3828:77;3825:1;3818:88;3925:4;3922:1;3915:15;3949:4;3946:1;3939:15;3965:253;4037:2;4031:9;4079:4;4067:17;;4114:18;4099:34;;4135:22;;;4096:62;4093:88;;;4161:18;;:::i;:::-;4197:2;4190:22;3965:253;:::o;4223:334::-;4294:2;4288:9;4350:2;4340:13;;-1:-1:-1;;4336:86:1;4324:99;;4453:18;4438:34;;4474:22;;;4435:62;4432:88;;;4500:18;;:::i;:::-;4536:2;4529:22;4223:334;;-1:-1:-1;4223:334:1:o;4562:466::-;4627:5;4661:18;4653:6;4650:30;4647:56;;;4683:18;;:::i;:::-;4721:116;4831:4;-1:-1:-1;;4757:2:1;4749:6;4745:15;4741:88;4737:99;4721:116;:::i;:::-;4712:125;;4860:6;4853:5;4846:21;4900:3;4891:6;4886:3;4882:16;4879:25;4876:45;;;4917:1;4914;4907:12;4876:45;4966:6;4961:3;4954:4;4947:5;4943:16;4930:43;5020:1;5013:4;5004:6;4997:5;4993:18;4989:29;4982:40;4562:466;;;;;:::o;5033:222::-;5076:5;5129:3;5122:4;5114:6;5110:17;5106:27;5096:55;;5147:1;5144;5137:12;5096:55;5169:80;5245:3;5236:6;5223:20;5216:4;5208:6;5204:17;5169:80;:::i;5260:322::-;5329:6;5382:2;5370:9;5361:7;5357:23;5353:32;5350:52;;;5398:1;5395;5388:12;5350:52;5438:9;5425:23;5471:18;5463:6;5460:30;5457:50;;;5503:1;5500;5493:12;5457:50;5526;5568:7;5559:6;5548:9;5544:22;5526:50;:::i;5587:186::-;5646:6;5699:2;5687:9;5678:7;5674:23;5670:32;5667:52;;;5715:1;5712;5705:12;5667:52;5738:29;5757:9;5738:29;:::i;5778:156::-;5844:20;;5904:4;5893:16;;5883:27;;5873:55;;5924:1;5921;5914:12;5939:182;5996:6;6049:2;6037:9;6028:7;6024:23;6020:32;6017:52;;;6065:1;6062;6055:12;6017:52;6088:27;6105:9;6088:27;:::i;6653:118::-;6739:5;6732:13;6725:21;6718:5;6715:32;6705:60;;6761:1;6758;6751:12;6776:241;6832:6;6885:2;6873:9;6864:7;6860:23;6856:32;6853:52;;;6901:1;6898;6891:12;6853:52;6940:9;6927:23;6959:28;6981:5;6959:28;:::i;7022:252::-;7086:6;7094;7147:2;7135:9;7126:7;7122:23;7118:32;7115:52;;;7163:1;7160;7153:12;7115:52;7186:27;7203:9;7186:27;:::i;:::-;7176:37;;7232:36;7264:2;7253:9;7249:18;7232:36;:::i;:::-;7222:46;;7022:252;;;;;:::o;7279:315::-;7344:6;7352;7405:2;7393:9;7384:7;7380:23;7376:32;7373:52;;;7421:1;7418;7411:12;7373:52;7444:29;7463:9;7444:29;:::i;:::-;7434:39;;7523:2;7512:9;7508:18;7495:32;7536:28;7558:5;7536:28;:::i;:::-;7583:5;7573:15;;;7279:315;;;;;:::o;7599:667::-;7694:6;7702;7710;7718;7771:3;7759:9;7750:7;7746:23;7742:33;7739:53;;;7788:1;7785;7778:12;7739:53;7811:29;7830:9;7811:29;:::i;:::-;7801:39;;7859:38;7893:2;7882:9;7878:18;7859:38;:::i;:::-;7849:48;;7944:2;7933:9;7929:18;7916:32;7906:42;;7999:2;7988:9;7984:18;7971:32;8026:18;8018:6;8015:30;8012:50;;;8058:1;8055;8048:12;8012:50;8081:22;;8134:4;8126:13;;8122:27;-1:-1:-1;8112:55:1;;8163:1;8160;8153:12;8112:55;8186:74;8252:7;8247:2;8234:16;8229:2;8225;8221:11;8186:74;:::i;:::-;8176:84;;;7599:667;;;;;;;:::o;8271:2012::-;8387:6;8395;8448:2;8436:9;8427:7;8423:23;8419:32;8416:52;;;8464:1;8461;8454:12;8416:52;8500:9;8487:23;8477:33;;8529:2;8582;8571:9;8567:18;8554:32;8605:18;8646:2;8638:6;8635:14;8632:34;;;8662:1;8659;8652:12;8632:34;8700:6;8689:9;8685:22;8675:32;;8745:7;8738:4;8734:2;8730:13;8726:27;8716:55;;8767:1;8764;8757:12;8716:55;8803:2;8790:16;8825:2;8821;8818:10;8815:36;;;8831:18;;:::i;:::-;8877:2;8874:1;8870:10;8900:28;8924:2;8920;8916:11;8900:28;:::i;:::-;8962:15;;;9032:11;;;9028:20;;;8993:12;;;;9060:19;;;9057:39;;;9092:1;9089;9082:12;9057:39;9124:2;9120;9116:11;9105:22;;9136:1117;9152:6;9147:3;9144:15;9136:1117;;;9238:3;9225:17;9274:2;9261:11;9258:19;9255:39;;;9290:1;9287;9280:12;9255:39;9317:20;;9448:4;9361:16;;;-1:-1:-1;;9357:89:1;9353:100;9350:120;;;9466:1;9463;9456:12;9350:120;9496:22;;:::i;:::-;9568:2;9564;9560:11;9547:25;9601:2;9591:8;9588:16;9585:36;;;9617:1;9614;9607:12;9585:36;9648:54;9694:7;9689:2;9678:8;9674:2;9670:17;9666:26;9648:54;:::i;:::-;9641:5;9634:69;;9753:2;9749;9745:11;9732:25;9786:2;9776:8;9773:16;9770:36;;;9802:1;9799;9792:12;9770:36;9842:54;9888:7;9883:2;9872:8;9868:2;9864:17;9860:26;9842:54;:::i;:::-;9837:2;9830:5;9826:14;9819:78;;9920:2;9972;9968;9964:11;9951:25;10005:2;9995:8;9992:16;9989:36;;;10021:1;10018;10011:12;9989:36;10061:54;10107:7;10102:2;10091:8;10087:2;10083:17;10079:26;10061:54;:::i;:::-;10056:2;10045:14;;10038:78;-1:-1:-1;10173:4:1;10165:13;;;;10152:27;10136:14;;;10129:51;;;;10193:18;;9169:12;;;;10231;;;;9136:1117;;;10272:5;10262:15;;;;;;;;;8271:2012;;;;;:::o;10288:260::-;10356:6;10364;10417:2;10405:9;10396:7;10392:23;10388:32;10385:52;;;10433:1;10430;10423:12;10385:52;10456:29;10475:9;10456:29;:::i;:::-;10446:39;;10504:38;10538:2;10527:9;10523:18;10504:38;:::i;10553:523::-;10643:6;10651;10659;10667;10675;10728:3;10716:9;10707:7;10703:23;10699:33;10696:53;;;10745:1;10742;10735:12;10696:53;10768:27;10785:9;10768:27;:::i;:::-;10758:37;;10814:38;10848:2;10837:9;10833:18;10814:38;:::i;:::-;10804:48;;10899:2;10888:9;10884:18;10871:32;10861:42;;10950:2;10939:9;10935:18;10922:32;10912:42;;11004:3;10993:9;10989:19;10976:33;11018:28;11040:5;11018:28;:::i;:::-;11065:5;11055:15;;;10553:523;;;;;;;;:::o;11081:254::-;11149:6;11157;11210:2;11198:9;11189:7;11185:23;11181:32;11178:52;;;11226:1;11223;11216:12;11178:52;11262:9;11249:23;11239:33;;11291:38;11325:2;11314:9;11310:18;11291:38;:::i;11340:437::-;11419:1;11415:12;;;;11462;;;11483:61;;11537:4;11529:6;11525:17;11515:27;;11483:61;11590:2;11582:6;11579:14;11559:18;11556:38;11553:218;;11627:77;11624:1;11617:88;11728:4;11725:1;11718:15;11756:4;11753:1;11746:15;11553:218;;11340:437;;;:::o;12487:184::-;12539:77;12536:1;12529:88;12636:4;12633:1;12626:15;12660:4;12657:1;12650:15;12676:184;12728:77;12725:1;12718:88;12825:4;12822:1;12815:15;12849:4;12846:1;12839:15;12865:148;12953:4;12932:12;;;12946;;;12928:31;;12971:13;;12968:39;;;12987:18;;:::i;13018:198::-;13060:3;13098:5;13092:12;13113:65;13171:6;13166:3;13159:4;13152:5;13148:16;13113:65;:::i;:::-;13194:16;;;;;13018:198;-1:-1:-1;;13018:198:1:o;13347:781::-;13397:3;13438:5;13432:12;13467:36;13493:9;13467:36;:::i;:::-;13522:1;13539:17;;;13565:191;;;;13770:1;13765:357;;;;13532:590;;13565:191;-1:-1:-1;;13602:9:1;13598:82;13593:3;13586:95;13736:6;13729:14;13722:22;13714:6;13710:35;13705:3;13701:45;13694:52;;13565:191;;13765:357;13796:5;13793:1;13786:16;13825:4;13870;13867:1;13857:18;13897:1;13911:165;13925:6;13922:1;13919:13;13911:165;;;14003:14;;13990:11;;;13983:35;14046:16;;;;13940:10;;13911:165;;;13915:3;;;14105:6;14100:3;14096:16;14089:23;;13532:590;;;;;13347:781;;;;:::o;14133:1111::-;14657:3;14695:6;14689:13;14711:66;14770:6;14765:3;14758:4;14750:6;14746:17;14711:66;:::i;:::-;14838;14799:16;;;14824:81;;;14924:49;14969:2;14958:14;;14950:6;14924:49;:::i;:::-;14914:59;;14993:66;14989:2;14982:78;15079:46;15121:2;15117;15113:11;15105:6;15079:46;:::i;:::-;15145:66;15134:78;;15236:1;15228:10;;14133:1111;-1:-1:-1;;;;;;14133:1111:1:o;15249:452::-;15481:3;15519:6;15513:13;15535:66;15594:6;15589:3;15582:4;15574:6;15570:17;15535:66;:::i;:::-;15662:3;15623:16;;15648:18;;;-1:-1:-1;15693:1:1;15682:13;;15249:452;-1:-1:-1;15249:452:1:o;15706:585::-;16069:3;16064;16057:16;16039:3;16102:6;16096:13;16118:74;16185:6;16181:1;16176:3;16172:11;16165:4;16157:6;16153:17;16118:74;:::i;:::-;16255:3;16251:1;16211:16;;;;16243:10;;;16236:23;-1:-1:-1;16283:1:1;16275:10;;15706:585;-1:-1:-1;15706:585:1:o;16716:245::-;16787:6;16825:10;;;16837;;;16821:27;16868:20;;;;16787:6;16907:24;;;16897:58;;16935:18;;:::i;:::-;16897:58;;16716:245;;;;:::o;16966:168::-;17033:6;17059:10;;;17071;;;17055:27;;17094:11;;;17091:37;;;17108:18;;:::i;:::-;17091:37;16966:168;;;;:::o;17139:197::-;17177:3;17205:6;17246:2;17239:5;17235:14;17273:2;17264:7;17261:15;17258:41;;17279:18;;:::i;:::-;17328:1;17315:15;;17139:197;-1:-1:-1;;;17139:197:1:o;17341:184::-;17393:77;17390:1;17383:88;17490:4;17487:1;17480:15;17514:4;17511:1;17504:15;17530:120;17570:1;17596;17586:35;;17601:18;;:::i;:::-;-1:-1:-1;17635:9:1;;17530:120::o;17655:1437::-;18167:66;18162:3;18155:79;18264:66;18259:2;18254:3;18250:12;18243:88;18361:66;18356:2;18351:3;18347:12;18340:88;18458:66;18453:2;18448:3;18444:12;18437:88;18137:3;18554:6;18548:13;18570:74;18637:6;18631:3;18626;18622:13;18617:2;18609:6;18605:15;18570:74;:::i;:::-;18709:34;18703:3;18663:16;;;18695:12;;;18688:56;18774:34;18768:3;18760:12;;18753:56;18839:13;18833:3;18825:12;;18818:35;18878:13;;18900:75;18878:13;18960:3;18952:12;;18947:2;18935:15;;18900:75;:::i;:::-;19041:16;19035:3;18994:17;;;;19027:12;;;19020:38;19082:3;19074:12;;17655:1437;-1:-1:-1;;;;17655:1437:1:o;19443:125::-;19508:9;;;19529:10;;;19526:36;;;19542:18;;:::i;20678:168::-;20751:9;;;20782;;20799:15;;;20793:22;;20779:37;20769:71;;20820:18;;:::i;22710:245::-;22777:6;22830:2;22818:9;22809:7;22805:23;22801:32;22798:52;;;22846:1;22843;22836:12;22798:52;22878:9;22872:16;22897:28;22919:5;22897:28;:::i;23310:518::-;23412:2;23407:3;23404:11;23401:421;;;23448:5;23445:1;23438:16;23492:4;23489:1;23479:18;23562:2;23550:10;23546:19;23543:1;23539:27;23533:4;23529:38;23598:4;23586:10;23583:20;23580:47;;;-1:-1:-1;23621:4:1;23580:47;23676:2;23671:3;23667:12;23664:1;23660:20;23654:4;23650:31;23640:41;;23731:81;23749:2;23742:5;23739:13;23731:81;;;23808:1;23794:16;;23775:1;23764:13;23731:81;;24064:1464;24190:3;24184:10;24217:18;24209:6;24206:30;24203:56;;;24239:18;;:::i;:::-;24268:97;24358:6;24318:38;24350:4;24344:11;24318:38;:::i;:::-;24312:4;24268:97;:::i;:::-;24420:4;;24477:2;24466:14;;24494:1;24489:782;;;;25315:1;25332:6;25329:89;;;-1:-1:-1;25384:19:1;;;25378:26;25329:89;-1:-1:-1;;23961:1:1;23957:11;;;23953:84;23949:89;23939:100;24045:1;24041:11;;;23936:117;25431:81;;24459:1063;;24489:782;13294:1;13287:14;;;13331:4;13318:18;;-1:-1:-1;;24525:79:1;;;24702:236;24716:7;24713:1;24710:14;24702:236;;;24805:19;;;24799:26;24784:42;;24897:27;;;;24865:1;24853:14;;;;24732:19;;24702:236;;;24706:3;24966:6;24957:7;24954:19;24951:261;;;25027:19;;;25021:26;-1:-1:-1;;25110:1:1;25106:14;;;25122:3;25102:24;25098:97;25094:102;25079:118;25064:134;;24951:261;-1:-1:-1;;;;;25258:1:1;25242:14;;;25238:22;25225:36;;-1:-1:-1;24064:1464:1:o;25533:197::-;25661:3;25686:38;25720:3;25712:6;25686:38;:::i;25735:289::-;25866:3;25904:6;25898:13;25920:66;25979:6;25974:3;25967:4;25959:6;25955:17;25920:66;:::i;:::-;26002:16;;;;;25735:289;-1:-1:-1;;25735:289:1:o;26029:112::-;26061:1;26087;26077:35;;26092:18;;:::i;:::-;-1:-1:-1;26126:9:1;;26029:112::o;26146:128::-;26213:9;;;26234:11;;;26231:37;;;26248:18;;:::i;26279:1054::-;26655:3;26693:6;26687:13;26709:66;26768:6;26763:3;26756:4;26748:6;26744:17;26709:66;:::i;:::-;26838:13;;26797:16;;;;26860:70;26838:13;26797:16;26907:4;26895:17;;26860:70;:::i;:::-;26997:13;;26952:20;;;27019:70;26997:13;26952:20;27066:4;27054:17;;27019:70;:::i;:::-;27154:3;27111:20;;27140:18;;;27183:13;;27205:78;27183:13;27270:1;27259:13;;27252:4;27240:17;;27205:78;:::i;:::-;27303:20;27325:1;27299:28;;26279:1054;-1:-1:-1;;;;;;26279:1054:1:o;28051:2135::-;29010:66;29005:3;28998:79;28980:3;29106:6;29100:13;29122:75;29190:6;29185:2;29180:3;29176:12;29169:4;29161:6;29157:17;29122:75;:::i;:::-;29261:66;29256:2;29216:16;;;29248:11;;;29241:87;29353:13;;29375:76;29353:13;29437:2;29429:11;;29422:4;29410:17;;29375:76;:::i;:::-;29516:66;29511:2;29470:17;;;;29503:11;;;29496:87;29612:12;29607:2;29599:11;;29592:33;29650:13;;29672:76;29650:13;29734:2;29726:11;;29719:4;29707:17;;29672:76;:::i;:::-;29813:34;29808:2;29767:17;;;;29800:11;;;29793:55;29877:66;29872:2;29864:11;;29857:87;29974:66;29968:3;29960:12;;29953:88;30057:123;30087:92;30113:65;30138:39;30172:3;30164:12;;30156:6;30138:39;:::i;:::-;27826:66;27814:79;;27918:2;27909:12;;27754:173;30113:65;30105:6;30087:92;:::i;:::-;28009:3;27997:16;;28038:1;28029:11;;27932:114;30057:123;30050:130;28051:2135;-1:-1:-1;;;;;;;;28051:2135:1:o;30191:461::-;30453:31;30448:3;30441:44;30423:3;30514:6;30508:13;30530:75;30598:6;30593:2;30588:3;30584:12;30577:4;30569:6;30565:17;30530:75;:::i;:::-;30625:16;;;;30643:2;30621:25;;30191:461;-1:-1:-1;;30191:461:1:o;30657:184::-;30727:6;30780:2;30768:9;30759:7;30755:23;30751:32;30748:52;;;30796:1;30793;30786:12;30748:52;-1:-1:-1;30819:16:1;;30657:184;-1:-1:-1;30657:184:1:o;31156:225::-;31260:4;31239:12;;;31253;;;31235:31;31286:22;;;;31327:24;;;31317:58;;31355:18;;:::i;31386:151::-;31476:4;31469:12;;;31455;;;31451:31;;31494:14;;31491:40;;;31511:18;;:::i;31542:175::-;31579:3;31623:4;31616:5;31612:16;31652:4;31643:7;31640:17;31637:43;;31660:18;;:::i;:::-;31709:1;31696:15;;31542:175;-1:-1:-1;;31542:175:1:o;31722:1502::-;32401:3;32439:6;32433:13;32455:66;32514:6;32509:3;32502:4;32494:6;32490:17;32455:66;:::i;:::-;32582:16;32543;;;32568:31;;;32624:13;;32646:79;32624:13;32711:2;32700:14;;32693:4;32681:17;;32646:79;:::i;:::-;32793:7;32788:2;32744:20;;;;32780:11;;;32773:28;32826:13;;32848:76;32826:13;32910:2;32902:11;;32895:4;32883:17;;32848:76;:::i;:::-;32989:7;32984:2;32943:17;;;;32976:11;;;32969:28;33022:13;;33044:76;33022:13;33106:2;33098:11;;33091:4;33079:17;;33044:76;:::i;:::-;33185:5;33180:2;33139:17;;;;33172:11;;;33165:26;33215:2;33207:11;;31722:1502;-1:-1:-1;;;;;;31722:1502:1:o;33229:1144::-;33759:3;33797:6;33791:13;33813:66;33872:6;33867:3;33860:4;33852:6;33848:17;33813:66;:::i;:::-;33940:5;33901:16;;;33926:20;;;33971:13;;33993:78;33971:13;34058:1;34047:13;;34040:4;34028:17;;33993:78;:::i;:::-;34138:9;34134:1;34090:20;;;;34126:10;;;34119:29;34173:13;;34195:76;34173:13;34257:2;34249:11;;34242:4;34230:17;;34195:76;:::i;:::-;34336:3;34331:2;34290:17;;;;34323:11;;;34316:24;34364:2;34356:11;;33229:1144;-1:-1:-1;;;;;33229:1144:1:o;34378:537::-;34610:3;34648:6;34642:13;34664:66;34723:6;34718:3;34711:4;34703:6;34699:17;34664:66;:::i;:::-;34791:34;34752:16;;34777:49;;;-1:-1:-1;34860:18:1;34853:4;34842:16;;34835:44;34906:2;34895:14;;34378:537;-1:-1:-1;34378:537:1:o;34920:1007::-;35349:3;35387:6;35381:13;35403:66;35462:6;35457:3;35450:4;35442:6;35438:17;35403:66;:::i;:::-;35532:13;;35491:16;;;;35554:70;35532:13;35491:16;35601:4;35589:17;;35554:70;:::i;:::-;35689:9;35646:20;;35675:24;;;35724:13;;35746:78;35724:13;35811:1;35800:13;;35793:4;35781:17;;35746:78;:::i;:::-;35891:3;35887:1;35843:20;;;;35879:10;;;35872:23;35919:1;35911:10;;34920:1007;-1:-1:-1;;;;;34920:1007:1:o;35932:806::-;36164:3;36202:6;36196:13;36218:66;36277:6;36272:3;36265:4;36257:6;36253:17;36218:66;:::i;:::-;36345:34;36306:16;;36331:49;;;-1:-1:-1;36414:34:1;36407:4;36396:16;;36389:60;36481:34;36476:2;36465:14;;36458:58;36548:34;36543:2;36532:14;;36525:58;36616:34;36610:3;36599:15;;36592:59;36684:16;36678:3;36667:15;;36660:41;36728:3;36717:15;;35932:806;-1:-1:-1;35932:806:1:o;37103:195::-;37142:3;-1:-1:-1;;37166:5:1;37163:77;37160:103;;37243:18;;:::i;:::-;-1:-1:-1;37290:1:1;37279:13;;37103:195::o;37900:496::-;38079:3;38117:6;38111:13;38133:66;38192:6;38187:3;38180:4;38172:6;38168:17;38133:66;:::i;:::-;38262:13;;38221:16;;;;38284:70;38262:13;38221:16;38331:4;38319:17;;38284:70;:::i;:::-;38370:20;;37900:496;-1:-1:-1;;;;37900:496:1:o;38401:523::-;38595:4;-1:-1:-1;;;;;38705:2:1;38697:6;38693:15;38682:9;38675:34;38757:2;38749:6;38745:15;38740:2;38729:9;38725:18;38718:43;;38797:6;38792:2;38781:9;38777:18;38770:34;38840:3;38835:2;38824:9;38820:18;38813:31;38861:57;38913:3;38902:9;38898:19;38890:6;38861:57;:::i;:::-;38853:65;38401:523;-1:-1:-1;;;;;;38401:523:1:o;38929:249::-;38998:6;39051:2;39039:9;39030:7;39026:23;39022:32;39019:52;;;39067:1;39064;39057:12;39019:52;39099:9;39093:16;39118:30;39142:5;39118:30;:::i;39183:184::-;39235:77;39232:1;39225:88;39332:4;39329:1;39322:15;39356:4;39353:1;39346:15

Swarm Source

ipfs://1827bb1bfd37dda1fa9f6a7c1f3cb3515d3aee186232c92ed0d6cafe307cd8ce
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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