ETH Price: $3,647.30 (+0.94%)
 

Overview

Max Total Supply

1,000,000,984,995,268.344576280124627209 GEGGS

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
39,999,999.999999999999999999 GEGGS

Value
$0.00
0x66edd8337f1c944a01974ba44b803630946aacd2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Golden Eggs is a decentralized finance (DeFi) project with a mission to create a fair and equitable financial system that is accessible to anyone with an internet connection.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Geggs

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Website: https://goldeneggs.care/
Docs: https://docs.goldeneggs.care/
Twitter: https://twitter.com/GoldenEggs_ETH
Portal: https://t.me/GoldenEggs_ETH
Channel: https://t.me/GoldenEggs_Channel
Discord: https://discord.com/invite/F2Pz6NGx8y

**/


// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set)
        internal
        view
        returns (bytes32[] memory)
    {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set)
        internal
        view
        returns (address[] memory)
    {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set)
        internal
        view
        returns (uint256[] memory)
    {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol

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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol

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

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/Math.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/IAccessControl.sol

// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        external
        view
        returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/IAccessControlEnumerable.sol

// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        external
        view
        returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/AccessControl.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role)
        public
        view
        virtual
        override
        returns (bytes32)
    {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account)
        public
        virtual
        override
    {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/AccessControlEnumerable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is
    IAccessControlEnumerable,
    AccessControl
{
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        public
        view
        virtual
        override
        returns (address)
    {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account)
        internal
        virtual
        override
    {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/draft-IERC20Permit.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/ERC20PresetMinterRebaser.sol

pragma solidity ^0.8.0;

contract ERC20PresetMinterRebaser is
    Context,
    AccessControlEnumerable,
    ERC20Burnable
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant REBASER_ROLE = keccak256("REBASER_ROLE");

    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(REBASER_ROLE, _msgSender());
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    newAllowance
                )
            );
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(
            nonceAfter == nonceBefore + 1,
            "SafeERC20: permit did not succeed"
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        if (returndata.length > 0) {
            // Return data is optional
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: contracts/GEGGS.sol

pragma solidity ^0.8.0;

// Storage for a GEGGS token
contract GEGGS {
    using SafeMath for uint256;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice Governor for this contract
     */
    address public gov;

    /**
     * @notice Pending governance for this contract
     */
    address public pendingGov;

    /**
     * @notice Approved rebaser for this contract
     */
    address public rebaser;

    /**
     * @notice Approved migrator for this contract
     */
    address public migrator;

    /**
     * @notice Incentivizer address of YAM protocol
     */
    address public incentivizer;

    /**
     * @notice Total supply of YAMs
     */
    uint256 public totalSupply;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public yamsScalingFactor;

    mapping(address => uint256) internal _yamBalances;

    mapping(address => mapping(address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    bytes32 public DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );
}

// File: contracts/IEGGS.sol

pragma solidity ^0.8.0;

abstract contract IEGGS {
    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(
        uint256 epoch,
        uint256 prevEggssScalingFactor,
        uint256 newEggssScalingFactor
    );

    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);

    /**
     * @notice Tokens burned event
     */
    event Burn(address from, uint256 amount);
}

// File: contracts/Geggs.sol

pragma solidity ^0.8.0;

contract Geggs is ERC20PresetMinterRebaser, Ownable, IEGGS {
    using SafeMath for uint256;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public eggssScalingFactor;

    mapping(address => uint256) internal _eggsBalances;

    mapping(address => mapping(address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    bytes32 public DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    uint256 private INIT_SUPPLY = 1000000000 * 10**18;
    uint256 private _totalSupply;

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    constructor() ERC20PresetMinterRebaser("Golden Eggs", "GEGGS") {
        eggssScalingFactor = BASE;
        initSupply = _fragmentToEggs(INIT_SUPPLY);
        _totalSupply = INIT_SUPPLY;
        _eggsBalances[owner()] = initSupply;

        emit Transfer(address(0), msg.sender, INIT_SUPPLY);
    }

    /**
     * @return The total number of fragments.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @notice Computes the current max scaling factor
     */
    function maxScalingFactor() external view returns (uint256) {
        return _maxScalingFactor();
    }

    function _maxScalingFactor() internal view returns (uint256) {
        // scaling factor can only go up to 2**256-1 = initSupply * eggssScalingFactor
        // this is used to check if eggssScalingFactor will be too high to compute balances when rebasing.
        return uint256(int256(-1)) / initSupply;
    }

    /**
     * @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
     */
    function mint(address to, uint256 amount) external returns (bool) {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mint(to, amount);
        return true;
    }

    function _mint(address to, uint256 amount) internal override {
        // increase totalSupply
        _totalSupply = _totalSupply.add(amount);

        // get underlying value
        uint256 eggsValue = _fragmentToEggs(amount);

        // increase initSupply
        initSupply = initSupply.add(eggsValue);

        // make sure the mint didnt push maxScalingFactor too low
        require(
            eggssScalingFactor <= _maxScalingFactor(),
            "max scaling factor too low"
        );

        // add balance
        _eggsBalances[to] = _eggsBalances[to].add(eggsValue);

        emit Mint(to, amount);
        emit Transfer(address(0), to, amount);
    }

    /**
     * @notice Burns tokens from msg.sender, decreases totalSupply, initSupply, and a users balance.
     */

    function burn(uint256 amount) public override {
        _burn(amount);
    }

    function _burn(uint256 amount) internal {
        // decrease totalSupply
        _totalSupply = _totalSupply.sub(amount);

        // get underlying value
        uint256 eggsValue = _fragmentToEggs(amount);

        // decrease initSupply
        initSupply = initSupply.sub(eggsValue);

        // decrease balance
        _eggsBalances[msg.sender] = _eggsBalances[msg.sender].sub(eggsValue);
        emit Burn(msg.sender, amount);
        emit Transfer(msg.sender, address(0), amount);
    }

    /**
     * @notice Mints new tokens using underlying amount, increasing totalSupply, initSupply, and a users balance.
     */
    function mintUnderlying(address to, uint256 amount) public returns (bool) {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mintUnderlying(to, amount);
        return true;
    }

    function _mintUnderlying(address to, uint256 amount) internal {
        // increase initSupply
        initSupply = initSupply.add(amount);

        // get external value
        uint256 scaledAmount = _eggsToFragment(amount);

        // increase totalSupply
        _totalSupply = _totalSupply.add(scaledAmount);

        // make sure the mint didnt push maxScalingFactor too low
        require(
            eggssScalingFactor <= _maxScalingFactor(),
            "max scaling factor too low"
        );

        // add balance
        _eggsBalances[to] = _eggsBalances[to].add(amount);

        emit Mint(to, scaledAmount);
        emit Transfer(address(0), to, scaledAmount);
    }

    /**
     * @dev Transfer underlying balance to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transferUnderlying(address to, uint256 value)
        public
        validRecipient(to)
        returns (bool)
    {
        // sub from balance of sender
        _eggsBalances[msg.sender] = _eggsBalances[msg.sender].sub(value);

        // add to balance of receiver
        _eggsBalances[to] = _eggsBalances[to].add(value);
        emit Transfer(msg.sender, to, _eggsToFragment(value));
        return true;
    }

    /* - ERC20 functionality - */

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value)
        public
        override
        validRecipient(to)
        returns (bool)
    {
        // underlying balance is stored in eggss, so divide by current scaling factor

        // note, this means as scaling factor grows, dust will be untransferrable.
        // minimum transfer value == eggssScalingFactor / 1e24;

        // get amount in underlying
        uint256 eggsValue = _fragmentToEggs(value);

        // sub from balance of sender
        _eggsBalances[msg.sender] = _eggsBalances[msg.sender].sub(eggsValue);

        // add to balance of receiver
        _eggsBalances[to] = _eggsBalances[to].add(eggsValue);
        emit Transfer(msg.sender, to, value);

        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override validRecipient(to) returns (bool) {
        // decrease allowance
        _allowedFragments[from][msg.sender] = _allowedFragments[from][
            msg.sender
        ].sub(value);

        // get value in eggss
        uint256 eggsValue = _fragmentToEggs(value);

        // sub from from
        _eggsBalances[from] = _eggsBalances[from].sub(eggsValue);
        _eggsBalances[to] = _eggsBalances[to].add(eggsValue);
        emit Transfer(from, to, value);

        return true;
    }

    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who) public view override returns (uint256) {
        return _eggsToFragment(_eggsBalances[who]);
    }

    /** @notice Currently returns the internal storage amount
     * @param who The address to query.
     * @return The underlying balance of the specified address.
     */
    function balanceOfUnderlying(address who) public view returns (uint256) {
        return _eggsBalances[who];
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][
            spender
        ].add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowedFragments[msg.sender][spender]
        );
        return true;
    }

    // --- Approve by signature ---
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        require(block.timestamp <= deadline, "GEGGS/permit-expired");

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        PERMIT_TYPEHASH,
                        owner,
                        spender,
                        value,
                        nonces[owner]++,
                        deadline
                    )
                )
            )
        );

        require(owner != address(0), "GEGGS/invalid-address-0");
        require(owner == ecrecover(digest, v, r, s), "GEGGS/invalid-permit");
        _allowedFragments[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function rebase(
        uint256 epoch,
        uint256 indexDelta,
        bool positive
    ) public returns (uint256) {
        require(hasRole(REBASER_ROLE, _msgSender()), "Must have rebaser role");

        // no change
        if (indexDelta == 0) {
            emit Rebase(epoch, eggssScalingFactor, eggssScalingFactor);
            return _totalSupply;
        }

        // for events
        uint256 prevEggssScalingFactor = eggssScalingFactor;

        if (!positive) {
            // negative rebase, decrease scaling factor
            eggssScalingFactor = eggssScalingFactor
                .mul(BASE.sub(indexDelta))
                .div(BASE);
        } else {
            // positive rebase, increase scaling factor
            uint256 newScalingFactor = eggssScalingFactor
                .mul(BASE.add(indexDelta))
                .div(BASE);
            if (newScalingFactor < _maxScalingFactor()) {
                eggssScalingFactor = newScalingFactor;
            } else {
                eggssScalingFactor = _maxScalingFactor();
            }
        }

        // update total supply, correctly
        _totalSupply = _eggsToFragment(initSupply);

        emit Rebase(epoch, prevEggssScalingFactor, eggssScalingFactor);
        return _totalSupply;
    }

    function eggsToFragment(uint256 eggs) public view returns (uint256) {
        return _eggsToFragment(eggs);
    }

    function fragmentToEggs(uint256 value) public view returns (uint256) {
        return _fragmentToEggs(value);
    }

    function _eggsToFragment(uint256 eggs) internal view returns (uint256) {
        return eggs.mul(eggssScalingFactor).div(internalDecimals);
    }

    function _fragmentToEggs(uint256 value) internal view returns (uint256) {
        return value.mul(internalDecimals).div(eggssScalingFactor);
    }

    // Rescue tokens
    function rescueTokens(
        address token,
        address to,
        uint256 amount
    ) public onlyOwner returns (bool) {
        // transfer to
        SafeERC20.safeTransfer(IERC20(token), to, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevEggssScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEggssScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"eggs","type":"uint256"}],"name":"eggsToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eggssScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToEggs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526b033b2e3c9fd0803ce8000000600e553480156200002157600080fd5b506040518060400160405280600b81526020017f476f6c64656e20456767730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474547475300000000000000000000000000000000000000000000000000000081525081818160059080519060200190620000a892919062000680565b508060069080519060200190620000c192919062000680565b505050620000e86000801b620000dc6200028260201b60201c565b6200028a60201b60201c565b620001297f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200011d6200028260201b60201c565b6200028a60201b60201c565b6200016a7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756200015e6200028260201b60201c565b6200028a60201b60201c565b50506200018c620001806200028260201b60201c565b620002a060201b60201c565b670de0b6b3a7640000600881905550620001ae600e546200036660201b60201c565b600b81905550600e54600f81905550600b5460096000620001d4620003ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e546040516200027491906200074b565b60405180910390a3620008c4565b600033905090565b6200029c8282620003d860201b60201c565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000620003a76008546200039369d3c21bcecceda1000000856200042060201b620022cf1790919060201c565b6200043860201b620022e51790919060201c565b9050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003ef82826200045060201b620022fb1760201c565b6200041b81600160008581526020019081526020016000206200054160201b620023db1790919060201c565b505050565b6000818362000430919062000797565b905092915050565b6000818362000448919062000827565b905092915050565b6200046282826200057960201b60201c565b6200053d57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004e26200028260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000571836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620005e360201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620005f783836200065d60201b60201c565b6200065257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000657565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200068e906200088e565b90600052602060002090601f016020900481019282620006b25760008555620006fe565b82601f10620006cd57805160ff1916838001178555620006fe565b82800160010185558215620006fe579182015b82811115620006fd578251825591602001919060010190620006e0565b5b5090506200070d919062000711565b5090565b5b808211156200072c57600081600090555060010162000712565b5090565b6000819050919050565b620007458162000730565b82525050565b60006020820190506200076260008301846200073a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007a48262000730565b9150620007b18362000730565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007ed57620007ec62000768565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620008348262000730565b9150620008418362000730565b925082620008545762000853620007f8565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a757607f821691505b60208210811415620008be57620008bd6200085f565b5b50919050565b614f3f80620008d46000396000f3fe608060405234801561001057600080fd5b506004361061027f5760003560e01c8063739eb2c61161015c578063a217fddf116100ce578063d539139311610087578063d53913931461084e578063d547741f1461086c578063dd62ed3e14610888578063ec342ad0146108b8578063f2fde38b146108d6578063f455cb3b146108f25761027f565b8063a217fddf14610754578063a457c2d714610772578063a9059cbb146107a2578063ca15c873146107d2578063cea9d26f14610802578063d505accf146108325761027f565b80638da5cb5b116101205780638da5cb5b1461066a5780639010d07c14610688578063917505f4146106b857806391d14854146106e857806395d89b411461071857806397d63f93146107365761027f565b8063739eb2c6146105b257806379cc6790146105d05780637af548c1146105ec5780637ecebe001461061c57806383eb70e51461064c5761027f565b8063313ce567116101f55780633af9e669116101b95780633af9e669146104de57806340c10f191461050e57806342966c681461053e57806364dd48f51461055a57806370a0823114610578578063715018a6146105a85761027f565b8063313ce56714610426578063336d2692146104445780633644e5151461047457806336568abe1461049257806339509351146104ae5761027f565b806320606b701161024757806320606b701461033e578063222d52ee1461035c57806323b872dd1461038c578063248a9ca3146103bc5780632f2ff15d146103ec57806330adf81f146104085761027f565b806301ffc9a71461028457806306fdde03146102b4578063095ea7b3146102d257806311d3e6c41461030257806318160ddd14610320575b600080fd5b61029e60048036038101906102999190613a51565b610922565b6040516102ab9190613a99565b60405180910390f35b6102bc61099c565b6040516102c99190613b4d565b60405180910390f35b6102ec60048036038101906102e79190613c03565b610a2e565b6040516102f99190613a99565b60405180910390f35b61030a610b20565b6040516103179190613c52565b60405180910390f35b610328610b2f565b6040516103359190613c52565b60405180910390f35b610346610b39565b6040516103539190613c86565b60405180910390f35b61037660048036038101906103719190613ca1565b610b5d565b6040516103839190613c52565b60405180910390f35b6103a660048036038101906103a19190613cce565b610b6f565b6040516103b39190613a99565b60405180910390f35b6103d660048036038101906103d19190613d4d565b610e9d565b6040516103e39190613c86565b60405180910390f35b61040660048036038101906104019190613d7a565b610ebc565b005b610410610edd565b60405161041d9190613c86565b60405180910390f35b61042e610f04565b60405161043b9190613dd6565b60405180910390f35b61045e60048036038101906104599190613c03565b610f0d565b60405161046b9190613a99565b60405180910390f35b61047c611125565b6040516104899190613c86565b60405180910390f35b6104ac60048036038101906104a79190613d7a565b61112b565b005b6104c860048036038101906104c39190613c03565b6111ae565b6040516104d59190613a99565b60405180910390f35b6104f860048036038101906104f39190613df1565b6113aa565b6040516105059190613c52565b60405180910390f35b61052860048036038101906105239190613c03565b6113f3565b6040516105359190613a99565b60405180910390f35b61055860048036038101906105539190613ca1565b611479565b005b610562611485565b60405161056f9190613c52565b60405180910390f35b610592600480360381019061058d9190613df1565b611493565b60405161059f9190613c52565b60405180910390f35b6105b06114e4565b005b6105ba6114f8565b6040516105c79190613c52565b60405180910390f35b6105ea60048036038101906105e59190613c03565b6114fe565b005b61060660048036038101906106019190613e4a565b61151e565b6040516106139190613c52565b60405180910390f35b61063660048036038101906106319190613df1565b611717565b6040516106439190613c52565b60405180910390f35b61065461172f565b6040516106619190613c86565b60405180910390f35b610672611753565b60405161067f9190613eac565b60405180910390f35b6106a2600480360381019061069d9190613ec7565b61177d565b6040516106af9190613eac565b60405180910390f35b6106d260048036038101906106cd9190613c03565b6117ac565b6040516106df9190613a99565b60405180910390f35b61070260048036038101906106fd9190613d7a565b611832565b60405161070f9190613a99565b60405180910390f35b61072061189c565b60405161072d9190613b4d565b60405180910390f35b61073e61192e565b60405161074b9190613c52565b60405180910390f35b61075c611934565b6040516107699190613c86565b60405180910390f35b61078c60048036038101906107879190613c03565b61193b565b6040516107999190613a99565b60405180910390f35b6107bc60048036038101906107b79190613c03565b611bcb565b6040516107c99190613a99565b60405180910390f35b6107ec60048036038101906107e79190613d4d565b611de9565b6040516107f99190613c52565b60405180910390f35b61081c60048036038101906108179190613cce565b611e0d565b6040516108299190613a99565b60405180910390f35b61084c60048036038101906108479190613f33565b611e2d565b005b610856612161565b6040516108639190613c86565b60405180910390f35b61088660048036038101906108819190613d7a565b612185565b005b6108a2600480360381019061089d9190613fd5565b6121a6565b6040516108af9190613c52565b60405180910390f35b6108c061222d565b6040516108cd9190613c52565b60405180910390f35b6108f060048036038101906108eb9190613df1565b612239565b005b61090c60048036038101906109079190613ca1565b6122bd565b6040516109199190613c52565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557506109948261240b565b5b9050919050565b6060600580546109ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790614044565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b600081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b0e9190613c52565b60405180910390a36001905092915050565b6000610b2a612485565b905090565b6000600f54905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610b68826124ba565b9050919050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bac57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be557600080fd5b610c7483600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610cff8461250a565b9050610d5381600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de881600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610e889190613c52565b60405180910390a36001925050509392505050565b6000806000838152602001908152602001600020600101549050919050565b610ec582610e9d565b610ece8161255a565b610ed8838361256e565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4a57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8357600080fd5b610fd583600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061106a83600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611105866124ba565b6040516111129190613c52565b60405180910390a3600191505092915050565b600c5481565b6111336125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906140e8565b60405180910390fd5b6111aa82826125aa565b5050565b600061123f82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516113989190613c52565b60405180910390a36001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006114267f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66114216125a2565b611832565b611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90614154565b60405180910390fd5b61146f83836125de565b6001905092915050565b611482816127a6565b50565b69d3c21bcecceda100000081565b60006114dd600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba565b9050919050565b6114ec612921565b6114f6600061299f565b565b60085481565b6115108261150a6125a2565b83612a65565b61151a8282612af1565b5050565b60006115517f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7561154c6125a2565b611832565b611590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611587906141c0565b60405180910390fd5b60008314156115e2577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0846008546008546040516115d0939291906141e0565b60405180910390a1600f549050611710565b600060085490508261164257611637670de0b6b3a764000061162961161887670de0b6b3a76400006124f490919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b6008819055506116bb565b600061168d670de0b6b3a764000061167f61166e88670de0b6b3a764000061254490919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050611697612485565b8110156116aa57806008819055506116b9565b6116b2612485565b6008819055505b505b6116c6600b546124ba565b600f819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c08582600854604051611701939291906141e0565b60405180910390a1600f549150505b9392505050565b600d6020528060005260406000206000915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006117a48260016000868152602001908152602001600020612cc190919063ffffffff16565b905092915050565b60006117df7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66117da6125a2565b611832565b61181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614154565b60405180910390fd5b6118288383612cdb565b6001905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600680546118ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546118d790614044565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b600b5481565b6000801b81565b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310611a4b576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611adf565b611a5e83826124f490919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611bb89190613c52565b60405180910390a3600191505092915050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0857600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c4157600080fd5b6000611c4c8461250a565b9050611ca081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d3581600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611dd59190613c52565b60405180910390a360019250505092915050565b6000611e0660016000848152602001908152602001600020612ea3565b9050919050565b6000611e17612921565b611e22848484612eb8565b600190509392505050565b83421115611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614263565b60405180910390fd5b6000600c547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600d60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611eec906142b2565b919050558a604051602001611f06969594939291906142fb565b60405160208183030381529060405280519060200120604051602001611f2d9291906143d4565b604051602081830303815290604052805190602001209050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614457565b60405180910390fd5b60018185858560405160008152602001604052604051611fd89493929190614477565b6020604051602081039080840390855afa158015611ffa573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614508565b60405180910390fd5b85600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258860405161214f9190613c52565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61218e82610e9d565b6121978161255a565b6121a183836125aa565b505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b670de0b6b3a764000081565b612241612921565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a89061459a565b60405180910390fd5b6122ba8161299f565b50565b60006122c88261250a565b9050919050565b600081836122dd91906145ba565b905092915050565b600081836122f39190614643565b905092915050565b6123058282611832565b6123d757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061237c6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612403836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612f3e565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247e575061247d82612fae565b5b9050919050565b6000600b547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6124b59190614643565b905090565b60006124ed69d3c21bcecceda10000006124df600854856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b600081836125029190614674565b905092915050565b600061253d60085461252f69d3c21bcecceda1000000856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b6000818361255291906146a8565b905092915050565b61256b816125666125a2565b613018565b50565b61257882826122fb565b61259d81600160008581526020019081526020016000206123db90919063ffffffff16565b505050565b600033905090565b6125b4828261309d565b6125d9816001600085815260200190815260200160002061317e90919063ffffffff16565b505050565b6125f381600f5461254490919063ffffffff16565b600f8190555060006126048261250a565b905061261b81600b5461254490919063ffffffff16565b600b81905550612629612485565b600854111561266d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126649061474a565b60405180910390fd5b6126bf81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838360405161273392919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127999190613c52565b60405180910390a3505050565b6127bb81600f546124f490919063ffffffff16565b600f8190555060006127cc8261250a565b90506127e381600b546124f490919063ffffffff16565b600b8190555061283b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca533836040516128af92919061476a565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129159190613c52565b60405180910390a35050565b6129296125a2565b73ffffffffffffffffffffffffffffffffffffffff16612947611753565b73ffffffffffffffffffffffffffffffffffffffff161461299d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612994906147df565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a7184846121a6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612aeb5781811015612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad49061484b565b60405180910390fd5b612aea84848484036131ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b58906148dd565b60405180910390fd5b612b6d82600083613379565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb9061496f565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ca89190613c52565b60405180910390a3612cbc8360008461337e565b505050565b6000612cd08360000183613383565b60001c905092915050565b612cf081600b5461254490919063ffffffff16565b600b819055506000612d01826124ba565b9050612d1881600f5461254490919063ffffffff16565b600f81905550612d26612485565b6008541115612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d619061474a565b60405180910390fd5b612dbc82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858382604051612e3092919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e969190613c52565b60405180910390a3505050565b6000612eb1826000016133ae565b9050919050565b612f398363a9059cbb60e01b8484604051602401612ed792919061476a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133bf565b505050565b6000612f4a8383613486565b612fa3578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612fa8565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130228282611832565b6130995761302f816134a9565b61303d8360001c60206134d6565b60405160200161304e929190614a58565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130909190613b4d565b60405180910390fd5b5050565b6130a78282611832565b1561317a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061311f6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006131a6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613712565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328590614b96565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161336c9190613c52565b60405180910390a3505050565b505050565b505050565b600082600001828154811061339b5761339a614bb6565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000613421826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138269092919063ffffffff16565b905060008151111561348157808060200190518101906134419190614bfa565b613480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347790614c99565b60405180910390fd5b5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60606134cf8273ffffffffffffffffffffffffffffffffffffffff16601460ff166134d6565b9050919050565b6060600060028360026134e991906145ba565b6134f391906146a8565b67ffffffffffffffff81111561350c5761350b614cb9565b5b6040519080825280601f01601f19166020018201604052801561353e5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061357657613575614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135da576135d9614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261361a91906145ba565b61362491906146a8565b90505b60018111156136c4577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061366657613665614bb6565b5b1a60f81b82828151811061367d5761367c614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136bd90614ce8565b9050613627565b5060008414613708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff90614d5e565b60405180910390fd5b8091505092915050565b6000808360010160008481526020019081526020016000205490506000811461381a5760006001826137449190614674565b905060006001866000018054905061375c9190614674565b90508181146137cb57600086600001828154811061377d5761377c614bb6565b5b90600052602060002001549050808760000184815481106137a1576137a0614bb6565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137df576137de614d7e565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613820565b60009150505b92915050565b6060613835848460008561383e565b90509392505050565b606082471015613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a90614e1f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516138ac9190614e86565b60006040518083038185875af1925050503d80600081146138e9576040519150601f19603f3d011682016040523d82523d6000602084013e6138ee565b606091505b50915091506138ff8783838761390b565b92505050949350505050565b6060831561396e576000835114156139665761392685613981565b613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90614ee9565b60405180910390fd5b5b829050613979565b61397883836139a4565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156139b75781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139eb9190613b4d565b60405180910390fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a2e816139f9565b8114613a3957600080fd5b50565b600081359050613a4b81613a25565b92915050565b600060208284031215613a6757613a666139f4565b5b6000613a7584828501613a3c565b91505092915050565b60008115159050919050565b613a9381613a7e565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aee578082015181840152602081019050613ad3565b83811115613afd576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b1f82613ab4565b613b298185613abf565b9350613b39818560208601613ad0565b613b4281613b03565b840191505092915050565b60006020820190508181036000830152613b678184613b14565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9a82613b6f565b9050919050565b613baa81613b8f565b8114613bb557600080fd5b50565b600081359050613bc781613ba1565b92915050565b6000819050919050565b613be081613bcd565b8114613beb57600080fd5b50565b600081359050613bfd81613bd7565b92915050565b60008060408385031215613c1a57613c196139f4565b5b6000613c2885828601613bb8565b9250506020613c3985828601613bee565b9150509250929050565b613c4c81613bcd565b82525050565b6000602082019050613c676000830184613c43565b92915050565b6000819050919050565b613c8081613c6d565b82525050565b6000602082019050613c9b6000830184613c77565b92915050565b600060208284031215613cb757613cb66139f4565b5b6000613cc584828501613bee565b91505092915050565b600080600060608486031215613ce757613ce66139f4565b5b6000613cf586828701613bb8565b9350506020613d0686828701613bb8565b9250506040613d1786828701613bee565b9150509250925092565b613d2a81613c6d565b8114613d3557600080fd5b50565b600081359050613d4781613d21565b92915050565b600060208284031215613d6357613d626139f4565b5b6000613d7184828501613d38565b91505092915050565b60008060408385031215613d9157613d906139f4565b5b6000613d9f85828601613d38565b9250506020613db085828601613bb8565b9150509250929050565b600060ff82169050919050565b613dd081613dba565b82525050565b6000602082019050613deb6000830184613dc7565b92915050565b600060208284031215613e0757613e066139f4565b5b6000613e1584828501613bb8565b91505092915050565b613e2781613a7e565b8114613e3257600080fd5b50565b600081359050613e4481613e1e565b92915050565b600080600060608486031215613e6357613e626139f4565b5b6000613e7186828701613bee565b9350506020613e8286828701613bee565b9250506040613e9386828701613e35565b9150509250925092565b613ea681613b8f565b82525050565b6000602082019050613ec16000830184613e9d565b92915050565b60008060408385031215613ede57613edd6139f4565b5b6000613eec85828601613d38565b9250506020613efd85828601613bee565b9150509250929050565b613f1081613dba565b8114613f1b57600080fd5b50565b600081359050613f2d81613f07565b92915050565b600080600080600080600060e0888a031215613f5257613f516139f4565b5b6000613f608a828b01613bb8565b9750506020613f718a828b01613bb8565b9650506040613f828a828b01613bee565b9550506060613f938a828b01613bee565b9450506080613fa48a828b01613f1e565b93505060a0613fb58a828b01613d38565b92505060c0613fc68a828b01613d38565b91505092959891949750929550565b60008060408385031215613fec57613feb6139f4565b5b6000613ffa85828601613bb8565b925050602061400b85828601613bb8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405c57607f821691505b602082108114156140705761406f614015565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006140d2602f83613abf565b91506140dd82614076565b604082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b7f4d7573742068617665206d696e74657220726f6c650000000000000000000000600082015250565b600061413e601583613abf565b915061414982614108565b602082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f4d7573742068617665207265626173657220726f6c6500000000000000000000600082015250565b60006141aa601683613abf565b91506141b582614174565b602082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b60006060820190506141f56000830186613c43565b6142026020830185613c43565b61420f6040830184613c43565b949350505050565b7f47454747532f7065726d69742d65787069726564000000000000000000000000600082015250565b600061424d601483613abf565b915061425882614217565b602082019050919050565b6000602082019050818103600083015261427c81614240565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142bd82613bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f0576142ef614283565b5b600182019050919050565b600060c0820190506143106000830189613c77565b61431d6020830188613e9d565b61432a6040830187613e9d565b6143376060830186613c43565b6143446080830185613c43565b61435160a0830184613c43565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061439d60028361435c565b91506143a882614367565b600282019050919050565b6000819050919050565b6143ce6143c982613c6d565b6143b3565b82525050565b60006143df82614390565b91506143eb82856143bd565b6020820191506143fb82846143bd565b6020820191508190509392505050565b7f47454747532f696e76616c69642d616464726573732d30000000000000000000600082015250565b6000614441601783613abf565b915061444c8261440b565b602082019050919050565b6000602082019050818103600083015261447081614434565b9050919050565b600060808201905061448c6000830187613c77565b6144996020830186613dc7565b6144a66040830185613c77565b6144b36060830184613c77565b95945050505050565b7f47454747532f696e76616c69642d7065726d6974000000000000000000000000600082015250565b60006144f2601483613abf565b91506144fd826144bc565b602082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614584602683613abf565b915061458f82614528565b604082019050919050565b600060208201905081810360008301526145b381614577565b9050919050565b60006145c582613bcd565b91506145d083613bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460957614608614283565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061464e82613bcd565b915061465983613bcd565b92508261466957614668614614565b5b828204905092915050565b600061467f82613bcd565b915061468a83613bcd565b92508282101561469d5761469c614283565b5b828203905092915050565b60006146b382613bcd565b91506146be83613bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146f3576146f2614283565b5b828201905092915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b6000614734601a83613abf565b915061473f826146fe565b602082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b600060408201905061477f6000830185613e9d565b61478c6020830184613c43565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147c9602083613abf565b91506147d482614793565b602082019050919050565b600060208201905081810360008301526147f8816147bc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614835601d83613abf565b9150614840826147ff565b602082019050919050565b6000602082019050818103600083015261486481614828565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148c7602183613abf565b91506148d28261486b565b604082019050919050565b600060208201905081810360008301526148f6816148ba565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614959602283613abf565b9150614964826148fd565b604082019050919050565b600060208201905081810360008301526149888161494c565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006149c560178361435c565b91506149d08261498f565b601782019050919050565b60006149e682613ab4565b6149f0818561435c565b9350614a00818560208601613ad0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614a4260118361435c565b9150614a4d82614a0c565b601182019050919050565b6000614a63826149b8565b9150614a6f82856149db565b9150614a7a82614a35565b9150614a8682846149db565b91508190509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613abf565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613abf565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614bf481613e1e565b92915050565b600060208284031215614c1057614c0f6139f4565b5b6000614c1e84828501614be5565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c83602a83613abf565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000614cf382613bcd565b91506000821415614d0757614d06614283565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614d48602083613abf565b9150614d5382614d12565b602082019050919050565b60006020820190508181036000830152614d7781614d3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614e09602683613abf565b9150614e1482614dad565b604082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b600081519050919050565b600081905092915050565b6000614e6082614e3f565b614e6a8185614e4a565b9350614e7a818560208601613ad0565b80840191505092915050565b6000614e928284614e55565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614ed3601d83613abf565b9150614ede82614e9d565b602082019050919050565b60006020820190508181036000830152614f0281614ec6565b905091905056fea2646970667358221220348ba7ca2ceb88968dc33941f1fae5b5914229da0f275321d6ec71a4e626426b64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061027f5760003560e01c8063739eb2c61161015c578063a217fddf116100ce578063d539139311610087578063d53913931461084e578063d547741f1461086c578063dd62ed3e14610888578063ec342ad0146108b8578063f2fde38b146108d6578063f455cb3b146108f25761027f565b8063a217fddf14610754578063a457c2d714610772578063a9059cbb146107a2578063ca15c873146107d2578063cea9d26f14610802578063d505accf146108325761027f565b80638da5cb5b116101205780638da5cb5b1461066a5780639010d07c14610688578063917505f4146106b857806391d14854146106e857806395d89b411461071857806397d63f93146107365761027f565b8063739eb2c6146105b257806379cc6790146105d05780637af548c1146105ec5780637ecebe001461061c57806383eb70e51461064c5761027f565b8063313ce567116101f55780633af9e669116101b95780633af9e669146104de57806340c10f191461050e57806342966c681461053e57806364dd48f51461055a57806370a0823114610578578063715018a6146105a85761027f565b8063313ce56714610426578063336d2692146104445780633644e5151461047457806336568abe1461049257806339509351146104ae5761027f565b806320606b701161024757806320606b701461033e578063222d52ee1461035c57806323b872dd1461038c578063248a9ca3146103bc5780632f2ff15d146103ec57806330adf81f146104085761027f565b806301ffc9a71461028457806306fdde03146102b4578063095ea7b3146102d257806311d3e6c41461030257806318160ddd14610320575b600080fd5b61029e60048036038101906102999190613a51565b610922565b6040516102ab9190613a99565b60405180910390f35b6102bc61099c565b6040516102c99190613b4d565b60405180910390f35b6102ec60048036038101906102e79190613c03565b610a2e565b6040516102f99190613a99565b60405180910390f35b61030a610b20565b6040516103179190613c52565b60405180910390f35b610328610b2f565b6040516103359190613c52565b60405180910390f35b610346610b39565b6040516103539190613c86565b60405180910390f35b61037660048036038101906103719190613ca1565b610b5d565b6040516103839190613c52565b60405180910390f35b6103a660048036038101906103a19190613cce565b610b6f565b6040516103b39190613a99565b60405180910390f35b6103d660048036038101906103d19190613d4d565b610e9d565b6040516103e39190613c86565b60405180910390f35b61040660048036038101906104019190613d7a565b610ebc565b005b610410610edd565b60405161041d9190613c86565b60405180910390f35b61042e610f04565b60405161043b9190613dd6565b60405180910390f35b61045e60048036038101906104599190613c03565b610f0d565b60405161046b9190613a99565b60405180910390f35b61047c611125565b6040516104899190613c86565b60405180910390f35b6104ac60048036038101906104a79190613d7a565b61112b565b005b6104c860048036038101906104c39190613c03565b6111ae565b6040516104d59190613a99565b60405180910390f35b6104f860048036038101906104f39190613df1565b6113aa565b6040516105059190613c52565b60405180910390f35b61052860048036038101906105239190613c03565b6113f3565b6040516105359190613a99565b60405180910390f35b61055860048036038101906105539190613ca1565b611479565b005b610562611485565b60405161056f9190613c52565b60405180910390f35b610592600480360381019061058d9190613df1565b611493565b60405161059f9190613c52565b60405180910390f35b6105b06114e4565b005b6105ba6114f8565b6040516105c79190613c52565b60405180910390f35b6105ea60048036038101906105e59190613c03565b6114fe565b005b61060660048036038101906106019190613e4a565b61151e565b6040516106139190613c52565b60405180910390f35b61063660048036038101906106319190613df1565b611717565b6040516106439190613c52565b60405180910390f35b61065461172f565b6040516106619190613c86565b60405180910390f35b610672611753565b60405161067f9190613eac565b60405180910390f35b6106a2600480360381019061069d9190613ec7565b61177d565b6040516106af9190613eac565b60405180910390f35b6106d260048036038101906106cd9190613c03565b6117ac565b6040516106df9190613a99565b60405180910390f35b61070260048036038101906106fd9190613d7a565b611832565b60405161070f9190613a99565b60405180910390f35b61072061189c565b60405161072d9190613b4d565b60405180910390f35b61073e61192e565b60405161074b9190613c52565b60405180910390f35b61075c611934565b6040516107699190613c86565b60405180910390f35b61078c60048036038101906107879190613c03565b61193b565b6040516107999190613a99565b60405180910390f35b6107bc60048036038101906107b79190613c03565b611bcb565b6040516107c99190613a99565b60405180910390f35b6107ec60048036038101906107e79190613d4d565b611de9565b6040516107f99190613c52565b60405180910390f35b61081c60048036038101906108179190613cce565b611e0d565b6040516108299190613a99565b60405180910390f35b61084c60048036038101906108479190613f33565b611e2d565b005b610856612161565b6040516108639190613c86565b60405180910390f35b61088660048036038101906108819190613d7a565b612185565b005b6108a2600480360381019061089d9190613fd5565b6121a6565b6040516108af9190613c52565b60405180910390f35b6108c061222d565b6040516108cd9190613c52565b60405180910390f35b6108f060048036038101906108eb9190613df1565b612239565b005b61090c60048036038101906109079190613ca1565b6122bd565b6040516109199190613c52565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099557506109948261240b565b5b9050919050565b6060600580546109ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546109d790614044565b8015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b600081600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b0e9190613c52565b60405180910390a36001905092915050565b6000610b2a612485565b905090565b6000600f54905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610b68826124ba565b9050919050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bac57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be557600080fd5b610c7483600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610cff8461250a565b9050610d5381600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de881600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610e889190613c52565b60405180910390a36001925050509392505050565b6000806000838152602001908152602001600020600101549050919050565b610ec582610e9d565b610ece8161255a565b610ed8838361256e565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b60006012905090565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4a57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f8357600080fd5b610fd583600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061106a83600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611105866124ba565b6040516111129190613c52565b60405180910390a3600191505092915050565b600c5481565b6111336125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906140e8565b60405180910390fd5b6111aa82826125aa565b5050565b600061123f82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040516113989190613c52565b60405180910390a36001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006114267f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66114216125a2565b611832565b611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90614154565b60405180910390fd5b61146f83836125de565b6001905092915050565b611482816127a6565b50565b69d3c21bcecceda100000081565b60006114dd600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124ba565b9050919050565b6114ec612921565b6114f6600061299f565b565b60085481565b6115108261150a6125a2565b83612a65565b61151a8282612af1565b5050565b60006115517f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7561154c6125a2565b611832565b611590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611587906141c0565b60405180910390fd5b60008314156115e2577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0846008546008546040516115d0939291906141e0565b60405180910390a1600f549050611710565b600060085490508261164257611637670de0b6b3a764000061162961161887670de0b6b3a76400006124f490919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b6008819055506116bb565b600061168d670de0b6b3a764000061167f61166e88670de0b6b3a764000061254490919063ffffffff16565b6008546122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050611697612485565b8110156116aa57806008819055506116b9565b6116b2612485565b6008819055505b505b6116c6600b546124ba565b600f819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c08582600854604051611701939291906141e0565b60405180910390a1600f549150505b9392505050565b600d6020528060005260406000206000915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006117a48260016000868152602001908152602001600020612cc190919063ffffffff16565b905092915050565b60006117df7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66117da6125a2565b611832565b61181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614154565b60405180910390fd5b6118288383612cdb565b6001905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600680546118ab90614044565b80601f01602080910402602001604051908101604052809291908181526020018280546118d790614044565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b600b5481565b6000801b81565b600080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808310611a4b576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611adf565b611a5e83826124f490919063ffffffff16565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611bb89190613c52565b60405180910390a3600191505092915050565b600082600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0857600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c4157600080fd5b6000611c4c8461250a565b9050611ca081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d3581600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611dd59190613c52565b60405180910390a360019250505092915050565b6000611e0660016000848152602001908152602001600020612ea3565b9050919050565b6000611e17612921565b611e22848484612eb8565b600190509392505050565b83421115611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614263565b60405180910390fd5b6000600c547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600d60008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611eec906142b2565b919050558a604051602001611f06969594939291906142fb565b60405160208183030381529060405280519060200120604051602001611f2d9291906143d4565b604051602081830303815290604052805190602001209050600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fac90614457565b60405180910390fd5b60018185858560405160008152602001604052604051611fd89493929190614477565b6020604051602081039080840390855afa158015611ffa573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614508565b60405180910390fd5b85600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258860405161214f9190613c52565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61218e82610e9d565b6121978161255a565b6121a183836125aa565b505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b670de0b6b3a764000081565b612241612921565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a89061459a565b60405180910390fd5b6122ba8161299f565b50565b60006122c88261250a565b9050919050565b600081836122dd91906145ba565b905092915050565b600081836122f39190614643565b905092915050565b6123058282611832565b6123d757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061237c6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000612403836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612f3e565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247e575061247d82612fae565b5b9050919050565b6000600b547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6124b59190614643565b905090565b60006124ed69d3c21bcecceda10000006124df600854856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b600081836125029190614674565b905092915050565b600061253d60085461252f69d3c21bcecceda1000000856122cf90919063ffffffff16565b6122e590919063ffffffff16565b9050919050565b6000818361255291906146a8565b905092915050565b61256b816125666125a2565b613018565b50565b61257882826122fb565b61259d81600160008581526020019081526020016000206123db90919063ffffffff16565b505050565b600033905090565b6125b4828261309d565b6125d9816001600085815260200190815260200160002061317e90919063ffffffff16565b505050565b6125f381600f5461254490919063ffffffff16565b600f8190555060006126048261250a565b905061261b81600b5461254490919063ffffffff16565b600b81905550612629612485565b600854111561266d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126649061474a565b60405180910390fd5b6126bf81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885838360405161273392919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127999190613c52565b60405180910390a3505050565b6127bb81600f546124f490919063ffffffff16565b600f8190555060006127cc8261250a565b90506127e381600b546124f490919063ffffffff16565b600b8190555061283b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124f490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca533836040516128af92919061476a565b60405180910390a1600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129159190613c52565b60405180910390a35050565b6129296125a2565b73ffffffffffffffffffffffffffffffffffffffff16612947611753565b73ffffffffffffffffffffffffffffffffffffffff161461299d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612994906147df565b60405180910390fd5b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a7184846121a6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612aeb5781811015612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad49061484b565b60405180910390fd5b612aea84848484036131ae565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b58906148dd565b60405180910390fd5b612b6d82600083613379565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb9061496f565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ca89190613c52565b60405180910390a3612cbc8360008461337e565b505050565b6000612cd08360000183613383565b60001c905092915050565b612cf081600b5461254490919063ffffffff16565b600b819055506000612d01826124ba565b9050612d1881600f5461254490919063ffffffff16565b600f81905550612d26612485565b6008541115612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d619061474a565b60405180910390fd5b612dbc82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254490919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858382604051612e3092919061476a565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612e969190613c52565b60405180910390a3505050565b6000612eb1826000016133ae565b9050919050565b612f398363a9059cbb60e01b8484604051602401612ed792919061476a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133bf565b505050565b6000612f4a8383613486565b612fa3578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612fa8565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130228282611832565b6130995761302f816134a9565b61303d8360001c60206134d6565b60405160200161304e929190614a58565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130909190613b4d565b60405180910390fd5b5050565b6130a78282611832565b1561317a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061311f6125a2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006131a6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613712565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590614b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328590614b96565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161336c9190613c52565b60405180910390a3505050565b505050565b505050565b600082600001828154811061339b5761339a614bb6565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000613421826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138269092919063ffffffff16565b905060008151111561348157808060200190518101906134419190614bfa565b613480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347790614c99565b60405180910390fd5b5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b60606134cf8273ffffffffffffffffffffffffffffffffffffffff16601460ff166134d6565b9050919050565b6060600060028360026134e991906145ba565b6134f391906146a8565b67ffffffffffffffff81111561350c5761350b614cb9565b5b6040519080825280601f01601f19166020018201604052801561353e5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061357657613575614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135da576135d9614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261361a91906145ba565b61362491906146a8565b90505b60018111156136c4577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061366657613665614bb6565b5b1a60f81b82828151811061367d5761367c614bb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136bd90614ce8565b9050613627565b5060008414613708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff90614d5e565b60405180910390fd5b8091505092915050565b6000808360010160008481526020019081526020016000205490506000811461381a5760006001826137449190614674565b905060006001866000018054905061375c9190614674565b90508181146137cb57600086600001828154811061377d5761377c614bb6565b5b90600052602060002001549050808760000184815481106137a1576137a0614bb6565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137df576137de614d7e565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613820565b60009150505b92915050565b6060613835848460008561383e565b90509392505050565b606082471015613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a90614e1f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516138ac9190614e86565b60006040518083038185875af1925050503d80600081146138e9576040519150601f19603f3d011682016040523d82523d6000602084013e6138ee565b606091505b50915091506138ff8783838761390b565b92505050949350505050565b6060831561396e576000835114156139665761392685613981565b613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90614ee9565b60405180910390fd5b5b829050613979565b61397883836139a4565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156139b75781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139eb9190613b4d565b60405180910390fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a2e816139f9565b8114613a3957600080fd5b50565b600081359050613a4b81613a25565b92915050565b600060208284031215613a6757613a666139f4565b5b6000613a7584828501613a3c565b91505092915050565b60008115159050919050565b613a9381613a7e565b82525050565b6000602082019050613aae6000830184613a8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613aee578082015181840152602081019050613ad3565b83811115613afd576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b1f82613ab4565b613b298185613abf565b9350613b39818560208601613ad0565b613b4281613b03565b840191505092915050565b60006020820190508181036000830152613b678184613b14565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9a82613b6f565b9050919050565b613baa81613b8f565b8114613bb557600080fd5b50565b600081359050613bc781613ba1565b92915050565b6000819050919050565b613be081613bcd565b8114613beb57600080fd5b50565b600081359050613bfd81613bd7565b92915050565b60008060408385031215613c1a57613c196139f4565b5b6000613c2885828601613bb8565b9250506020613c3985828601613bee565b9150509250929050565b613c4c81613bcd565b82525050565b6000602082019050613c676000830184613c43565b92915050565b6000819050919050565b613c8081613c6d565b82525050565b6000602082019050613c9b6000830184613c77565b92915050565b600060208284031215613cb757613cb66139f4565b5b6000613cc584828501613bee565b91505092915050565b600080600060608486031215613ce757613ce66139f4565b5b6000613cf586828701613bb8565b9350506020613d0686828701613bb8565b9250506040613d1786828701613bee565b9150509250925092565b613d2a81613c6d565b8114613d3557600080fd5b50565b600081359050613d4781613d21565b92915050565b600060208284031215613d6357613d626139f4565b5b6000613d7184828501613d38565b91505092915050565b60008060408385031215613d9157613d906139f4565b5b6000613d9f85828601613d38565b9250506020613db085828601613bb8565b9150509250929050565b600060ff82169050919050565b613dd081613dba565b82525050565b6000602082019050613deb6000830184613dc7565b92915050565b600060208284031215613e0757613e066139f4565b5b6000613e1584828501613bb8565b91505092915050565b613e2781613a7e565b8114613e3257600080fd5b50565b600081359050613e4481613e1e565b92915050565b600080600060608486031215613e6357613e626139f4565b5b6000613e7186828701613bee565b9350506020613e8286828701613bee565b9250506040613e9386828701613e35565b9150509250925092565b613ea681613b8f565b82525050565b6000602082019050613ec16000830184613e9d565b92915050565b60008060408385031215613ede57613edd6139f4565b5b6000613eec85828601613d38565b9250506020613efd85828601613bee565b9150509250929050565b613f1081613dba565b8114613f1b57600080fd5b50565b600081359050613f2d81613f07565b92915050565b600080600080600080600060e0888a031215613f5257613f516139f4565b5b6000613f608a828b01613bb8565b9750506020613f718a828b01613bb8565b9650506040613f828a828b01613bee565b9550506060613f938a828b01613bee565b9450506080613fa48a828b01613f1e565b93505060a0613fb58a828b01613d38565b92505060c0613fc68a828b01613d38565b91505092959891949750929550565b60008060408385031215613fec57613feb6139f4565b5b6000613ffa85828601613bb8565b925050602061400b85828601613bb8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405c57607f821691505b602082108114156140705761406f614015565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006140d2602f83613abf565b91506140dd82614076565b604082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b7f4d7573742068617665206d696e74657220726f6c650000000000000000000000600082015250565b600061413e601583613abf565b915061414982614108565b602082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f4d7573742068617665207265626173657220726f6c6500000000000000000000600082015250565b60006141aa601683613abf565b91506141b582614174565b602082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b60006060820190506141f56000830186613c43565b6142026020830185613c43565b61420f6040830184613c43565b949350505050565b7f47454747532f7065726d69742d65787069726564000000000000000000000000600082015250565b600061424d601483613abf565b915061425882614217565b602082019050919050565b6000602082019050818103600083015261427c81614240565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142bd82613bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f0576142ef614283565b5b600182019050919050565b600060c0820190506143106000830189613c77565b61431d6020830188613e9d565b61432a6040830187613e9d565b6143376060830186613c43565b6143446080830185613c43565b61435160a0830184613c43565b979650505050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061439d60028361435c565b91506143a882614367565b600282019050919050565b6000819050919050565b6143ce6143c982613c6d565b6143b3565b82525050565b60006143df82614390565b91506143eb82856143bd565b6020820191506143fb82846143bd565b6020820191508190509392505050565b7f47454747532f696e76616c69642d616464726573732d30000000000000000000600082015250565b6000614441601783613abf565b915061444c8261440b565b602082019050919050565b6000602082019050818103600083015261447081614434565b9050919050565b600060808201905061448c6000830187613c77565b6144996020830186613dc7565b6144a66040830185613c77565b6144b36060830184613c77565b95945050505050565b7f47454747532f696e76616c69642d7065726d6974000000000000000000000000600082015250565b60006144f2601483613abf565b91506144fd826144bc565b602082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614584602683613abf565b915061458f82614528565b604082019050919050565b600060208201905081810360008301526145b381614577565b9050919050565b60006145c582613bcd565b91506145d083613bcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460957614608614283565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061464e82613bcd565b915061465983613bcd565b92508261466957614668614614565b5b828204905092915050565b600061467f82613bcd565b915061468a83613bcd565b92508282101561469d5761469c614283565b5b828203905092915050565b60006146b382613bcd565b91506146be83613bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146f3576146f2614283565b5b828201905092915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f77000000000000600082015250565b6000614734601a83613abf565b915061473f826146fe565b602082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b600060408201905061477f6000830185613e9d565b61478c6020830184613c43565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147c9602083613abf565b91506147d482614793565b602082019050919050565b600060208201905081810360008301526147f8816147bc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614835601d83613abf565b9150614840826147ff565b602082019050919050565b6000602082019050818103600083015261486481614828565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148c7602183613abf565b91506148d28261486b565b604082019050919050565b600060208201905081810360008301526148f6816148ba565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614959602283613abf565b9150614964826148fd565b604082019050919050565b600060208201905081810360008301526149888161494c565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006149c560178361435c565b91506149d08261498f565b601782019050919050565b60006149e682613ab4565b6149f0818561435c565b9350614a00818560208601613ad0565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614a4260118361435c565b9150614a4d82614a0c565b601182019050919050565b6000614a63826149b8565b9150614a6f82856149db565b9150614a7a82614a35565b9150614a8682846149db565b91508190509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614aee602483613abf565b9150614af982614a92565b604082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b80602283613abf565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614bf481613e1e565b92915050565b600060208284031215614c1057614c0f6139f4565b5b6000614c1e84828501614be5565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614c83602a83613abf565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000614cf382613bcd565b91506000821415614d0757614d06614283565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000614d48602083613abf565b9150614d5382614d12565b602082019050919050565b60006020820190508181036000830152614d7781614d3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614e09602683613abf565b9150614e1482614dad565b604082019050919050565b60006020820190508181036000830152614e3881614dfc565b9050919050565b600081519050919050565b600081905092915050565b6000614e6082614e3f565b614e6a8185614e4a565b9350614e7a818560208601613ad0565b80840191505092915050565b6000614e928284614e55565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614ed3601d83613abf565b9150614ede82614e9d565b602082019050919050565b60006020820190508181036000830152614f0281614ec6565b905091905056fea2646970667358221220348ba7ca2ceb88968dc33941f1fae5b5914229da0f275321d6ec71a4e626426b64736f6c63430008090033

Deployed Bytecode Sourcemap

98136:14765:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46340:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69943:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107778:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100247:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100065:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99289:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112071:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105468:614;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41658:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42149:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99011:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70905:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103738:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99135:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43375:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108402:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106521:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100792:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101827:78;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98442:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106203:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50356:103;;;:::i;:::-;;98688:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82540:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110745:1318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99175:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82966:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49708:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47229:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102563:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40081:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70162:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98872:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39110:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109086:612;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104437:769;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47606:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;112653:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109743:994;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82897:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42630:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106944:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98560:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50614:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112194:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46340:290;46470:4;46527:42;46512:57;;;:11;:57;;;;:110;;;;46586:36;46610:11;46586:23;:36::i;:::-;46512:110;46492:130;;46340:290;;;:::o;69943:100::-;69997:13;70030:5;70023:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69943:100;:::o;107778:251::-;107879:4;107942:5;107901:17;:29;107919:10;107901:29;;;;;;;;;;;;;;;:38;107931:7;107901:38;;;;;;;;;;;;;;;:46;;;;107984:7;107963:36;;107972:10;107963:36;;;107993:5;107963:36;;;;;;:::i;:::-;;;;;;;;108017:4;108010:11;;107778:251;;;;:::o;100247:105::-;100298:7;100325:19;:17;:19::i;:::-;100318:26;;100247:105;:::o;100065:100::-;100118:7;100145:12;;100138:19;;100065:100;:::o;99289:155::-;99340:104;99289:155;:::o;112071:115::-;112130:7;112157:21;112173:4;112157:15;:21::i;:::-;112150:28;;112071:115;;;:::o;105468:614::-;105609:4;105596:2;99615:3;99601:18;;:2;:18;;;;99593:27;;;;;;99653:4;99639:19;;:2;:19;;;;99631:28;;;;;;105695:70:::1;105759:5;105695:17;:23;105713:4;105695:23;;;;;;;;;;;;;;;:59;105733:10;105695:59;;;;;;;;;;;;;;;;:63;;:70;;;;:::i;:::-;105657:17;:23;105675:4;105657:23;;;;;;;;;;;;;;;:35;105681:10;105657:35;;;;;;;;;;;;;;;:108;;;;105809:17;105829:22;105845:5;105829:15;:22::i;:::-;105809:42;;105912:34;105936:9;105912:13;:19;105926:4;105912:19;;;;;;;;;;;;;;;;:23;;:34;;;;:::i;:::-;105890:13;:19;105904:4;105890:19;;;;;;;;;;;;;;;:56;;;;105977:32;105999:9;105977:13;:17;105991:2;105977:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;105957:13;:17;105971:2;105957:17;;;;;;;;;;;;;;;:52;;;;106040:2;106025:25;;106034:4;106025:25;;;106044:5;106025:25;;;;;;:::i;:::-;;;;;;;;106070:4;106063:11;;;105468:614:::0;;;;;;:::o;41658:181::-;41777:7;41809:6;:12;41816:4;41809:12;;;;;;;;;;;:22;;;41802:29;;41658:181;;;:::o;42149:188::-;42268:18;42281:4;42268:12;:18::i;:::-;39601:16;39612:4;39601:10;:16::i;:::-;42304:25:::1;42315:4;42321:7;42304:10;:25::i;:::-;42149:188:::0;;;:::o;99011:117::-;99062:66;99011:117;;;:::o;70905:93::-;70963:5;70988:2;70981:9;;70905:93;:::o;103738:436::-;103855:4;103833:2;99615:3;99601:18;;:2;:18;;;;99593:27;;;;;;99653:4;99639:19;;:2;:19;;;;99631:28;;;;;;103944:36:::1;103974:5;103944:13;:25;103958:10;103944:25;;;;;;;;;;;;;;;;:29;;:36;;;;:::i;:::-;103916:13;:25;103930:10;103916:25;;;;;;;;;;;;;;;:64;;;;104052:28;104074:5;104052:13;:17;104066:2;104052:17;;;;;;;;;;;;;;;;:21;;:28;;;;:::i;:::-;104032:13;:17;104046:2;104032:17;;;;;;;;;;;;;;;:48;;;;104117:2;104096:48;;104105:10;104096:48;;;104121:22;104137:5;104121:15;:22::i;:::-;104096:48;;;;;;:::i;:::-;;;;;;;;104162:4;104155:11;;103738:436:::0;;;;;:::o;99135:31::-;;;;:::o;43375:287::-;43528:12;:10;:12::i;:::-;43517:23;;:7;:23;;;43495:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;43628:26;43640:4;43646:7;43628:11;:26::i;:::-;43375:287;;:::o;108402:422::-;108518:4;108581:78;108648:10;108581:17;:29;108599:10;108581:29;;;;;;;;;;;;;;;:62;108625:7;108581:62;;;;;;;;;;;;;;;;:66;;:78;;;;:::i;:::-;108540:17;:29;108558:10;108540:29;;;;;;;;;;;;;;;:38;108570:7;108540:38;;;;;;;;;;;;;;;:119;;;;108723:7;108675:119;;108698:10;108675:119;;;108745:17;:29;108763:10;108745:29;;;;;;;;;;;;;;;:38;108775:7;108745:38;;;;;;;;;;;;;;;;108675:119;;;;;;:::i;:::-;;;;;;;;108812:4;108805:11;;108402:422;;;;:::o;106521:116::-;106584:7;106611:13;:18;106625:3;106611:18;;;;;;;;;;;;;;;;106604:25;;106521:116;;;:::o;100792:205::-;100852:4;100877:34;82935:24;100898:12;:10;:12::i;:::-;100877:7;:34::i;:::-;100869:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100950:17;100956:2;100960:6;100950:5;:17::i;:::-;100985:4;100978:11;;100792:205;;;;:::o;101827:78::-;101884:13;101890:6;101884:5;:13::i;:::-;101827:78;:::o;98442:49::-;98485:6;98442:49;:::o;106203:132::-;106265:7;106292:35;106308:13;:18;106322:3;106308:18;;;;;;;;;;;;;;;;106292:15;:35::i;:::-;106285:42;;106203:132;;;:::o;50356:103::-;49594:13;:11;:13::i;:::-;50421:30:::1;50448:1;50421:18;:30::i;:::-;50356:103::o:0;98688:33::-;;;;:::o;82540:164::-;82617:46;82633:7;82642:12;:10;:12::i;:::-;82656:6;82617:15;:46::i;:::-;82674:22;82680:7;82689:6;82674:5;:22::i;:::-;82540:164;;:::o;110745:1318::-;110861:7;110889:35;83005:25;110911:12;:10;:12::i;:::-;110889:7;:35::i;:::-;110881:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;111004:1;110990:10;:15;110986:140;;;111027:53;111034:5;111041:18;;111061;;111027:53;;;;;;;;:::i;:::-;;;;;;;;111102:12;;111095:19;;;;110986:140;111161:30;111194:18;;111161:51;;111230:8;111225:628;;111333:90;98591:6;111333:62;111374:20;111383:10;98591:6;111374:8;;:20;;;;:::i;:::-;111333:18;;:40;;:62;;;;:::i;:::-;:84;;:90;;;;:::i;:::-;111312:18;:111;;;;111225:628;;;111513:24;111540:90;98591:6;111540:62;111581:20;111590:10;98591:6;111581:8;;:20;;;;:::i;:::-;111540:18;;:40;;:62;;;;:::i;:::-;:84;;:90;;;;:::i;:::-;111513:117;;111668:19;:17;:19::i;:::-;111649:16;:38;111645:197;;;111729:16;111708:18;:37;;;;111645:197;;;111807:19;:17;:19::i;:::-;111786:18;:40;;;;111645:197;111441:412;111225:628;111923:27;111939:10;;111923:15;:27::i;:::-;111908:12;:42;;;;111968:57;111975:5;111982:22;112006:18;;111968:57;;;;;;;;:::i;:::-;;;;;;;;112043:12;;112036:19;;;110745:1318;;;;;;:::o;99175:41::-;;;;;;;;;;;;;;;;;:::o;82966:64::-;83005:25;82966:64;:::o;49708:87::-;49754:7;49781:6;;;;;;;;;;;49774:13;;49708:87;:::o;47229:203::-;47364:7;47396:28;47418:5;47396:12;:18;47409:4;47396:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;47389:35;;47229:203;;;;:::o;102563:223::-;102631:4;102656:34;82935:24;102677:12;:10;:12::i;:::-;102656:7;:34::i;:::-;102648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;102729:27;102745:2;102749:6;102729:15;:27::i;:::-;102774:4;102767:11;;102563:223;;;;:::o;40081:197::-;40212:4;40241:6;:12;40248:4;40241:12;;;;;;;;;;;:20;;:29;40262:7;40241:29;;;;;;;;;;;;;;;;;;;;;;;;;40234:36;;40081:197;;;;:::o;70162:104::-;70218:13;70251:7;70244:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70162:104;:::o;98872:25::-;;;;:::o;39110:49::-;39155:4;39110:49;;;:::o;109086:612::-;109207:4;109229:16;109248:17;:29;109266:10;109248:29;;;;;;;;;;;;;;;:38;109278:7;109248:38;;;;;;;;;;;;;;;;109229:57;;109320:8;109301:15;:27;109297:237;;109386:1;109345:17;:29;109363:10;109345:29;;;;;;;;;;;;;;;:38;109375:7;109345:38;;;;;;;;;;;;;;;:42;;;;109297:237;;;109461:61;109492:15;109461:8;:12;;:61;;;;:::i;:::-;109420:17;:29;109438:10;109420:29;;;;;;;;;;;;;;;:38;109450:7;109420:38;;;;;;;;;;;;;;;:102;;;;109297:237;109597:7;109549:119;;109572:10;109549:119;;;109619:17;:29;109637:10;109619:29;;;;;;;;;;;;;;;:38;109649:7;109619:38;;;;;;;;;;;;;;;;109549:119;;;;;;:::i;:::-;;;;;;;;109686:4;109679:11;;;109086:612;;;;:::o;104437:769::-;104562:4;104540:2;99615:3;99601:18;;:2;:18;;;;99593:27;;;;;;99653:4;99639:19;;:2;:19;;;;99631:28;;;;;;104861:17:::1;104881:22;104897:5;104881:15;:22::i;:::-;104861:42;;104983:40;105013:9;104983:13;:25;104997:10;104983:25;;;;;;;;;;;;;;;;:29;;:40;;;;:::i;:::-;104955:13;:25;104969:10;104955:25;;;;;;;;;;;;;;;:68;;;;105095:32;105117:9;105095:13;:17;105109:2;105095:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;105075:13;:17;105089:2;105075:17;;;;;;;;;;;;;;;:52;;;;105164:2;105143:31;;105152:10;105143:31;;;105168:5;105143:31;;;;;;:::i;:::-;;;;;;;;105194:4;105187:11;;;104437:769:::0;;;;;:::o;47606:192::-;47731:7;47763:27;:12;:18;47776:4;47763:18;;;;;;;;;;;:25;:27::i;:::-;47756:34;;47606:192;;;:::o;112653:245::-;112778:4;49594:13;:11;:13::i;:::-;112819:49:::1;112849:5;112857:2;112861:6;112819:22;:49::i;:::-;112886:4;112879:11;;112653:245:::0;;;;;:::o;109743:994::-;109970:8;109951:15;:27;;109943:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;110016:14;110121:16;;99062:66;110225:15;;110267:5;110299:7;110333:5;110365:6;:13;110372:5;110365:13;;;;;;;;;;;;;;;;:15;;;;;;;;;:::i;:::-;;;;;110407:8;110188:250;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;110156:301;;;;;;110057:415;;;;;;;;;:::i;:::-;;;;;;;;;;;;;110033:450;;;;;;110016:467;;110521:1;110504:19;;:5;:19;;;;110496:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;110579:26;110589:6;110597:1;110600;110603;110579:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110570:35;;:5;:35;;;110562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;110677:5;110641:17;:24;110659:5;110641:24;;;;;;;;;;;;;;;:33;110666:7;110641:33;;;;;;;;;;;;;;;:41;;;;110714:7;110698:31;;110707:5;110698:31;;;110723:5;110698:31;;;;;;:::i;:::-;;;;;;;;109932:805;109743:994;;;;;;;:::o;82897:62::-;82935:24;82897:62;:::o;42630:190::-;42750:18;42763:4;42750:12;:18::i;:::-;39601:16;39612:4;39601:10;:16::i;:::-;42786:26:::1;42798:4;42804:7;42786:11;:26::i;:::-;42630:190:::0;;;:::o;106944:192::-;107062:7;107094:17;:25;107112:6;107094:25;;;;;;;;;;;;;;;:34;107120:7;107094:34;;;;;;;;;;;;;;;;107087:41;;106944:192;;;;:::o;98560:37::-;98591:6;98560:37;:::o;50614:238::-;49594:13;:11;:13::i;:::-;50737:1:::1;50717:22;;:8;:22;;;;50695:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;50816:28;50835:8;50816:18;:28::i;:::-;50614:238:::0;:::o;112194:117::-;112254:7;112281:22;112297:5;112281:15;:22::i;:::-;112274:29;;112194:117;;;:::o;92173:98::-;92231:7;92262:1;92258;:5;;;;:::i;:::-;92251:12;;92173:98;;;;:::o;92572:::-;92630:7;92661:1;92657;:5;;;;:::i;:::-;92650:12;;92572:98;;;;:::o;45041:238::-;45125:22;45133:4;45139:7;45125;:22::i;:::-;45120:152;;45196:4;45164:6;:12;45171:4;45164:12;;;;;;;;;;;:20;;:29;45185:7;45164:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;45247:12;:10;:12::i;:::-;45220:40;;45238:7;45220:40;;45232:4;45220:40;;;;;;;;;;45120:152;45041:238;;:::o;8833:175::-;8921:4;8950:50;8955:3;:10;;8991:5;8975:23;;8967:32;;8950:4;:50::i;:::-;8943:57;;8833:175;;;;:::o;39709:280::-;39839:4;39896:32;39881:47;;;:11;:47;;;;:100;;;;39945:36;39969:11;39945:23;:36::i;:::-;39881:100;39861:120;;39709:280;;;:::o;100360:315::-;100412:7;100657:10;;100650:2;100635:32;;;;:::i;:::-;100628:39;;100360:315;:::o;112319:147::-;112381:7;112408:50;98485:6;112408:28;112417:18;;112408:4;:8;;:28;;;;:::i;:::-;:32;;:50;;;;:::i;:::-;112401:57;;112319:147;;;:::o;91816:98::-;91874:7;91905:1;91901;:5;;;;:::i;:::-;91894:12;;91816:98;;;;:::o;112474:149::-;112537:7;112564:51;112596:18;;112564:27;98485:6;112564:5;:9;;:27;;;;:::i;:::-;:31;;:51;;;;:::i;:::-;112557:58;;112474:149;;;:::o;91435:98::-;91493:7;91524:1;91520;:5;;;;:::i;:::-;91513:12;;91435:98;;;;:::o;40582:105::-;40649:30;40660:4;40666:12;:10;:12::i;:::-;40649:10;:30::i;:::-;40582:105;:::o;47891:201::-;48011:31;48028:4;48034:7;48011:16;:31::i;:::-;48053;48076:7;48053:12;:18;48066:4;48053:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;47891:201;;:::o;36875:98::-;36928:7;36955:10;36948:17;;36875:98;:::o;48186:206::-;48307:32;48325:4;48331:7;48307:17;:32::i;:::-;48350:34;48376:7;48350:12;:18;48363:4;48350:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;48186:206;;:::o;101005:692::-;101125:24;101142:6;101125:12;;:16;;:24;;;;:::i;:::-;101110:12;:39;;;;101195:17;101215:23;101231:6;101215:15;:23::i;:::-;101195:43;;101296:25;101311:9;101296:10;;:14;;:25;;;;:::i;:::-;101283:10;:38;;;;101445:19;:17;:19::i;:::-;101423:18;;:41;;101401:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;101575:32;101597:9;101575:13;:17;101589:2;101575:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;101555:13;:17;101569:2;101555:17;;;;;;;;;;;;;;;:52;;;;101625:16;101630:2;101634:6;101625:16;;;;;;;:::i;:::-;;;;;;;;101678:2;101657:32;;101674:1;101657:32;;;101682:6;101657:32;;;;;;:::i;:::-;;;;;;;;101066:631;101005:692;;:::o;101913:509::-;102012:24;102029:6;102012:12;;:16;;:24;;;;:::i;:::-;101997:12;:39;;;;102082:17;102102:23;102118:6;102102:15;:23::i;:::-;102082:43;;102183:25;102198:9;102183:10;;:14;;:25;;;;:::i;:::-;102170:10;:38;;;;102278:40;102308:9;102278:13;:25;102292:10;102278:25;;;;;;;;;;;;;;;;:29;;:40;;;;:::i;:::-;102250:13;:25;102264:10;102250:25;;;;;;;;;;;;;;;:68;;;;102334:24;102339:10;102351:6;102334:24;;;;;;;:::i;:::-;;;;;;;;102403:1;102374:40;;102383:10;102374:40;;;102407:6;102374:40;;;;;;:::i;:::-;;;;;;;;101953:469;101913:509;:::o;49873:132::-;49948:12;:10;:12::i;:::-;49937:23;;:7;:5;:7::i;:::-;:23;;;49929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49873:132::o;51012:191::-;51086:16;51105:6;;;;;;;;;;;51086:25;;51131:8;51122:6;;:17;;;;;;;;;;;;;;;;;;51186:8;51155:40;;51176:8;51155:40;;;;;;;;;;;;51075:128;51012:191;:::o;79538:502::-;79673:24;79700:25;79710:5;79717:7;79700:9;:25::i;:::-;79673:52;;79760:17;79740:16;:37;79736:297;;79840:6;79820:16;:26;;79794:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;79955:51;79964:5;79971:7;79999:6;79980:16;:25;79955:8;:51::i;:::-;79736:297;79662:378;79538:502;;;:::o;77754:675::-;77857:1;77838:21;;:7;:21;;;;77830:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77910:49;77931:7;77948:1;77952:6;77910:20;:49::i;:::-;77972:22;77997:9;:18;78007:7;77997:18;;;;;;;;;;;;;;;;77972:43;;78052:6;78034:14;:24;;78026:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78171:6;78154:14;:23;78133:9;:18;78143:7;78133:18;;;;;;;;;;;;;;;:44;;;;78288:6;78272:12;;:22;;;;;;;;;;;78349:1;78323:37;;78332:7;78323:37;;;78353:6;78323:37;;;;;;:::i;:::-;;;;;;;;78373:48;78393:7;78410:1;78414:6;78373:19;:48::i;:::-;77819:610;77754:675;;:::o;10207:190::-;10308:7;10364:22;10368:3;:10;;10380:5;10364:3;:22::i;:::-;10356:31;;10333:56;;10207:190;;;;:::o;102794:706::-;102912:22;102927:6;102912:10;;:14;;:22;;;;:::i;:::-;102899:10;:35;;;;102978:20;103001:23;103017:6;103001:15;:23::i;:::-;102978:46;;103085:30;103102:12;103085;;:16;;:30;;;;:::i;:::-;103070:12;:45;;;;103239:19;:17;:19::i;:::-;103217:18;;:41;;103195:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;103369:29;103391:6;103369:13;:17;103383:2;103369:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;103349:13;:17;103363:2;103349:17;;;;;;;;;;;;;;;:49;;;;103416:22;103421:2;103425:12;103416:22;;;;;;;:::i;:::-;;;;;;;;103475:2;103454:38;;103471:1;103454:38;;;103479:12;103454:38;;;;;;:::i;:::-;;;;;;;;102856:644;102794:706;;:::o;9736:117::-;9799:7;9826:19;9834:3;:10;;9826:7;:19::i;:::-;9819:26;;9736:117;;;:::o;84041:248::-;84158:123;84192:5;84235:23;;;84260:2;84264:5;84212:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84158:19;:123::i;:::-;84041:248;;;:::o;2358:414::-;2421:4;2443:21;2453:3;2458:5;2443:9;:21::i;:::-;2438:327;;2481:3;:11;;2498:5;2481:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2664:3;:11;;:18;;;;2642:3;:12;;:19;2655:5;2642:19;;;;;;;;;;;:40;;;;2704:4;2697:11;;;;2438:327;2748:5;2741:12;;2358:414;;;;;:::o;15769:207::-;15899:4;15943:25;15928:40;;;:11;:40;;;;15921:47;;15769:207;;;:::o;40977:492::-;41066:22;41074:4;41080:7;41066;:22::i;:::-;41061:401;;41254:28;41274:7;41254:19;:28::i;:::-;41355:38;41383:4;41375:13;;41390:2;41355:19;:38::i;:::-;41159:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41105:345;;;;;;;;;;;:::i;:::-;;;;;;;;41061:401;40977:492;;:::o;45459:239::-;45543:22;45551:4;45557:7;45543;:22::i;:::-;45539:152;;;45614:5;45582:6;:12;45589:4;45582:12;;;;;;;;;;;:20;;:29;45603:7;45582:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;45666:12;:10;:12::i;:::-;45639:40;;45657:7;45639:40;;45651:4;45639:40;;;;;;;;;;45539:152;45459:239;;:::o;9184:181::-;9275:4;9304:53;9312:3;:10;;9348:5;9332:23;;9324:32;;9304:7;:53::i;:::-;9297:60;;9184:181;;;;:::o;78867:380::-;79020:1;79003:19;;:5;:19;;;;78995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79101:1;79082:21;;:7;:21;;;;79074:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79185:6;79155:11;:18;79167:5;79155:18;;;;;;;;;;;;;;;:27;79174:7;79155:27;;;;;;;;;;;;;;;:36;;;;79223:7;79207:32;;79216:5;79207:32;;;79232:6;79207:32;;;;;;:::i;:::-;;;;;;;;78867:380;;;:::o;80640:125::-;;;;:::o;81369:124::-;;;;:::o;5164:152::-;5258:7;5290:3;:11;;5302:5;5290:18;;;;;;;;:::i;:::-;;;;;;;;;;5283:25;;5164:152;;;;:::o;4701:109::-;4757:7;4784:3;:11;;:18;;;;4777:25;;4701:109;;;:::o;87539:802::-;87963:23;87989:106;88031:4;87989:106;;;;;;;;;;;;;;;;;87997:5;87989:27;;;;:106;;;;;:::i;:::-;87963:132;;88130:1;88110:10;:17;:21;88106:228;;;88225:10;88214:30;;;;;;;;;;;;:::i;:::-;88188:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;88106:228;87609:732;87539:802;;:::o;4454:161::-;4554:4;4606:1;4583:3;:12;;:19;4596:5;4583:19;;;;;;;;;;;;:24;;4576:31;;4454:161;;;;:::o;31420:151::-;31478:13;31511:52;31539:4;31523:22;;29543:2;31511:52;;:11;:52::i;:::-;31504:59;;31420:151;;;:::o;30784:479::-;30886:13;30917:19;30962:1;30953:6;30949:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30939:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30917:47;;30975:15;:6;30982:1;30975:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;31001;:6;31008:1;31001:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;31032:9;31057:1;31048:6;31044:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;31032:26;;31027:131;31064:1;31060;:5;31027:131;;;31099:8;31116:3;31108:5;:11;31099:21;;;;;;;:::i;:::-;;;;;31087:6;31094:1;31087:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;31145:1;31135:11;;;;;31067:3;;;;:::i;:::-;;;31027:131;;;;31185:1;31176:5;:10;31168:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31248:6;31234:21;;;30784:479;;;;:::o;2948:1420::-;3014:4;3132:18;3153:3;:12;;:19;3166:5;3153:19;;;;;;;;;;;;3132:40;;3203:1;3189:10;:15;3185:1176;;3564:21;3601:1;3588:10;:14;;;;:::i;:::-;3564:38;;3617:17;3658:1;3637:3;:11;;:18;;;;:22;;;;:::i;:::-;3617:42;;3693:13;3680:9;:26;3676:405;;3727:17;3747:3;:11;;3759:9;3747:22;;;;;;;;:::i;:::-;;;;;;;;;;3727:42;;3901:9;3872:3;:11;;3884:13;3872:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;4012:10;3986:3;:12;;:23;3999:9;3986:23;;;;;;;;;;;:36;;;;3708:373;3676:405;4162:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4257:3;:12;;:19;4270:5;4257:19;;;;;;;;;;;4250:26;;;4300:4;4293:11;;;;;;;3185:1176;4344:5;4337:12;;;2948:1420;;;;;:::o;55444:229::-;55581:12;55613:52;55635:6;55643:4;55649:1;55652:12;55613:21;:52::i;:::-;55606:59;;55444:229;;;;;:::o;56660:612::-;56830:12;56902:5;56877:21;:30;;56855:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;56985:12;56999:23;57026:6;:11;;57045:5;57066:4;57026:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56984:97;;;;57112:152;57157:6;57182:7;57208:10;57237:12;57112:26;:152::i;:::-;57092:172;;;;56660:612;;;;;;:::o;59795:644::-;59980:12;60009:7;60005:427;;;60058:1;60037:10;:17;:22;60033:290;;;60255:18;60266:6;60255:10;:18::i;:::-;60247:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;60033:290;60344:10;60337:17;;;;60005:427;60387:33;60395:10;60407:12;60387:7;:33::i;:::-;59795:644;;;;;;;:::o;52494:326::-;52554:4;52811:1;52789:7;:19;;;:23;52782:30;;52494:326;;;:::o;60981:575::-;61185:1;61165:10;:17;:21;61161:388;;;61397:10;61391:17;61454:15;61441:10;61437:2;61433:19;61426:44;61161:388;61524:12;61517:20;;;;;;;;;;;:::i;:::-;;;;;;;;88:117:1;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:77::-;4640:7;4669:5;4658:16;;4603:77;;;:::o;4686:118::-;4773:24;4791:5;4773:24;:::i;:::-;4768:3;4761:37;4686:118;;:::o;4810:222::-;4903:4;4941:2;4930:9;4926:18;4918:26;;4954:71;5022:1;5011:9;5007:17;4998:6;4954:71;:::i;:::-;4810:222;;;;:::o;5038:329::-;5097:6;5146:2;5134:9;5125:7;5121:23;5117:32;5114:119;;;5152:79;;:::i;:::-;5114:119;5272:1;5297:53;5342:7;5333:6;5322:9;5318:22;5297:53;:::i;:::-;5287:63;;5243:117;5038:329;;;;:::o;5373:619::-;5450:6;5458;5466;5515:2;5503:9;5494:7;5490:23;5486:32;5483:119;;;5521:79;;:::i;:::-;5483:119;5641:1;5666:53;5711:7;5702:6;5691:9;5687:22;5666:53;:::i;:::-;5656:63;;5612:117;5768:2;5794:53;5839:7;5830:6;5819:9;5815:22;5794:53;:::i;:::-;5784:63;;5739:118;5896:2;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5867:118;5373:619;;;;;:::o;5998:122::-;6071:24;6089:5;6071:24;:::i;:::-;6064:5;6061:35;6051:63;;6110:1;6107;6100:12;6051:63;5998:122;:::o;6126:139::-;6172:5;6210:6;6197:20;6188:29;;6226:33;6253:5;6226:33;:::i;:::-;6126:139;;;;:::o;6271:329::-;6330:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:119;;;6385:79;;:::i;:::-;6347:119;6505:1;6530:53;6575:7;6566:6;6555:9;6551:22;6530:53;:::i;:::-;6520:63;;6476:117;6271:329;;;;:::o;6606:474::-;6674:6;6682;6731:2;6719:9;6710:7;6706:23;6702:32;6699:119;;;6737:79;;:::i;:::-;6699:119;6857:1;6882:53;6927:7;6918:6;6907:9;6903:22;6882:53;:::i;:::-;6872:63;;6828:117;6984:2;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;:::i;:::-;7000:63;;6955:118;6606:474;;;;;:::o;7086:86::-;7121:7;7161:4;7154:5;7150:16;7139:27;;7086:86;;;:::o;7178:112::-;7261:22;7277:5;7261:22;:::i;:::-;7256:3;7249:35;7178:112;;:::o;7296:214::-;7385:4;7423:2;7412:9;7408:18;7400:26;;7436:67;7500:1;7489:9;7485:17;7476:6;7436:67;:::i;:::-;7296:214;;;;:::o;7516:329::-;7575:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:119;;;7630:79;;:::i;:::-;7592:119;7750:1;7775:53;7820:7;7811:6;7800:9;7796:22;7775:53;:::i;:::-;7765:63;;7721:117;7516:329;;;;:::o;7851:116::-;7921:21;7936:5;7921:21;:::i;:::-;7914:5;7911:32;7901:60;;7957:1;7954;7947:12;7901:60;7851:116;:::o;7973:133::-;8016:5;8054:6;8041:20;8032:29;;8070:30;8094:5;8070:30;:::i;:::-;7973:133;;;;:::o;8112:613::-;8186:6;8194;8202;8251:2;8239:9;8230:7;8226:23;8222:32;8219:119;;;8257:79;;:::i;:::-;8219:119;8377:1;8402:53;8447:7;8438:6;8427:9;8423:22;8402:53;:::i;:::-;8392:63;;8348:117;8504:2;8530:53;8575:7;8566:6;8555:9;8551:22;8530:53;:::i;:::-;8520:63;;8475:118;8632:2;8658:50;8700:7;8691:6;8680:9;8676:22;8658:50;:::i;:::-;8648:60;;8603:115;8112:613;;;;;:::o;8731:118::-;8818:24;8836:5;8818:24;:::i;:::-;8813:3;8806:37;8731:118;;:::o;8855:222::-;8948:4;8986:2;8975:9;8971:18;8963:26;;8999:71;9067:1;9056:9;9052:17;9043:6;8999:71;:::i;:::-;8855:222;;;;:::o;9083:474::-;9151:6;9159;9208:2;9196:9;9187:7;9183:23;9179:32;9176:119;;;9214:79;;:::i;:::-;9176:119;9334:1;9359:53;9404:7;9395:6;9384:9;9380:22;9359:53;:::i;:::-;9349:63;;9305:117;9461:2;9487:53;9532:7;9523:6;9512:9;9508:22;9487:53;:::i;:::-;9477:63;;9432:118;9083:474;;;;;:::o;9563:118::-;9634:22;9650:5;9634:22;:::i;:::-;9627:5;9624:33;9614:61;;9671:1;9668;9661:12;9614:61;9563:118;:::o;9687:135::-;9731:5;9769:6;9756:20;9747:29;;9785:31;9810:5;9785:31;:::i;:::-;9687:135;;;;:::o;9828:1199::-;9939:6;9947;9955;9963;9971;9979;9987;10036:3;10024:9;10015:7;10011:23;10007:33;10004:120;;;10043:79;;:::i;:::-;10004:120;10163:1;10188:53;10233:7;10224:6;10213:9;10209:22;10188:53;:::i;:::-;10178:63;;10134:117;10290:2;10316:53;10361:7;10352:6;10341:9;10337:22;10316:53;:::i;:::-;10306:63;;10261:118;10418:2;10444:53;10489:7;10480:6;10469:9;10465:22;10444:53;:::i;:::-;10434:63;;10389:118;10546:2;10572:53;10617:7;10608:6;10597:9;10593:22;10572:53;:::i;:::-;10562:63;;10517:118;10674:3;10701:51;10744:7;10735:6;10724:9;10720:22;10701:51;:::i;:::-;10691:61;;10645:117;10801:3;10828:53;10873:7;10864:6;10853:9;10849:22;10828:53;:::i;:::-;10818:63;;10772:119;10930:3;10957:53;11002:7;10993:6;10982:9;10978:22;10957:53;:::i;:::-;10947:63;;10901:119;9828:1199;;;;;;;;;;:::o;11033:474::-;11101:6;11109;11158:2;11146:9;11137:7;11133:23;11129:32;11126:119;;;11164:79;;:::i;:::-;11126:119;11284:1;11309:53;11354:7;11345:6;11334:9;11330:22;11309:53;:::i;:::-;11299:63;;11255:117;11411:2;11437:53;11482:7;11473:6;11462:9;11458:22;11437:53;:::i;:::-;11427:63;;11382:118;11033:474;;;;;:::o;11513:180::-;11561:77;11558:1;11551:88;11658:4;11655:1;11648:15;11682:4;11679:1;11672:15;11699:320;11743:6;11780:1;11774:4;11770:12;11760:22;;11827:1;11821:4;11817:12;11848:18;11838:81;;11904:4;11896:6;11892:17;11882:27;;11838:81;11966:2;11958:6;11955:14;11935:18;11932:38;11929:84;;;11985:18;;:::i;:::-;11929:84;11750:269;11699:320;;;:::o;12025:234::-;12165:34;12161:1;12153:6;12149:14;12142:58;12234:17;12229:2;12221:6;12217:15;12210:42;12025:234;:::o;12265:366::-;12407:3;12428:67;12492:2;12487:3;12428:67;:::i;:::-;12421:74;;12504:93;12593:3;12504:93;:::i;:::-;12622:2;12617:3;12613:12;12606:19;;12265:366;;;:::o;12637:419::-;12803:4;12841:2;12830:9;12826:18;12818:26;;12890:9;12884:4;12880:20;12876:1;12865:9;12861:17;12854:47;12918:131;13044:4;12918:131;:::i;:::-;12910:139;;12637:419;;;:::o;13062:171::-;13202:23;13198:1;13190:6;13186:14;13179:47;13062:171;:::o;13239:366::-;13381:3;13402:67;13466:2;13461:3;13402:67;:::i;:::-;13395:74;;13478:93;13567:3;13478:93;:::i;:::-;13596:2;13591:3;13587:12;13580:19;;13239:366;;;:::o;13611:419::-;13777:4;13815:2;13804:9;13800:18;13792:26;;13864:9;13858:4;13854:20;13850:1;13839:9;13835:17;13828:47;13892:131;14018:4;13892:131;:::i;:::-;13884:139;;13611:419;;;:::o;14036:172::-;14176:24;14172:1;14164:6;14160:14;14153:48;14036:172;:::o;14214:366::-;14356:3;14377:67;14441:2;14436:3;14377:67;:::i;:::-;14370:74;;14453:93;14542:3;14453:93;:::i;:::-;14571:2;14566:3;14562:12;14555:19;;14214:366;;;:::o;14586:419::-;14752:4;14790:2;14779:9;14775:18;14767:26;;14839:9;14833:4;14829:20;14825:1;14814:9;14810:17;14803:47;14867:131;14993:4;14867:131;:::i;:::-;14859:139;;14586:419;;;:::o;15011:442::-;15160:4;15198:2;15187:9;15183:18;15175:26;;15211:71;15279:1;15268:9;15264:17;15255:6;15211:71;:::i;:::-;15292:72;15360:2;15349:9;15345:18;15336:6;15292:72;:::i;:::-;15374;15442:2;15431:9;15427:18;15418:6;15374:72;:::i;:::-;15011:442;;;;;;:::o;15459:170::-;15599:22;15595:1;15587:6;15583:14;15576:46;15459:170;:::o;15635:366::-;15777:3;15798:67;15862:2;15857:3;15798:67;:::i;:::-;15791:74;;15874:93;15963:3;15874:93;:::i;:::-;15992:2;15987:3;15983:12;15976:19;;15635:366;;;:::o;16007:419::-;16173:4;16211:2;16200:9;16196:18;16188:26;;16260:9;16254:4;16250:20;16246:1;16235:9;16231:17;16224:47;16288:131;16414:4;16288:131;:::i;:::-;16280:139;;16007:419;;;:::o;16432:180::-;16480:77;16477:1;16470:88;16577:4;16574:1;16567:15;16601:4;16598:1;16591:15;16618:233;16657:3;16680:24;16698:5;16680:24;:::i;:::-;16671:33;;16726:66;16719:5;16716:77;16713:103;;;16796:18;;:::i;:::-;16713:103;16843:1;16836:5;16832:13;16825:20;;16618:233;;;:::o;16857:775::-;17090:4;17128:3;17117:9;17113:19;17105:27;;17142:71;17210:1;17199:9;17195:17;17186:6;17142:71;:::i;:::-;17223:72;17291:2;17280:9;17276:18;17267:6;17223:72;:::i;:::-;17305;17373:2;17362:9;17358:18;17349:6;17305:72;:::i;:::-;17387;17455:2;17444:9;17440:18;17431:6;17387:72;:::i;:::-;17469:73;17537:3;17526:9;17522:19;17513:6;17469:73;:::i;:::-;17552;17620:3;17609:9;17605:19;17596:6;17552:73;:::i;:::-;16857:775;;;;;;;;;:::o;17638:148::-;17740:11;17777:3;17762:18;;17638:148;;;;:::o;17792:214::-;17932:66;17928:1;17920:6;17916:14;17909:90;17792:214;:::o;18012:400::-;18172:3;18193:84;18275:1;18270:3;18193:84;:::i;:::-;18186:91;;18286:93;18375:3;18286:93;:::i;:::-;18404:1;18399:3;18395:11;18388:18;;18012:400;;;:::o;18418:79::-;18457:7;18486:5;18475:16;;18418:79;;;:::o;18503:157::-;18608:45;18628:24;18646:5;18628:24;:::i;:::-;18608:45;:::i;:::-;18603:3;18596:58;18503:157;;:::o;18666:663::-;18907:3;18929:148;19073:3;18929:148;:::i;:::-;18922:155;;19087:75;19158:3;19149:6;19087:75;:::i;:::-;19187:2;19182:3;19178:12;19171:19;;19200:75;19271:3;19262:6;19200:75;:::i;:::-;19300:2;19295:3;19291:12;19284:19;;19320:3;19313:10;;18666:663;;;;;:::o;19335:173::-;19475:25;19471:1;19463:6;19459:14;19452:49;19335:173;:::o;19514:366::-;19656:3;19677:67;19741:2;19736:3;19677:67;:::i;:::-;19670:74;;19753:93;19842:3;19753:93;:::i;:::-;19871:2;19866:3;19862:12;19855:19;;19514:366;;;:::o;19886:419::-;20052:4;20090:2;20079:9;20075:18;20067:26;;20139:9;20133:4;20129:20;20125:1;20114:9;20110:17;20103:47;20167:131;20293:4;20167:131;:::i;:::-;20159:139;;19886:419;;;:::o;20311:545::-;20484:4;20522:3;20511:9;20507:19;20499:27;;20536:71;20604:1;20593:9;20589:17;20580:6;20536:71;:::i;:::-;20617:68;20681:2;20670:9;20666:18;20657:6;20617:68;:::i;:::-;20695:72;20763:2;20752:9;20748:18;20739:6;20695:72;:::i;:::-;20777;20845:2;20834:9;20830:18;20821:6;20777:72;:::i;:::-;20311:545;;;;;;;:::o;20862:170::-;21002:22;20998:1;20990:6;20986:14;20979:46;20862:170;:::o;21038:366::-;21180:3;21201:67;21265:2;21260:3;21201:67;:::i;:::-;21194:74;;21277:93;21366:3;21277:93;:::i;:::-;21395:2;21390:3;21386:12;21379:19;;21038:366;;;:::o;21410:419::-;21576:4;21614:2;21603:9;21599:18;21591:26;;21663:9;21657:4;21653:20;21649:1;21638:9;21634:17;21627:47;21691:131;21817:4;21691:131;:::i;:::-;21683:139;;21410:419;;;:::o;21835:225::-;21975:34;21971:1;21963:6;21959:14;21952:58;22044:8;22039:2;22031:6;22027:15;22020:33;21835:225;:::o;22066:366::-;22208:3;22229:67;22293:2;22288:3;22229:67;:::i;:::-;22222:74;;22305:93;22394:3;22305:93;:::i;:::-;22423:2;22418:3;22414:12;22407:19;;22066:366;;;:::o;22438:419::-;22604:4;22642:2;22631:9;22627:18;22619:26;;22691:9;22685:4;22681:20;22677:1;22666:9;22662:17;22655:47;22719:131;22845:4;22719:131;:::i;:::-;22711:139;;22438:419;;;:::o;22863:348::-;22903:7;22926:20;22944:1;22926:20;:::i;:::-;22921:25;;22960:20;22978:1;22960:20;:::i;:::-;22955:25;;23148:1;23080:66;23076:74;23073:1;23070:81;23065:1;23058:9;23051:17;23047:105;23044:131;;;23155:18;;:::i;:::-;23044:131;23203:1;23200;23196:9;23185:20;;22863:348;;;;:::o;23217:180::-;23265:77;23262:1;23255:88;23362:4;23359:1;23352:15;23386:4;23383:1;23376:15;23403:185;23443:1;23460:20;23478:1;23460:20;:::i;:::-;23455:25;;23494:20;23512:1;23494:20;:::i;:::-;23489:25;;23533:1;23523:35;;23538:18;;:::i;:::-;23523:35;23580:1;23577;23573:9;23568:14;;23403:185;;;;:::o;23594:191::-;23634:4;23654:20;23672:1;23654:20;:::i;:::-;23649:25;;23688:20;23706:1;23688:20;:::i;:::-;23683:25;;23727:1;23724;23721:8;23718:34;;;23732:18;;:::i;:::-;23718:34;23777:1;23774;23770:9;23762:17;;23594:191;;;;:::o;23791:305::-;23831:3;23850:20;23868:1;23850:20;:::i;:::-;23845:25;;23884:20;23902:1;23884:20;:::i;:::-;23879:25;;24038:1;23970:66;23966:74;23963:1;23960:81;23957:107;;;24044:18;;:::i;:::-;23957:107;24088:1;24085;24081:9;24074:16;;23791:305;;;;:::o;24102:176::-;24242:28;24238:1;24230:6;24226:14;24219:52;24102:176;:::o;24284:366::-;24426:3;24447:67;24511:2;24506:3;24447:67;:::i;:::-;24440:74;;24523:93;24612:3;24523:93;:::i;:::-;24641:2;24636:3;24632:12;24625:19;;24284:366;;;:::o;24656:419::-;24822:4;24860:2;24849:9;24845:18;24837:26;;24909:9;24903:4;24899:20;24895:1;24884:9;24880:17;24873:47;24937:131;25063:4;24937:131;:::i;:::-;24929:139;;24656:419;;;:::o;25081:332::-;25202:4;25240:2;25229:9;25225:18;25217:26;;25253:71;25321:1;25310:9;25306:17;25297:6;25253:71;:::i;:::-;25334:72;25402:2;25391:9;25387:18;25378:6;25334:72;:::i;:::-;25081:332;;;;;:::o;25419:182::-;25559:34;25555:1;25547:6;25543:14;25536:58;25419:182;:::o;25607:366::-;25749:3;25770:67;25834:2;25829:3;25770:67;:::i;:::-;25763:74;;25846:93;25935:3;25846:93;:::i;:::-;25964:2;25959:3;25955:12;25948:19;;25607:366;;;:::o;25979:419::-;26145:4;26183:2;26172:9;26168:18;26160:26;;26232:9;26226:4;26222:20;26218:1;26207:9;26203:17;26196:47;26260:131;26386:4;26260:131;:::i;:::-;26252:139;;25979:419;;;:::o;26404:179::-;26544:31;26540:1;26532:6;26528:14;26521:55;26404:179;:::o;26589:366::-;26731:3;26752:67;26816:2;26811:3;26752:67;:::i;:::-;26745:74;;26828:93;26917:3;26828:93;:::i;:::-;26946:2;26941:3;26937:12;26930:19;;26589:366;;;:::o;26961:419::-;27127:4;27165:2;27154:9;27150:18;27142:26;;27214:9;27208:4;27204:20;27200:1;27189:9;27185:17;27178:47;27242:131;27368:4;27242:131;:::i;:::-;27234:139;;26961:419;;;:::o;27386:220::-;27526:34;27522:1;27514:6;27510:14;27503:58;27595:3;27590:2;27582:6;27578:15;27571:28;27386:220;:::o;27612:366::-;27754:3;27775:67;27839:2;27834:3;27775:67;:::i;:::-;27768:74;;27851:93;27940:3;27851:93;:::i;:::-;27969:2;27964:3;27960:12;27953:19;;27612:366;;;:::o;27984:419::-;28150:4;28188:2;28177:9;28173:18;28165:26;;28237:9;28231:4;28227:20;28223:1;28212:9;28208:17;28201:47;28265:131;28391:4;28265:131;:::i;:::-;28257:139;;27984:419;;;:::o;28409:221::-;28549:34;28545:1;28537:6;28533:14;28526:58;28618:4;28613:2;28605:6;28601:15;28594:29;28409:221;:::o;28636:366::-;28778:3;28799:67;28863:2;28858:3;28799:67;:::i;:::-;28792:74;;28875:93;28964:3;28875:93;:::i;:::-;28993:2;28988:3;28984:12;28977:19;;28636:366;;;:::o;29008:419::-;29174:4;29212:2;29201:9;29197:18;29189:26;;29261:9;29255:4;29251:20;29247:1;29236:9;29232:17;29225:47;29289:131;29415:4;29289:131;:::i;:::-;29281:139;;29008:419;;;:::o;29433:173::-;29573:25;29569:1;29561:6;29557:14;29550:49;29433:173;:::o;29612:402::-;29772:3;29793:85;29875:2;29870:3;29793:85;:::i;:::-;29786:92;;29887:93;29976:3;29887:93;:::i;:::-;30005:2;30000:3;29996:12;29989:19;;29612:402;;;:::o;30020:377::-;30126:3;30154:39;30187:5;30154:39;:::i;:::-;30209:89;30291:6;30286:3;30209:89;:::i;:::-;30202:96;;30307:52;30352:6;30347:3;30340:4;30333:5;30329:16;30307:52;:::i;:::-;30384:6;30379:3;30375:16;30368:23;;30130:267;30020:377;;;;:::o;30403:167::-;30543:19;30539:1;30531:6;30527:14;30520:43;30403:167;:::o;30576:402::-;30736:3;30757:85;30839:2;30834:3;30757:85;:::i;:::-;30750:92;;30851:93;30940:3;30851:93;:::i;:::-;30969:2;30964:3;30960:12;30953:19;;30576:402;;;:::o;30984:967::-;31366:3;31388:148;31532:3;31388:148;:::i;:::-;31381:155;;31553:95;31644:3;31635:6;31553:95;:::i;:::-;31546:102;;31665:148;31809:3;31665:148;:::i;:::-;31658:155;;31830:95;31921:3;31912:6;31830:95;:::i;:::-;31823:102;;31942:3;31935:10;;30984:967;;;;;:::o;31957:223::-;32097:34;32093:1;32085:6;32081:14;32074:58;32166:6;32161:2;32153:6;32149:15;32142:31;31957:223;:::o;32186:366::-;32328:3;32349:67;32413:2;32408:3;32349:67;:::i;:::-;32342:74;;32425:93;32514:3;32425:93;:::i;:::-;32543:2;32538:3;32534:12;32527:19;;32186:366;;;:::o;32558:419::-;32724:4;32762:2;32751:9;32747:18;32739:26;;32811:9;32805:4;32801:20;32797:1;32786:9;32782:17;32775:47;32839:131;32965:4;32839:131;:::i;:::-;32831:139;;32558:419;;;:::o;32983:221::-;33123:34;33119:1;33111:6;33107:14;33100:58;33192:4;33187:2;33179:6;33175:15;33168:29;32983:221;:::o;33210:366::-;33352:3;33373:67;33437:2;33432:3;33373:67;:::i;:::-;33366:74;;33449:93;33538:3;33449:93;:::i;:::-;33567:2;33562:3;33558:12;33551:19;;33210:366;;;:::o;33582:419::-;33748:4;33786:2;33775:9;33771:18;33763:26;;33835:9;33829:4;33825:20;33821:1;33810:9;33806:17;33799:47;33863:131;33989:4;33863:131;:::i;:::-;33855:139;;33582:419;;;:::o;34007:180::-;34055:77;34052:1;34045:88;34152:4;34149:1;34142:15;34176:4;34173:1;34166:15;34193:137;34247:5;34278:6;34272:13;34263:22;;34294:30;34318:5;34294:30;:::i;:::-;34193:137;;;;:::o;34336:345::-;34403:6;34452:2;34440:9;34431:7;34427:23;34423:32;34420:119;;;34458:79;;:::i;:::-;34420:119;34578:1;34603:61;34656:7;34647:6;34636:9;34632:22;34603:61;:::i;:::-;34593:71;;34549:125;34336:345;;;;:::o;34687:229::-;34827:34;34823:1;34815:6;34811:14;34804:58;34896:12;34891:2;34883:6;34879:15;34872:37;34687:229;:::o;34922:366::-;35064:3;35085:67;35149:2;35144:3;35085:67;:::i;:::-;35078:74;;35161:93;35250:3;35161:93;:::i;:::-;35279:2;35274:3;35270:12;35263:19;;34922:366;;;:::o;35294:419::-;35460:4;35498:2;35487:9;35483:18;35475:26;;35547:9;35541:4;35537:20;35533:1;35522:9;35518:17;35511:47;35575:131;35701:4;35575:131;:::i;:::-;35567:139;;35294:419;;;:::o;35719:180::-;35767:77;35764:1;35757:88;35864:4;35861:1;35854:15;35888:4;35885:1;35878:15;35905:171;35944:3;35967:24;35985:5;35967:24;:::i;:::-;35958:33;;36013:4;36006:5;36003:15;36000:41;;;36021:18;;:::i;:::-;36000:41;36068:1;36061:5;36057:13;36050:20;;35905:171;;;:::o;36082:182::-;36222:34;36218:1;36210:6;36206:14;36199:58;36082:182;:::o;36270:366::-;36412:3;36433:67;36497:2;36492:3;36433:67;:::i;:::-;36426:74;;36509:93;36598:3;36509:93;:::i;:::-;36627:2;36622:3;36618:12;36611:19;;36270:366;;;:::o;36642:419::-;36808:4;36846:2;36835:9;36831:18;36823:26;;36895:9;36889:4;36885:20;36881:1;36870:9;36866:17;36859:47;36923:131;37049:4;36923:131;:::i;:::-;36915:139;;36642:419;;;:::o;37067:180::-;37115:77;37112:1;37105:88;37212:4;37209:1;37202:15;37236:4;37233:1;37226:15;37253:225;37393:34;37389:1;37381:6;37377:14;37370:58;37462:8;37457:2;37449:6;37445:15;37438:33;37253:225;:::o;37484:366::-;37626:3;37647:67;37711:2;37706:3;37647:67;:::i;:::-;37640:74;;37723:93;37812:3;37723:93;:::i;:::-;37841:2;37836:3;37832:12;37825:19;;37484:366;;;:::o;37856:419::-;38022:4;38060:2;38049:9;38045:18;38037:26;;38109:9;38103:4;38099:20;38095:1;38084:9;38080:17;38073:47;38137:131;38263:4;38137:131;:::i;:::-;38129:139;;37856:419;;;:::o;38281:98::-;38332:6;38366:5;38360:12;38350:22;;38281:98;;;:::o;38385:147::-;38486:11;38523:3;38508:18;;38385:147;;;;:::o;38538:373::-;38642:3;38670:38;38702:5;38670:38;:::i;:::-;38724:88;38805:6;38800:3;38724:88;:::i;:::-;38717:95;;38821:52;38866:6;38861:3;38854:4;38847:5;38843:16;38821:52;:::i;:::-;38898:6;38893:3;38889:16;38882:23;;38646:265;38538:373;;;;:::o;38917:271::-;39047:3;39069:93;39158:3;39149:6;39069:93;:::i;:::-;39062:100;;39179:3;39172:10;;38917:271;;;;:::o;39194:179::-;39334:31;39330:1;39322:6;39318:14;39311:55;39194:179;:::o;39379:366::-;39521:3;39542:67;39606:2;39601:3;39542:67;:::i;:::-;39535:74;;39618:93;39707:3;39618:93;:::i;:::-;39736:2;39731:3;39727:12;39720:19;;39379:366;;;:::o;39751:419::-;39917:4;39955:2;39944:9;39940:18;39932:26;;40004:9;39998:4;39994:20;39990:1;39979:9;39975:17;39968:47;40032:131;40158:4;40032:131;:::i;:::-;40024:139;;39751:419;;;:::o

Swarm Source

ipfs://348ba7ca2ceb88968dc33941f1fae5b5914229da0f275321d6ec71a4e626426b
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.