ETH Price: $3,281.73 (-3.77%)
Gas: 17 Gwei

Token

(WoW) ((WoW))
 

Overview

Max Total Supply

100,000,000,000,000 (WoW)

Holders

118

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.149817359929667331 (WoW)

Value
$0.00
0x7d4737140e7bd5fc73c5b7f5f035ca27dc626fc7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WoW

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-15
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/interfaces/IERC5267.sol


// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.0;

interface IERC5267 {
    /**
     * @dev MAY be emitted to signal that the domain could have changed.
     */
    event EIP712DomainChanged();

    /**
     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
     * signature.
     */
    function eip712Domain()
        external
        view
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        );
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
 * _Available since v4.9 for `string`, `bytes`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

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


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

pragma solidity ^0.8.8;


// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |
// | length  | 0x                                                              BB |
type ShortString is bytes32;

/**
 * @dev This library provides functions to convert short memory strings
 * into a `ShortString` type that can be used as an immutable variable.
 *
 * Strings of arbitrary length can be optimized using this library if
 * they are short enough (up to 31 bytes) by packing them with their
 * length (1 byte) in a single EVM word (32 bytes). Additionally, a
 * fallback mechanism can be used for every other case.
 *
 * Usage example:
 *
 * ```solidity
 * contract Named {
 *     using ShortStrings for *;
 *
 *     ShortString private immutable _name;
 *     string private _nameFallback;
 *
 *     constructor(string memory contractName) {
 *         _name = contractName.toShortStringWithFallback(_nameFallback);
 *     }
 *
 *     function name() external view returns (string memory) {
 *         return _name.toStringWithFallback(_nameFallback);
 *     }
 * }
 * ```
 */
library ShortStrings {
    // Used as an identifier for strings longer than 31 bytes.
    bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;

    error StringTooLong(string str);
    error InvalidShortString();

    /**
     * @dev Encode a string of at most 31 chars into a `ShortString`.
     *
     * This will trigger a `StringTooLong` error is the input string is too long.
     */
    function toShortString(string memory str) internal pure returns (ShortString) {
        bytes memory bstr = bytes(str);
        if (bstr.length > 31) {
            revert StringTooLong(str);
        }
        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
    }

    /**
     * @dev Decode a `ShortString` back to a "normal" string.
     */
    function toString(ShortString sstr) internal pure returns (string memory) {
        uint256 len = byteLength(sstr);
        // using `new string(len)` would work locally but is not memory safe.
        string memory str = new string(32);
        /// @solidity memory-safe-assembly
        assembly {
            mstore(str, len)
            mstore(add(str, 0x20), sstr)
        }
        return str;
    }

    /**
     * @dev Return the length of a `ShortString`.
     */
    function byteLength(ShortString sstr) internal pure returns (uint256) {
        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
        if (result > 31) {
            revert InvalidShortString();
        }
        return result;
    }

    /**
     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
     */
    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
        if (bytes(value).length < 32) {
            return toShortString(value);
        } else {
            StorageSlot.getStringSlot(store).value = value;
            return ShortString.wrap(_FALLBACK_SENTINEL);
        }
    }

    /**
     * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     */
    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
        if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
            return toString(value);
        } else {
            return store;
        }
    }

    /**
     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     *
     * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
     */
    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
        if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {
            return byteLength(value);
        } else {
            return bytes(store).length;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

// File: @openzeppelin/contracts/utils/cryptography/EIP712.sol


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

pragma solidity ^0.8.8;




/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
 * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the
 * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
 *
 * _Available since v3.4._
 *
 * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
 */
abstract contract EIP712 is IERC5267 {
    using ShortStrings for *;

    bytes32 private constant _TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _cachedDomainSeparator;
    uint256 private immutable _cachedChainId;
    address private immutable _cachedThis;

    bytes32 private immutable _hashedName;
    bytes32 private immutable _hashedVersion;

    ShortString private immutable _name;
    ShortString private immutable _version;
    string private _nameFallback;
    string private _versionFallback;

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        _name = name.toShortStringWithFallback(_nameFallback);
        _version = version.toShortStringWithFallback(_versionFallback);
        _hashedName = keccak256(bytes(name));
        _hashedVersion = keccak256(bytes(version));

        _cachedChainId = block.chainid;
        _cachedDomainSeparator = _buildDomainSeparator();
        _cachedThis = address(this);
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
            return _cachedDomainSeparator;
        } else {
            return _buildDomainSeparator();
        }
    }

    function _buildDomainSeparator() private view returns (bytes32) {
        return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {EIP-5267}.
     *
     * _Available since v4.9._
     */
    function eip712Domain()
        public
        view
        virtual
        override
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        return (
            hex"0f", // 01111
            _name.toStringWithFallback(_nameFallback),
            _version.toStringWithFallback(_versionFallback),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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: @openzeppelin/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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.0;






/**
 * @dev Implementation 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.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;

// EIP-2612 is Final as of 2022-11-01. This file is deprecated.


// File: coin_base.sol


pragma solidity ^0.8.9;




contract WoW is ERC20, Ownable, ERC20Permit {
    constructor() ERC20("(WoW)", "(WoW)") ERC20Permit("(WoW)") {
         _mint(msg.sender, 100000000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","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"}]

6101606040523480156200001257600080fd5b506040518060400160405280600581526020017f28576f5729000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f28576f57290000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f28576f57290000000000000000000000000000000000000000000000000000008152508160039081620000fd91906200082e565b5080600490816200010f91906200082e565b50505062000132620001266200023560201b60201c565b6200023d60201b60201c565b6200014d6006836200030360201b62000a421790919060201c565b6101208181525050620001706007826200030360201b62000a421790919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a08181525050620001af6200036060201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050506200022f3362000202620003bd60201b60201c565b600a62000210919062000aa5565b655af3107a400062000223919062000af6565b620003c660201b60201c565b62000e2e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000602083511015620003295762000321836200053360201b60201c565b90506200035a565b826200034083620005a060201b62000a861760201c565b60000190816200035191906200082e565b5060ff60001b90505b92915050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e051610100514630604051602001620003a295949392919062000bb2565b60405160208183030381529060405280519060200120905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000438576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042f9062000c70565b60405180910390fd5b6200044c60008383620005aa60201b60201c565b806002600082825462000460919062000c92565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000513919062000ccd565b60405180910390a36200052f60008383620005af60201b60201c565b5050565b600080829050601f815111156200058357826040517f305a27a90000000000000000000000000000000000000000000000000000000081526004016200057a919062000d68565b60405180910390fd5b805181620005919062000dbe565b60001c1760001b915050919050565b6000819050919050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063657607f821691505b6020821081036200064c576200064b620005ee565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006b67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000677565b620006c2868362000677565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200070f620007096200070384620006da565b620006e4565b620006da565b9050919050565b6000819050919050565b6200072b83620006ee565b620007436200073a8262000716565b84845462000684565b825550505050565b600090565b6200075a6200074b565b6200076781848462000720565b505050565b5b818110156200078f576200078360008262000750565b6001810190506200076d565b5050565b601f821115620007de57620007a88162000652565b620007b38462000667565b81016020851015620007c3578190505b620007db620007d28562000667565b8301826200076c565b50505b505050565b600082821c905092915050565b60006200080360001984600802620007e3565b1980831691505092915050565b60006200081e8383620007f0565b9150826002028217905092915050565b6200083982620005b4565b67ffffffffffffffff811115620008555762000854620005bf565b5b6200086182546200061d565b6200086e82828562000793565b600060209050601f831160018114620008a6576000841562000891578287015190505b6200089d858262000810565b8655506200090d565b601f198416620008b68662000652565b60005b82811015620008e057848901518255600182019150602085019450602081019050620008b9565b86831015620009005784890151620008fc601f891682620007f0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009a3578086048111156200097b576200097a62000915565b5b60018516156200098b5780820291505b80810290506200099b8562000944565b94506200095b565b94509492505050565b600082620009be576001905062000a91565b81620009ce576000905062000a91565b8160018114620009e75760028114620009f25762000a28565b600191505062000a91565b60ff84111562000a075762000a0662000915565b5b8360020a91508482111562000a215762000a2062000915565b5b5062000a91565b5060208310610133831016604e8410600b841016171562000a625782820a90508381111562000a5c5762000a5b62000915565b5b62000a91565b62000a71848484600162000951565b9250905081840481111562000a8b5762000a8a62000915565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ab282620006da565b915062000abf8362000a98565b925062000aee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009ac565b905092915050565b600062000b0382620006da565b915062000b1083620006da565b925082820262000b2081620006da565b9150828204841483151762000b3a5762000b3962000915565b5b5092915050565b6000819050919050565b62000b568162000b41565b82525050565b62000b6781620006da565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9a8262000b6d565b9050919050565b62000bac8162000b8d565b82525050565b600060a08201905062000bc9600083018862000b4b565b62000bd8602083018762000b4b565b62000be7604083018662000b4b565b62000bf6606083018562000b5c565b62000c05608083018462000ba1565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c58601f8362000c0f565b915062000c658262000c20565b602082019050919050565b6000602082019050818103600083015262000c8b8162000c49565b9050919050565b600062000c9f82620006da565b915062000cac83620006da565b925082820190508082111562000cc75762000cc662000915565b5b92915050565b600060208201905062000ce4600083018462000b5c565b92915050565b60005b8381101562000d0a57808201518184015260208101905062000ced565b60008484015250505050565b6000601f19601f8301169050919050565b600062000d3482620005b4565b62000d40818562000c0f565b935062000d5281856020860162000cea565b62000d5d8162000d16565b840191505092915050565b6000602082019050818103600083015262000d84818462000d27565b905092915050565b600081519050919050565b6000819050602082019050919050565b600062000db5825162000b41565b80915050919050565b600062000dcb8262000d8c565b8262000dd78462000d97565b905062000de48162000da7565b9250602082101562000e275762000e227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080262000677565b831692505b5050919050565b60805160a05160c05160e05161010051610120516101405161295e62000e8960003960006105e5015260006105b1015260006113770152600061135601526000610f6701526000610fbd01526000610fe6015261295e6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80637ecebe00116100a2578063a457c2d711610071578063a457c2d7146102ed578063a9059cbb1461031d578063d505accf1461034d578063dd62ed3e14610369578063f2fde38b1461039957610116565b80637ecebe001461025d57806384b0196e1461028d5780638da5cb5b146102b157806395d89b41146102cf57610116565b8063313ce567116100e9578063313ce567146101b75780633644e515146101d557806339509351146101f357806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b5565b60405161013091906117ba565b60405180910390f35b610153600480360381019061014e9190611875565b610447565b60405161016091906118d0565b60405180910390f35b61017161046a565b60405161017e91906118fa565b60405180910390f35b6101a1600480360381019061019c9190611915565b610474565b6040516101ae91906118d0565b60405180910390f35b6101bf6104a3565b6040516101cc9190611984565b60405180910390f35b6101dd6104ac565b6040516101ea91906119b8565b60405180910390f35b61020d60048036038101906102089190611875565b6104bb565b60405161021a91906118d0565b60405180910390f35b61023d600480360381019061023891906119d3565b6104f2565b60405161024a91906118fa565b60405180910390f35b61025b61053a565b005b610277600480360381019061027291906119d3565b61054e565b60405161028491906118fa565b60405180910390f35b61029561059e565b6040516102a89796959493929190611b08565b60405180910390f35b6102b96106a0565b6040516102c69190611b8c565b60405180910390f35b6102d76106ca565b6040516102e491906117ba565b60405180910390f35b61030760048036038101906103029190611875565b61075c565b60405161031491906118d0565b60405180910390f35b61033760048036038101906103329190611875565b6107d3565b60405161034491906118d0565b60405180910390f35b61036760048036038101906103629190611bff565b6107f6565b005b610383600480360381019061037e9190611ca1565b610938565b60405161039091906118fa565b60405180910390f35b6103b360048036038101906103ae91906119d3565b6109bf565b005b6060600380546103c490611d10565b80601f01602080910402602001604051908101604052809291908181526020018280546103f090611d10565b801561043d5780601f106104125761010080835404028352916020019161043d565b820191906000526020600020905b81548152906001019060200180831161042057829003601f168201915b5050505050905090565b600080610452610a90565b905061045f818585610a98565b600191505092915050565b6000600254905090565b60008061047f610a90565b905061048c858285610c61565b610497858585610ced565b60019150509392505050565b60006012905090565b60006104b6610f63565b905090565b6000806104c6610a90565b90506104e78185856104d88589610938565b6104e29190611d70565b610a98565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61054261101a565b61054c6000611098565b565b6000610597600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061115e565b9050919050565b6000606080600080600060606105de60067f000000000000000000000000000000000000000000000000000000000000000061116c90919063ffffffff16565b61061260077f000000000000000000000000000000000000000000000000000000000000000061116c90919063ffffffff16565b46306000801b600067ffffffffffffffff81111561063357610632611da4565b5b6040519080825280602002602001820160405280156106615781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106d990611d10565b80601f016020809104026020016040519081016040528092919081815260200182805461070590611d10565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b600080610767610a90565b905060006107758286610938565b9050838110156107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190611e45565b60405180910390fd5b6107c78286868403610a98565b60019250505092915050565b6000806107de610a90565b90506107eb818585610ced565b600191505092915050565b83421115610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090611eb1565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108688c61121c565b8960405160200161087e96959493929190611ed1565b60405160208183030381529060405280519060200120905060006108a18261127a565b905060006108b182878787611294565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890611f7e565b60405180910390fd5b61092c8a8a8a610a98565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109c761101a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612010565b60405180910390fd5b610a3f81611098565b50565b6000602083511015610a5e57610a57836112bf565b9050610a80565b82610a6883610a86565b6000019081610a7791906121dc565b5060ff60001b90505b92915050565b6000819050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90612320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906123b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5491906118fa565b60405180910390a3505050565b6000610c6d8484610938565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ce75781811015610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd09061241e565b60405180910390fd5b610ce68484848403610a98565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d53906124b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612542565b60405180910390fd5b610dd6838383611327565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e53906125d4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4a91906118fa565b60405180910390a3610f5d84848461132c565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610fdf57507f000000000000000000000000000000000000000000000000000000000000000046145b1561100c577f00000000000000000000000000000000000000000000000000000000000000009050611017565b611014611331565b90505b90565b611022610a90565b73ffffffffffffffffffffffffffffffffffffffff166110406106a0565b73ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90612640565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b606060ff60001b831461118957611182836113c7565b9050611216565b81805461119590611d10565b80601f01602080910402602001604051908101604052809291908181526020018280546111c190611d10565b801561120e5780601f106111e35761010080835404028352916020019161120e565b820191906000526020600020905b8154815290600101906020018083116111f157829003601f168201915b505050505090505b92915050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506112698161115e565b91506112748161143b565b50919050565b600061128d611287610f63565b83611451565b9050919050565b60008060006112a587878787611492565b915091506112b281611574565b8192505050949350505050565b600080829050601f8151111561130c57826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040161130391906117ba565b60405180910390fd5b80518161131890612690565b60001c1760001b915050919050565b505050565b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016113ac9594939291906126f7565b60405160208183030381529060405280519060200120905090565b606060006113d4836116da565b90506000602067ffffffffffffffff8111156113f3576113f2611da4565b5b6040519080825280601f01601f1916602001820160405280156114255781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b6001816000016000828254019250508190555050565b60006040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156114cd57600060039150915061156b565b6000600187878787604051600081526020016040526040516114f2949392919061274a565b6020604051602081039080840390855afa158015611514573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115625760006001925092505061156b565b80600092509250505b94509492505050565b600060048111156115885761158761278f565b5b81600481111561159b5761159a61278f565b5b03156116d757600160048111156115b5576115b461278f565b5b8160048111156115c8576115c761278f565b5b03611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff9061280a565b60405180910390fd5b6002600481111561161c5761161b61278f565b5b81600481111561162f5761162e61278f565b5b0361166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612876565b60405180910390fd5b600360048111156116835761168261278f565b5b8160048111156116965761169561278f565b5b036116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90612908565b60405180910390fd5b5b50565b60008060ff8360001c169050601f811115611721576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611764578082015181840152602081019050611749565b60008484015250505050565b6000601f19601f8301169050919050565b600061178c8261172a565b6117968185611735565b93506117a6818560208601611746565b6117af81611770565b840191505092915050565b600060208201905081810360008301526117d48184611781565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061180c826117e1565b9050919050565b61181c81611801565b811461182757600080fd5b50565b60008135905061183981611813565b92915050565b6000819050919050565b6118528161183f565b811461185d57600080fd5b50565b60008135905061186f81611849565b92915050565b6000806040838503121561188c5761188b6117dc565b5b600061189a8582860161182a565b92505060206118ab85828601611860565b9150509250929050565b60008115159050919050565b6118ca816118b5565b82525050565b60006020820190506118e560008301846118c1565b92915050565b6118f48161183f565b82525050565b600060208201905061190f60008301846118eb565b92915050565b60008060006060848603121561192e5761192d6117dc565b5b600061193c8682870161182a565b935050602061194d8682870161182a565b925050604061195e86828701611860565b9150509250925092565b600060ff82169050919050565b61197e81611968565b82525050565b60006020820190506119996000830184611975565b92915050565b6000819050919050565b6119b28161199f565b82525050565b60006020820190506119cd60008301846119a9565b92915050565b6000602082840312156119e9576119e86117dc565b5b60006119f78482850161182a565b91505092915050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611a3581611a00565b82525050565b611a4481611801565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611a7f8161183f565b82525050565b6000611a918383611a76565b60208301905092915050565b6000602082019050919050565b6000611ab582611a4a565b611abf8185611a55565b9350611aca83611a66565b8060005b83811015611afb578151611ae28882611a85565b9750611aed83611a9d565b925050600181019050611ace565b5085935050505092915050565b600060e082019050611b1d600083018a611a2c565b8181036020830152611b2f8189611781565b90508181036040830152611b438188611781565b9050611b5260608301876118eb565b611b5f6080830186611a3b565b611b6c60a08301856119a9565b81810360c0830152611b7e8184611aaa565b905098975050505050505050565b6000602082019050611ba16000830184611a3b565b92915050565b611bb081611968565b8114611bbb57600080fd5b50565b600081359050611bcd81611ba7565b92915050565b611bdc8161199f565b8114611be757600080fd5b50565b600081359050611bf981611bd3565b92915050565b600080600080600080600060e0888a031215611c1e57611c1d6117dc565b5b6000611c2c8a828b0161182a565b9750506020611c3d8a828b0161182a565b9650506040611c4e8a828b01611860565b9550506060611c5f8a828b01611860565b9450506080611c708a828b01611bbe565b93505060a0611c818a828b01611bea565b92505060c0611c928a828b01611bea565b91505092959891949750929550565b60008060408385031215611cb857611cb76117dc565b5b6000611cc68582860161182a565b9250506020611cd78582860161182a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d2857607f821691505b602082108103611d3b57611d3a611ce1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d7b8261183f565b9150611d868361183f565b9250828201905080821115611d9e57611d9d611d41565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2f602583611735565b9150611e3a82611dd3565b604082019050919050565b60006020820190508181036000830152611e5e81611e22565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611e9b601d83611735565b9150611ea682611e65565b602082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b600060c082019050611ee660008301896119a9565b611ef36020830188611a3b565b611f006040830187611a3b565b611f0d60608301866118eb565b611f1a60808301856118eb565b611f2760a08301846118eb565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000611f68601e83611735565b9150611f7382611f32565b602082019050919050565b60006020820190508181036000830152611f9781611f5b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ffa602683611735565b915061200582611f9e565b604082019050919050565b6000602082019050818103600083015261202981611fed565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612055565b61209c8683612055565b95508019841693508086168417925050509392505050565b6000819050919050565b60006120d96120d46120cf8461183f565b6120b4565b61183f565b9050919050565b6000819050919050565b6120f3836120be565b6121076120ff826120e0565b848454612062565b825550505050565b600090565b61211c61210f565b6121278184846120ea565b505050565b5b8181101561214b57612140600082612114565b60018101905061212d565b5050565b601f8211156121905761216181612030565b61216a84612045565b81016020851015612179578190505b61218d61218585612045565b83018261212c565b50505b505050565b600082821c905092915050565b60006121b360001984600802612195565b1980831691505092915050565b60006121cc83836121a2565b9150826002028217905092915050565b6121e58261172a565b67ffffffffffffffff8111156121fe576121fd611da4565b5b6122088254611d10565b61221382828561214f565b600060209050601f8311600181146122465760008415612234578287015190505b61223e85826121c0565b8655506122a6565b601f19841661225486612030565b60005b8281101561227c57848901518255600182019150602085019450602081019050612257565b868310156122995784890151612295601f8916826121a2565b8355505b6001600288020188555050505b505050505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061230a602483611735565b9150612315826122ae565b604082019050919050565b60006020820190508181036000830152612339816122fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061239c602283611735565b91506123a782612340565b604082019050919050565b600060208201905081810360008301526123cb8161238f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612408601d83611735565b9150612413826123d2565b602082019050919050565b60006020820190508181036000830152612437816123fb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061249a602583611735565b91506124a58261243e565b604082019050919050565b600060208201905081810360008301526124c98161248d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061252c602383611735565b9150612537826124d0565b604082019050919050565b6000602082019050818103600083015261255b8161251f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125be602683611735565b91506125c982612562565b604082019050919050565b600060208201905081810360008301526125ed816125b1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061262a602083611735565b9150612635826125f4565b602082019050919050565b600060208201905081810360008301526126598161261d565b9050919050565b600081519050919050565b6000819050602082019050919050565b6000612687825161199f565b80915050919050565b600061269b82612660565b826126a58461266b565b90506126b08161267b565b925060208210156126f0576126eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802612055565b831692505b5050919050565b600060a08201905061270c60008301886119a9565b61271960208301876119a9565b61272660408301866119a9565b61273360608301856118eb565b6127406080830184611a3b565b9695505050505050565b600060808201905061275f60008301876119a9565b61276c6020830186611975565b61277960408301856119a9565b61278660608301846119a9565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006127f4601883611735565b91506127ff826127be565b602082019050919050565b60006020820190508181036000830152612823816127e7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000612860601f83611735565b915061286b8261282a565b602082019050919050565b6000602082019050818103600083015261288f81612853565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006128f2602283611735565b91506128fd82612896565b604082019050919050565b60006020820190508181036000830152612921816128e5565b905091905056fea264697066735822122089e4c6e90d3dc8382439a6918cd0335e6a907564db7c2bbf68ceb0c37f3838e664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80637ecebe00116100a2578063a457c2d711610071578063a457c2d7146102ed578063a9059cbb1461031d578063d505accf1461034d578063dd62ed3e14610369578063f2fde38b1461039957610116565b80637ecebe001461025d57806384b0196e1461028d5780638da5cb5b146102b157806395d89b41146102cf57610116565b8063313ce567116100e9578063313ce567146101b75780633644e515146101d557806339509351146101f357806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b5565b60405161013091906117ba565b60405180910390f35b610153600480360381019061014e9190611875565b610447565b60405161016091906118d0565b60405180910390f35b61017161046a565b60405161017e91906118fa565b60405180910390f35b6101a1600480360381019061019c9190611915565b610474565b6040516101ae91906118d0565b60405180910390f35b6101bf6104a3565b6040516101cc9190611984565b60405180910390f35b6101dd6104ac565b6040516101ea91906119b8565b60405180910390f35b61020d60048036038101906102089190611875565b6104bb565b60405161021a91906118d0565b60405180910390f35b61023d600480360381019061023891906119d3565b6104f2565b60405161024a91906118fa565b60405180910390f35b61025b61053a565b005b610277600480360381019061027291906119d3565b61054e565b60405161028491906118fa565b60405180910390f35b61029561059e565b6040516102a89796959493929190611b08565b60405180910390f35b6102b96106a0565b6040516102c69190611b8c565b60405180910390f35b6102d76106ca565b6040516102e491906117ba565b60405180910390f35b61030760048036038101906103029190611875565b61075c565b60405161031491906118d0565b60405180910390f35b61033760048036038101906103329190611875565b6107d3565b60405161034491906118d0565b60405180910390f35b61036760048036038101906103629190611bff565b6107f6565b005b610383600480360381019061037e9190611ca1565b610938565b60405161039091906118fa565b60405180910390f35b6103b360048036038101906103ae91906119d3565b6109bf565b005b6060600380546103c490611d10565b80601f01602080910402602001604051908101604052809291908181526020018280546103f090611d10565b801561043d5780601f106104125761010080835404028352916020019161043d565b820191906000526020600020905b81548152906001019060200180831161042057829003601f168201915b5050505050905090565b600080610452610a90565b905061045f818585610a98565b600191505092915050565b6000600254905090565b60008061047f610a90565b905061048c858285610c61565b610497858585610ced565b60019150509392505050565b60006012905090565b60006104b6610f63565b905090565b6000806104c6610a90565b90506104e78185856104d88589610938565b6104e29190611d70565b610a98565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61054261101a565b61054c6000611098565b565b6000610597600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061115e565b9050919050565b6000606080600080600060606105de60067f28576f572900000000000000000000000000000000000000000000000000000561116c90919063ffffffff16565b61061260077f310000000000000000000000000000000000000000000000000000000000000161116c90919063ffffffff16565b46306000801b600067ffffffffffffffff81111561063357610632611da4565b5b6040519080825280602002602001820160405280156106615781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106d990611d10565b80601f016020809104026020016040519081016040528092919081815260200182805461070590611d10565b80156107525780601f1061072757610100808354040283529160200191610752565b820191906000526020600020905b81548152906001019060200180831161073557829003601f168201915b5050505050905090565b600080610767610a90565b905060006107758286610938565b9050838110156107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190611e45565b60405180910390fd5b6107c78286868403610a98565b60019250505092915050565b6000806107de610a90565b90506107eb818585610ced565b600191505092915050565b83421115610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090611eb1565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108688c61121c565b8960405160200161087e96959493929190611ed1565b60405160208183030381529060405280519060200120905060006108a18261127a565b905060006108b182878787611294565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890611f7e565b60405180910390fd5b61092c8a8a8a610a98565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109c761101a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612010565b60405180910390fd5b610a3f81611098565b50565b6000602083511015610a5e57610a57836112bf565b9050610a80565b82610a6883610a86565b6000019081610a7791906121dc565b5060ff60001b90505b92915050565b6000819050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90612320565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906123b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5491906118fa565b60405180910390a3505050565b6000610c6d8484610938565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ce75781811015610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd09061241e565b60405180910390fd5b610ce68484848403610a98565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d53906124b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612542565b60405180910390fd5b610dd6838383611327565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e53906125d4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4a91906118fa565b60405180910390a3610f5d84848461132c565b50505050565b60007f000000000000000000000000f0dfff158c7602ccb621bdec1b95d4215a926ca073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610fdf57507f000000000000000000000000000000000000000000000000000000000000000146145b1561100c577fbb09ec94810b206517e8ba7c48860d53a004e5ff6167636f61a34de39797025c9050611017565b611014611331565b90505b90565b611022610a90565b73ffffffffffffffffffffffffffffffffffffffff166110406106a0565b73ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90612640565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b606060ff60001b831461118957611182836113c7565b9050611216565b81805461119590611d10565b80601f01602080910402602001604051908101604052809291908181526020018280546111c190611d10565b801561120e5780601f106111e35761010080835404028352916020019161120e565b820191906000526020600020905b8154815290600101906020018083116111f157829003601f168201915b505050505090505b92915050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506112698161115e565b91506112748161143b565b50919050565b600061128d611287610f63565b83611451565b9050919050565b60008060006112a587878787611492565b915091506112b281611574565b8192505050949350505050565b600080829050601f8151111561130c57826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040161130391906117ba565b60405180910390fd5b80518161131890612690565b60001c1760001b915050919050565b505050565b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7ff2aa8f1a231f6d54627f11590b99ff28416b850ecfbfd3b64ca67bfac97621947fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016113ac9594939291906126f7565b60405160208183030381529060405280519060200120905090565b606060006113d4836116da565b90506000602067ffffffffffffffff8111156113f3576113f2611da4565b5b6040519080825280601f01601f1916602001820160405280156114255781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b6001816000016000828254019250508190555050565b60006040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156114cd57600060039150915061156b565b6000600187878787604051600081526020016040526040516114f2949392919061274a565b6020604051602081039080840390855afa158015611514573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115625760006001925092505061156b565b80600092509250505b94509492505050565b600060048111156115885761158761278f565b5b81600481111561159b5761159a61278f565b5b03156116d757600160048111156115b5576115b461278f565b5b8160048111156115c8576115c761278f565b5b03611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff9061280a565b60405180910390fd5b6002600481111561161c5761161b61278f565b5b81600481111561162f5761162e61278f565b5b0361166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612876565b60405180910390fd5b600360048111156116835761168261278f565b5b8160048111156116965761169561278f565b5b036116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90612908565b60405180910390fd5b5b50565b60008060ff8360001c169050601f811115611721576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611764578082015181840152602081019050611749565b60008484015250505050565b6000601f19601f8301169050919050565b600061178c8261172a565b6117968185611735565b93506117a6818560208601611746565b6117af81611770565b840191505092915050565b600060208201905081810360008301526117d48184611781565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061180c826117e1565b9050919050565b61181c81611801565b811461182757600080fd5b50565b60008135905061183981611813565b92915050565b6000819050919050565b6118528161183f565b811461185d57600080fd5b50565b60008135905061186f81611849565b92915050565b6000806040838503121561188c5761188b6117dc565b5b600061189a8582860161182a565b92505060206118ab85828601611860565b9150509250929050565b60008115159050919050565b6118ca816118b5565b82525050565b60006020820190506118e560008301846118c1565b92915050565b6118f48161183f565b82525050565b600060208201905061190f60008301846118eb565b92915050565b60008060006060848603121561192e5761192d6117dc565b5b600061193c8682870161182a565b935050602061194d8682870161182a565b925050604061195e86828701611860565b9150509250925092565b600060ff82169050919050565b61197e81611968565b82525050565b60006020820190506119996000830184611975565b92915050565b6000819050919050565b6119b28161199f565b82525050565b60006020820190506119cd60008301846119a9565b92915050565b6000602082840312156119e9576119e86117dc565b5b60006119f78482850161182a565b91505092915050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611a3581611a00565b82525050565b611a4481611801565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611a7f8161183f565b82525050565b6000611a918383611a76565b60208301905092915050565b6000602082019050919050565b6000611ab582611a4a565b611abf8185611a55565b9350611aca83611a66565b8060005b83811015611afb578151611ae28882611a85565b9750611aed83611a9d565b925050600181019050611ace565b5085935050505092915050565b600060e082019050611b1d600083018a611a2c565b8181036020830152611b2f8189611781565b90508181036040830152611b438188611781565b9050611b5260608301876118eb565b611b5f6080830186611a3b565b611b6c60a08301856119a9565b81810360c0830152611b7e8184611aaa565b905098975050505050505050565b6000602082019050611ba16000830184611a3b565b92915050565b611bb081611968565b8114611bbb57600080fd5b50565b600081359050611bcd81611ba7565b92915050565b611bdc8161199f565b8114611be757600080fd5b50565b600081359050611bf981611bd3565b92915050565b600080600080600080600060e0888a031215611c1e57611c1d6117dc565b5b6000611c2c8a828b0161182a565b9750506020611c3d8a828b0161182a565b9650506040611c4e8a828b01611860565b9550506060611c5f8a828b01611860565b9450506080611c708a828b01611bbe565b93505060a0611c818a828b01611bea565b92505060c0611c928a828b01611bea565b91505092959891949750929550565b60008060408385031215611cb857611cb76117dc565b5b6000611cc68582860161182a565b9250506020611cd78582860161182a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d2857607f821691505b602082108103611d3b57611d3a611ce1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d7b8261183f565b9150611d868361183f565b9250828201905080821115611d9e57611d9d611d41565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2f602583611735565b9150611e3a82611dd3565b604082019050919050565b60006020820190508181036000830152611e5e81611e22565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000611e9b601d83611735565b9150611ea682611e65565b602082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b600060c082019050611ee660008301896119a9565b611ef36020830188611a3b565b611f006040830187611a3b565b611f0d60608301866118eb565b611f1a60808301856118eb565b611f2760a08301846118eb565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000611f68601e83611735565b9150611f7382611f32565b602082019050919050565b60006020820190508181036000830152611f9781611f5b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ffa602683611735565b915061200582611f9e565b604082019050919050565b6000602082019050818103600083015261202981611fed565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026120927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612055565b61209c8683612055565b95508019841693508086168417925050509392505050565b6000819050919050565b60006120d96120d46120cf8461183f565b6120b4565b61183f565b9050919050565b6000819050919050565b6120f3836120be565b6121076120ff826120e0565b848454612062565b825550505050565b600090565b61211c61210f565b6121278184846120ea565b505050565b5b8181101561214b57612140600082612114565b60018101905061212d565b5050565b601f8211156121905761216181612030565b61216a84612045565b81016020851015612179578190505b61218d61218585612045565b83018261212c565b50505b505050565b600082821c905092915050565b60006121b360001984600802612195565b1980831691505092915050565b60006121cc83836121a2565b9150826002028217905092915050565b6121e58261172a565b67ffffffffffffffff8111156121fe576121fd611da4565b5b6122088254611d10565b61221382828561214f565b600060209050601f8311600181146122465760008415612234578287015190505b61223e85826121c0565b8655506122a6565b601f19841661225486612030565b60005b8281101561227c57848901518255600182019150602085019450602081019050612257565b868310156122995784890151612295601f8916826121a2565b8355505b6001600288020188555050505b505050505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061230a602483611735565b9150612315826122ae565b604082019050919050565b60006020820190508181036000830152612339816122fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061239c602283611735565b91506123a782612340565b604082019050919050565b600060208201905081810360008301526123cb8161238f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612408601d83611735565b9150612413826123d2565b602082019050919050565b60006020820190508181036000830152612437816123fb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061249a602583611735565b91506124a58261243e565b604082019050919050565b600060208201905081810360008301526124c98161248d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061252c602383611735565b9150612537826124d0565b604082019050919050565b6000602082019050818103600083015261255b8161251f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006125be602683611735565b91506125c982612562565b604082019050919050565b600060208201905081810360008301526125ed816125b1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061262a602083611735565b9150612635826125f4565b602082019050919050565b600060208201905081810360008301526126598161261d565b9050919050565b600081519050919050565b6000819050602082019050919050565b6000612687825161199f565b80915050919050565b600061269b82612660565b826126a58461266b565b90506126b08161267b565b925060208210156126f0576126eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802612055565b831692505b5050919050565b600060a08201905061270c60008301886119a9565b61271960208301876119a9565b61272660408301866119a9565b61273360608301856118eb565b6127406080830184611a3b565b9695505050505050565b600060808201905061275f60008301876119a9565b61276c6020830186611975565b61277960408301856119a9565b61278660608301846119a9565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006127f4601883611735565b91506127ff826127be565b602082019050919050565b60006020820190508181036000830152612823816127e7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000612860601f83611735565b915061286b8261282a565b602082019050919050565b6000602082019050818103600083015261288f81612853565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006128f2602283611735565b91506128fd82612896565b604082019050919050565b60006020820190508181036000830152612921816128e5565b905091905056fea264697066735822122089e4c6e90d3dc8382439a6918cd0335e6a907564db7c2bbf68ceb0c37f3838e664736f6c63430008120033

Deployed Bytecode Sourcemap

67573:186:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52968:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55328:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54097:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56109:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53939:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66768:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56779:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54268:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46423:103;;;:::i;:::-;;66510:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40615:657;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;45775:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53187:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57520:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54601:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65799:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54857:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46681:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52968:100;53022:13;53055:5;53048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52968:100;:::o;55328:201::-;55411:4;55428:13;55444:12;:10;:12::i;:::-;55428:28;;55467:32;55476:5;55483:7;55492:6;55467:8;:32::i;:::-;55517:4;55510:11;;;55328:201;;;;:::o;54097:108::-;54158:7;54185:12;;54178:19;;54097:108;:::o;56109:261::-;56206:4;56223:15;56241:12;:10;:12::i;:::-;56223:30;;56264:38;56280:4;56286:7;56295:6;56264:15;:38::i;:::-;56313:27;56323:4;56329:2;56333:6;56313:9;:27::i;:::-;56358:4;56351:11;;;56109:261;;;;;:::o;53939:93::-;53997:5;54022:2;54015:9;;53939:93;:::o;66768:115::-;66828:7;66855:20;:18;:20::i;:::-;66848:27;;66768:115;:::o;56779:238::-;56867:4;56884:13;56900:12;:10;:12::i;:::-;56884:28;;56923:64;56932:5;56939:7;56976:10;56948:25;56958:5;56965:7;56948:9;:25::i;:::-;:38;;;;:::i;:::-;56923:8;:64::i;:::-;57005:4;56998:11;;;56779:238;;;;:::o;54268:127::-;54342:7;54369:9;:18;54379:7;54369:18;;;;;;;;;;;;;;;;54362:25;;54268:127;;;:::o;46423:103::-;45661:13;:11;:13::i;:::-;46488:30:::1;46515:1;46488:18;:30::i;:::-;46423:103::o:0;66510:128::-;66579:7;66606:24;:7;:14;66614:5;66606:14;;;;;;;;;;;;;;;:22;:24::i;:::-;66599:31;;66510:128;;;:::o;40615:657::-;40736:13;40764:18;40797:21;40833:15;40863:25;40903:12;40930:27;41038:41;41065:13;41038:5;:26;;:41;;;;:::i;:::-;41094:47;41124:16;41094:8;:29;;:47;;;;:::i;:::-;41156:13;41192:4;41220:1;41212:10;;41251:1;41237:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40985:279;;;;;;;;;;;;;;;;;;;;;40615:657;;;;;;;:::o;45775:87::-;45821:7;45848:6;;;;;;;;;;;45841:13;;45775:87;:::o;53187:104::-;53243:13;53276:7;53269:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53187:104;:::o;57520:436::-;57613:4;57630:13;57646:12;:10;:12::i;:::-;57630:28;;57669:24;57696:25;57706:5;57713:7;57696:9;:25::i;:::-;57669:52;;57760:15;57740:16;:35;;57732:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;57853:60;57862:5;57869:7;57897:15;57878:16;:34;57853:8;:60::i;:::-;57944:4;57937:11;;;;57520:436;;;;:::o;54601:193::-;54680:4;54697:13;54713:12;:10;:12::i;:::-;54697:28;;54736;54746:5;54753:2;54757:6;54736:9;:28::i;:::-;54782:4;54775:11;;;54601:193;;;;:::o;65799:645::-;66043:8;66024:15;:27;;66016:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;66098:18;64974:95;66158:5;66165:7;66174:5;66181:16;66191:5;66181:9;:16::i;:::-;66199:8;66129:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66119:90;;;;;;66098:111;;66222:12;66237:28;66254:10;66237:16;:28::i;:::-;66222:43;;66278:14;66295:28;66309:4;66315:1;66318;66321;66295:13;:28::i;:::-;66278:45;;66352:5;66342:15;;:6;:15;;;66334:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66405:31;66414:5;66421:7;66430:5;66405:8;:31::i;:::-;66005:439;;;65799:645;;;;;;;:::o;54857:151::-;54946:7;54973:11;:18;54985:5;54973:18;;;;;;;;;;;;;;;:27;54992:7;54973:27;;;;;;;;;;;;;;;;54966:34;;54857:151;;;;:::o;46681:201::-;45661:13;:11;:13::i;:::-;46790:1:::1;46770:22;;:8;:22;;::::0;46762:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46846:28;46865:8;46846:18;:28::i;:::-;46681:201:::0;:::o;9550:348::-;9646:11;9696:2;9680:5;9674:19;:24;9670:221;;;9722:20;9736:5;9722:13;:20::i;:::-;9715:27;;;;9670:221;9816:5;9775:32;9801:5;9775:25;:32::i;:::-;:38;;:46;;;;;;:::i;:::-;;7979:66;9860:18;;9836:43;;9550:348;;;;;:::o;5743:207::-;5811:20;5922:10;5912:20;;5743:207;;;:::o;44326:98::-;44379:7;44406:10;44399:17;;44326:98;:::o;61513:346::-;61632:1;61615:19;;:5;:19;;;61607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61713:1;61694:21;;:7;:21;;;61686:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61797:6;61767:11;:18;61779:5;61767:18;;;;;;;;;;;;;;;:27;61786:7;61767:27;;;;;;;;;;;;;;;:36;;;;61835:7;61819:32;;61828:5;61819:32;;;61844:6;61819:32;;;;;;:::i;:::-;;;;;;;;61513:346;;;:::o;62150:419::-;62251:24;62278:25;62288:5;62295:7;62278:9;:25::i;:::-;62251:52;;62338:17;62318:16;:37;62314:248;;62400:6;62380:16;:26;;62372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62484:51;62493:5;62500:7;62528:6;62509:16;:25;62484:8;:51::i;:::-;62314:248;62240:329;62150:419;;;:::o;58426:806::-;58539:1;58523:18;;:4;:18;;;58515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58616:1;58602:16;;:2;:16;;;58594:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58671:38;58692:4;58698:2;58702:6;58671:20;:38::i;:::-;58722:19;58744:9;:15;58754:4;58744:15;;;;;;;;;;;;;;;;58722:37;;58793:6;58778:11;:21;;58770:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;58910:6;58896:11;:20;58878:9;:15;58888:4;58878:15;;;;;;;;;;;;;;;:38;;;;59113:6;59096:9;:13;59106:2;59096:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;59163:2;59148:26;;59157:4;59148:26;;;59167:6;59148:26;;;;;;:::i;:::-;;;;;;;;59187:37;59207:4;59213:2;59217:6;59187:19;:37::i;:::-;58504:728;58426:806;;;:::o;39253:268::-;39306:7;39347:11;39330:28;;39338:4;39330:28;;;:63;;;;;39379:14;39362:13;:31;39330:63;39326:188;;;39417:22;39410:29;;;;39326:188;39479:23;:21;:23::i;:::-;39472:30;;39253:268;;:::o;45940:132::-;46015:12;:10;:12::i;:::-;46004:23;;:7;:5;:7::i;:::-;:23;;;45996:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45940:132::o;47042:191::-;47116:16;47135:6;;;;;;;;;;;47116:25;;47161:8;47152:6;;:17;;;;;;;;;;;;;;;;;;47216:8;47185:40;;47206:8;47185:40;;;;;;;;;;;;47105:128;47042:191;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;10034:274::-;10128:13;7979:66;10187:18;;10177:5;10158:47;10154:147;;10229:15;10238:5;10229:8;:15::i;:::-;10222:22;;;;10154:147;10284:5;10277:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10034:274;;;;;:::o;67021:207::-;67081:15;67109:30;67142:7;:14;67150:5;67142:14;;;;;;;;;;;;;;;67109:47;;67177:15;:5;:13;:15::i;:::-;67167:25;;67203:17;:5;:15;:17::i;:::-;67098:130;67021:207;;;:::o;40353:167::-;40430:7;40457:55;40479:20;:18;:20::i;:::-;40501:10;40457:21;:55::i;:::-;40450:62;;40353:167;;;:::o;32932:236::-;33017:7;33038:17;33057:18;33079:25;33090:4;33096:1;33099;33102;33079:10;:25::i;:::-;33037:67;;;;33115:18;33127:5;33115:11;:18::i;:::-;33151:9;33144:16;;;;32932:236;;;;;;:::o;8307:292::-;8372:11;8396:17;8422:3;8396:30;;8455:2;8441:4;:11;:16;8437:74;;;8495:3;8481:18;;;;;;;;;;;:::i;:::-;;;;;;;;8437:74;8578:4;:11;8569:4;8561:13;;;:::i;:::-;8553:22;;:36;8545:45;;8521:70;;;8307:292;;;:::o;63169:91::-;;;;:::o;63864:90::-;;;;:::o;39529:182::-;39584:7;37445:95;39644:11;39657:14;39673:13;39696:4;39621:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39611:92;;;;;;39604:99;;39529:182;:::o;8688:415::-;8747:13;8773:11;8787:16;8798:4;8787:10;:16::i;:::-;8773:30;;8893:17;8924:2;8913:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8893:34;;9018:3;9013;9006:16;9059:4;9052;9047:3;9043:14;9036:28;9092:3;9085:10;;;;8688:415;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;34716:406::-;34809:12;34919:4;34913:11;34950:10;34945:3;34938:23;34998:15;34991:4;34986:3;34982:14;34975:39;35051:10;35044:4;35039:3;35035:14;35028:34;35099:4;35094:3;35084:20;35076:28;;34887:228;34716:406;;;;:::o;31316:1477::-;31404:7;31413:12;32338:66;32333:1;32325:10;;:79;32321:163;;;32437:1;32441:30;32421:51;;;;;;32321:163;32581:14;32598:24;32608:4;32614:1;32617;32620;32598:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32581:41;;32655:1;32637:20;;:6;:20;;;32633:103;;32690:1;32694:29;32674:50;;;;;;;32633:103;32756:6;32764:20;32748:37;;;;;31316:1477;;;;;;;;:::o;26776:521::-;26854:20;26845:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;26841:449;26891:7;26841:449;26952:29;26943:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;26939:351;;26998:34;;;;;;;;;;:::i;:::-;;;;;;;;26939:351;27063:35;27054:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;27050:240;;27115:41;;;;;;;;;;:::i;:::-;;;;;;;;27050:240;27187:30;27178:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;27174:116;;27234:44;;;;;;;;;;:::i;:::-;;;;;;;;27174:116;26776:521;;:::o;9180:251::-;9241:7;9261:14;9314:4;9305;9278:33;;:40;9261:57;;9342:2;9333:6;:11;9329:71;;;9368:20;;;;;;;;;;;;;;9329:71;9417:6;9410:13;;;9180:251;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:149::-;5659:7;5699:66;5692:5;5688:78;5677:89;;5623:149;;;:::o;5778:115::-;5863:23;5880:5;5863:23;:::i;:::-;5858:3;5851:36;5778:115;;:::o;5899:118::-;5986:24;6004:5;5986:24;:::i;:::-;5981:3;5974:37;5899:118;;:::o;6023:114::-;6090:6;6124:5;6118:12;6108:22;;6023:114;;;:::o;6143:184::-;6242:11;6276:6;6271:3;6264:19;6316:4;6311:3;6307:14;6292:29;;6143:184;;;;:::o;6333:132::-;6400:4;6423:3;6415:11;;6453:4;6448:3;6444:14;6436:22;;6333:132;;;:::o;6471:108::-;6548:24;6566:5;6548:24;:::i;:::-;6543:3;6536:37;6471:108;;:::o;6585:179::-;6654:10;6675:46;6717:3;6709:6;6675:46;:::i;:::-;6753:4;6748:3;6744:14;6730:28;;6585:179;;;;:::o;6770:113::-;6840:4;6872;6867:3;6863:14;6855:22;;6770:113;;;:::o;6919:732::-;7038:3;7067:54;7115:5;7067:54;:::i;:::-;7137:86;7216:6;7211:3;7137:86;:::i;:::-;7130:93;;7247:56;7297:5;7247:56;:::i;:::-;7326:7;7357:1;7342:284;7367:6;7364:1;7361:13;7342:284;;;7443:6;7437:13;7470:63;7529:3;7514:13;7470:63;:::i;:::-;7463:70;;7556:60;7609:6;7556:60;:::i;:::-;7546:70;;7402:224;7389:1;7386;7382:9;7377:14;;7342:284;;;7346:14;7642:3;7635:10;;7043:608;;;6919:732;;;;:::o;7657:1215::-;8006:4;8044:3;8033:9;8029:19;8021:27;;8058:69;8124:1;8113:9;8109:17;8100:6;8058:69;:::i;:::-;8174:9;8168:4;8164:20;8159:2;8148:9;8144:18;8137:48;8202:78;8275:4;8266:6;8202:78;:::i;:::-;8194:86;;8327:9;8321:4;8317:20;8312:2;8301:9;8297:18;8290:48;8355:78;8428:4;8419:6;8355:78;:::i;:::-;8347:86;;8443:72;8511:2;8500:9;8496:18;8487:6;8443:72;:::i;:::-;8525:73;8593:3;8582:9;8578:19;8569:6;8525:73;:::i;:::-;8608;8676:3;8665:9;8661:19;8652:6;8608:73;:::i;:::-;8729:9;8723:4;8719:20;8713:3;8702:9;8698:19;8691:49;8757:108;8860:4;8851:6;8757:108;:::i;:::-;8749:116;;7657:1215;;;;;;;;;;:::o;8878:222::-;8971:4;9009:2;8998:9;8994:18;8986:26;;9022:71;9090:1;9079:9;9075:17;9066:6;9022:71;:::i;:::-;8878:222;;;;:::o;9106:118::-;9177:22;9193:5;9177:22;:::i;:::-;9170:5;9167:33;9157:61;;9214:1;9211;9204:12;9157:61;9106:118;:::o;9230:135::-;9274:5;9312:6;9299:20;9290:29;;9328:31;9353:5;9328:31;:::i;:::-;9230:135;;;;:::o;9371:122::-;9444:24;9462:5;9444:24;:::i;:::-;9437:5;9434:35;9424:63;;9483:1;9480;9473:12;9424:63;9371:122;:::o;9499:139::-;9545:5;9583:6;9570:20;9561:29;;9599:33;9626:5;9599:33;:::i;:::-;9499:139;;;;:::o;9644:1199::-;9755:6;9763;9771;9779;9787;9795;9803;9852:3;9840:9;9831:7;9827:23;9823:33;9820:120;;;9859:79;;:::i;:::-;9820:120;9979:1;10004:53;10049:7;10040:6;10029:9;10025:22;10004:53;:::i;:::-;9994:63;;9950:117;10106:2;10132:53;10177:7;10168:6;10157:9;10153:22;10132:53;:::i;:::-;10122:63;;10077:118;10234:2;10260:53;10305:7;10296:6;10285:9;10281:22;10260:53;:::i;:::-;10250:63;;10205:118;10362:2;10388:53;10433:7;10424:6;10413:9;10409:22;10388:53;:::i;:::-;10378:63;;10333:118;10490:3;10517:51;10560:7;10551:6;10540:9;10536:22;10517:51;:::i;:::-;10507:61;;10461:117;10617:3;10644:53;10689:7;10680:6;10669:9;10665:22;10644:53;:::i;:::-;10634:63;;10588:119;10746:3;10773:53;10818:7;10809:6;10798:9;10794:22;10773:53;:::i;:::-;10763:63;;10717:119;9644:1199;;;;;;;;;;:::o;10849:474::-;10917:6;10925;10974:2;10962:9;10953:7;10949:23;10945:32;10942:119;;;10980:79;;:::i;:::-;10942:119;11100:1;11125:53;11170:7;11161:6;11150:9;11146:22;11125:53;:::i;:::-;11115:63;;11071:117;11227:2;11253:53;11298:7;11289:6;11278:9;11274:22;11253:53;:::i;:::-;11243:63;;11198:118;10849:474;;;;;:::o;11329:180::-;11377:77;11374:1;11367:88;11474:4;11471:1;11464:15;11498:4;11495:1;11488:15;11515:320;11559:6;11596:1;11590:4;11586:12;11576:22;;11643:1;11637:4;11633:12;11664:18;11654:81;;11720:4;11712:6;11708:17;11698:27;;11654:81;11782:2;11774:6;11771:14;11751:18;11748:38;11745:84;;11801:18;;:::i;:::-;11745:84;11566:269;11515:320;;;:::o;11841:180::-;11889:77;11886:1;11879:88;11986:4;11983:1;11976:15;12010:4;12007:1;12000:15;12027:191;12067:3;12086:20;12104:1;12086:20;:::i;:::-;12081:25;;12120:20;12138:1;12120:20;:::i;:::-;12115:25;;12163:1;12160;12156:9;12149:16;;12184:3;12181:1;12178:10;12175:36;;;12191:18;;:::i;:::-;12175:36;12027:191;;;;:::o;12224:180::-;12272:77;12269:1;12262:88;12369:4;12366:1;12359:15;12393:4;12390:1;12383:15;12410:224;12550:34;12546:1;12538:6;12534:14;12527:58;12619:7;12614:2;12606:6;12602:15;12595:32;12410:224;:::o;12640:366::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12640:366;;;:::o;13012:419::-;13178:4;13216:2;13205:9;13201:18;13193:26;;13265:9;13259:4;13255:20;13251:1;13240:9;13236:17;13229:47;13293:131;13419:4;13293:131;:::i;:::-;13285:139;;13012:419;;;:::o;13437:179::-;13577:31;13573:1;13565:6;13561:14;13554:55;13437:179;:::o;13622:366::-;13764:3;13785:67;13849:2;13844:3;13785:67;:::i;:::-;13778:74;;13861:93;13950:3;13861:93;:::i;:::-;13979:2;13974:3;13970:12;13963:19;;13622:366;;;:::o;13994:419::-;14160:4;14198:2;14187:9;14183:18;14175:26;;14247:9;14241:4;14237:20;14233:1;14222:9;14218:17;14211:47;14275:131;14401:4;14275:131;:::i;:::-;14267:139;;13994:419;;;:::o;14419:775::-;14652:4;14690:3;14679:9;14675:19;14667:27;;14704:71;14772:1;14761:9;14757:17;14748:6;14704:71;:::i;:::-;14785:72;14853:2;14842:9;14838:18;14829:6;14785:72;:::i;:::-;14867;14935:2;14924:9;14920:18;14911:6;14867:72;:::i;:::-;14949;15017:2;15006:9;15002:18;14993:6;14949:72;:::i;:::-;15031:73;15099:3;15088:9;15084:19;15075:6;15031:73;:::i;:::-;15114;15182:3;15171:9;15167:19;15158:6;15114:73;:::i;:::-;14419:775;;;;;;;;;:::o;15200:180::-;15340:32;15336:1;15328:6;15324:14;15317:56;15200:180;:::o;15386:366::-;15528:3;15549:67;15613:2;15608:3;15549:67;:::i;:::-;15542:74;;15625:93;15714:3;15625:93;:::i;:::-;15743:2;15738:3;15734:12;15727:19;;15386:366;;;:::o;15758:419::-;15924:4;15962:2;15951:9;15947:18;15939:26;;16011:9;16005:4;16001:20;15997:1;15986:9;15982:17;15975:47;16039:131;16165:4;16039:131;:::i;:::-;16031:139;;15758:419;;;:::o;16183:225::-;16323:34;16319:1;16311:6;16307:14;16300:58;16392:8;16387:2;16379:6;16375:15;16368:33;16183:225;:::o;16414:366::-;16556:3;16577:67;16641:2;16636:3;16577:67;:::i;:::-;16570:74;;16653:93;16742:3;16653:93;:::i;:::-;16771:2;16766:3;16762:12;16755:19;;16414:366;;;:::o;16786:419::-;16952:4;16990:2;16979:9;16975:18;16967:26;;17039:9;17033:4;17029:20;17025:1;17014:9;17010:17;17003:47;17067:131;17193:4;17067:131;:::i;:::-;17059:139;;16786:419;;;:::o;17211:141::-;17260:4;17283:3;17275:11;;17306:3;17303:1;17296:14;17340:4;17337:1;17327:18;17319:26;;17211:141;;;:::o;17358:93::-;17395:6;17442:2;17437;17430:5;17426:14;17422:23;17412:33;;17358:93;;;:::o;17457:107::-;17501:8;17551:5;17545:4;17541:16;17520:37;;17457:107;;;;:::o;17570:393::-;17639:6;17689:1;17677:10;17673:18;17712:97;17742:66;17731:9;17712:97;:::i;:::-;17830:39;17860:8;17849:9;17830:39;:::i;:::-;17818:51;;17902:4;17898:9;17891:5;17887:21;17878:30;;17951:4;17941:8;17937:19;17930:5;17927:30;17917:40;;17646:317;;17570:393;;;;;:::o;17969:60::-;17997:3;18018:5;18011:12;;17969:60;;;:::o;18035:142::-;18085:9;18118:53;18136:34;18145:24;18163:5;18145:24;:::i;:::-;18136:34;:::i;:::-;18118:53;:::i;:::-;18105:66;;18035:142;;;:::o;18183:75::-;18226:3;18247:5;18240:12;;18183:75;;;:::o;18264:269::-;18374:39;18405:7;18374:39;:::i;:::-;18435:91;18484:41;18508:16;18484:41;:::i;:::-;18476:6;18469:4;18463:11;18435:91;:::i;:::-;18429:4;18422:105;18340:193;18264:269;;;:::o;18539:73::-;18584:3;18539:73;:::o;18618:189::-;18695:32;;:::i;:::-;18736:65;18794:6;18786;18780:4;18736:65;:::i;:::-;18671:136;18618:189;;:::o;18813:186::-;18873:120;18890:3;18883:5;18880:14;18873:120;;;18944:39;18981:1;18974:5;18944:39;:::i;:::-;18917:1;18910:5;18906:13;18897:22;;18873:120;;;18813:186;;:::o;19005:543::-;19106:2;19101:3;19098:11;19095:446;;;19140:38;19172:5;19140:38;:::i;:::-;19224:29;19242:10;19224:29;:::i;:::-;19214:8;19210:44;19407:2;19395:10;19392:18;19389:49;;;19428:8;19413:23;;19389:49;19451:80;19507:22;19525:3;19507:22;:::i;:::-;19497:8;19493:37;19480:11;19451:80;:::i;:::-;19110:431;;19095:446;19005:543;;;:::o;19554:117::-;19608:8;19658:5;19652:4;19648:16;19627:37;;19554:117;;;;:::o;19677:169::-;19721:6;19754:51;19802:1;19798:6;19790:5;19787:1;19783:13;19754:51;:::i;:::-;19750:56;19835:4;19829;19825:15;19815:25;;19728:118;19677:169;;;;:::o;19851:295::-;19927:4;20073:29;20098:3;20092:4;20073:29;:::i;:::-;20065:37;;20135:3;20132:1;20128:11;20122:4;20119:21;20111:29;;19851:295;;;;:::o;20151:1395::-;20268:37;20301:3;20268:37;:::i;:::-;20370:18;20362:6;20359:30;20356:56;;;20392:18;;:::i;:::-;20356:56;20436:38;20468:4;20462:11;20436:38;:::i;:::-;20521:67;20581:6;20573;20567:4;20521:67;:::i;:::-;20615:1;20639:4;20626:17;;20671:2;20663:6;20660:14;20688:1;20683:618;;;;21345:1;21362:6;21359:77;;;21411:9;21406:3;21402:19;21396:26;21387:35;;21359:77;21462:67;21522:6;21515:5;21462:67;:::i;:::-;21456:4;21449:81;21318:222;20653:887;;20683:618;20735:4;20731:9;20723:6;20719:22;20769:37;20801:4;20769:37;:::i;:::-;20828:1;20842:208;20856:7;20853:1;20850:14;20842:208;;;20935:9;20930:3;20926:19;20920:26;20912:6;20905:42;20986:1;20978:6;20974:14;20964:24;;21033:2;21022:9;21018:18;21005:31;;20879:4;20876:1;20872:12;20867:17;;20842:208;;;21078:6;21069:7;21066:19;21063:179;;;21136:9;21131:3;21127:19;21121:26;21179:48;21221:4;21213:6;21209:17;21198:9;21179:48;:::i;:::-;21171:6;21164:64;21086:156;21063:179;21288:1;21284;21276:6;21272:14;21268:22;21262:4;21255:36;20690:611;;;20653:887;;20243:1303;;;20151:1395;;:::o;21552:223::-;21692:34;21688:1;21680:6;21676:14;21669:58;21761:6;21756:2;21748:6;21744:15;21737:31;21552:223;:::o;21781:366::-;21923:3;21944:67;22008:2;22003:3;21944:67;:::i;:::-;21937:74;;22020:93;22109:3;22020:93;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;21781:366;;;:::o;22153:419::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:221::-;22718:34;22714:1;22706:6;22702:14;22695:58;22787:4;22782:2;22774:6;22770:15;22763:29;22578:221;:::o;22805:366::-;22947:3;22968:67;23032:2;23027:3;22968:67;:::i;:::-;22961:74;;23044:93;23133:3;23044:93;:::i;:::-;23162:2;23157:3;23153:12;23146:19;;22805:366;;;:::o;23177:419::-;23343:4;23381:2;23370:9;23366:18;23358:26;;23430:9;23424:4;23420:20;23416:1;23405:9;23401:17;23394:47;23458:131;23584:4;23458:131;:::i;:::-;23450:139;;23177:419;;;:::o;23602:179::-;23742:31;23738:1;23730:6;23726:14;23719:55;23602:179;:::o;23787:366::-;23929:3;23950:67;24014:2;24009:3;23950:67;:::i;:::-;23943:74;;24026:93;24115:3;24026:93;:::i;:::-;24144:2;24139:3;24135:12;24128:19;;23787:366;;;:::o;24159:419::-;24325:4;24363:2;24352:9;24348:18;24340:26;;24412:9;24406:4;24402:20;24398:1;24387:9;24383:17;24376:47;24440:131;24566:4;24440:131;:::i;:::-;24432:139;;24159:419;;;:::o;24584:224::-;24724:34;24720:1;24712:6;24708:14;24701:58;24793:7;24788:2;24780:6;24776:15;24769:32;24584:224;:::o;24814:366::-;24956:3;24977:67;25041:2;25036:3;24977:67;:::i;:::-;24970:74;;25053:93;25142:3;25053:93;:::i;:::-;25171:2;25166:3;25162:12;25155:19;;24814:366;;;:::o;25186:419::-;25352:4;25390:2;25379:9;25375:18;25367:26;;25439:9;25433:4;25429:20;25425:1;25414:9;25410:17;25403:47;25467:131;25593:4;25467:131;:::i;:::-;25459:139;;25186:419;;;:::o;25611:222::-;25751:34;25747:1;25739:6;25735:14;25728:58;25820:5;25815:2;25807:6;25803:15;25796:30;25611:222;:::o;25839:366::-;25981:3;26002:67;26066:2;26061:3;26002:67;:::i;:::-;25995:74;;26078:93;26167:3;26078:93;:::i;:::-;26196:2;26191:3;26187:12;26180:19;;25839:366;;;:::o;26211:419::-;26377:4;26415:2;26404:9;26400:18;26392:26;;26464:9;26458:4;26454:20;26450:1;26439:9;26435:17;26428:47;26492:131;26618:4;26492:131;:::i;:::-;26484:139;;26211:419;;;:::o;26636:225::-;26776:34;26772:1;26764:6;26760:14;26753:58;26845:8;26840:2;26832:6;26828:15;26821:33;26636:225;:::o;26867:366::-;27009:3;27030:67;27094:2;27089:3;27030:67;:::i;:::-;27023:74;;27106:93;27195:3;27106:93;:::i;:::-;27224:2;27219:3;27215:12;27208:19;;26867:366;;;:::o;27239:419::-;27405:4;27443:2;27432:9;27428:18;27420:26;;27492:9;27486:4;27482:20;27478:1;27467:9;27463:17;27456:47;27520:131;27646:4;27520:131;:::i;:::-;27512:139;;27239:419;;;:::o;27664:182::-;27804:34;27800:1;27792:6;27788:14;27781:58;27664:182;:::o;27852:366::-;27994:3;28015:67;28079:2;28074:3;28015:67;:::i;:::-;28008:74;;28091:93;28180:3;28091:93;:::i;:::-;28209:2;28204:3;28200:12;28193:19;;27852:366;;;:::o;28224:419::-;28390:4;28428:2;28417:9;28413:18;28405:26;;28477:9;28471:4;28467:20;28463:1;28452:9;28448:17;28441:47;28505:131;28631:4;28505:131;:::i;:::-;28497:139;;28224:419;;;:::o;28649:98::-;28700:6;28734:5;28728:12;28718:22;;28649:98;;;:::o;28753:116::-;28804:4;28827:3;28819:11;;28857:4;28852:3;28848:14;28840:22;;28753:116;;;:::o;28875:154::-;28918:11;28954:29;28978:3;28972:10;28954:29;:::i;:::-;29017:5;28993:29;;28930:99;28875:154;;;:::o;29035:594::-;29119:5;29150:38;29182:5;29150:38;:::i;:::-;29213:5;29240:40;29274:5;29240:40;:::i;:::-;29228:52;;29299:35;29325:8;29299:35;:::i;:::-;29290:44;;29358:2;29350:6;29347:14;29344:278;;;29429:169;29514:66;29484:6;29480:2;29476:15;29473:1;29469:23;29429:169;:::i;:::-;29406:5;29385:227;29376:236;;29344:278;29125:504;;29035:594;;;:::o;29635:664::-;29840:4;29878:3;29867:9;29863:19;29855:27;;29892:71;29960:1;29949:9;29945:17;29936:6;29892:71;:::i;:::-;29973:72;30041:2;30030:9;30026:18;30017:6;29973:72;:::i;:::-;30055;30123:2;30112:9;30108:18;30099:6;30055:72;:::i;:::-;30137;30205:2;30194:9;30190:18;30181:6;30137:72;:::i;:::-;30219:73;30287:3;30276:9;30272:19;30263:6;30219:73;:::i;:::-;29635:664;;;;;;;;:::o;30305:545::-;30478:4;30516:3;30505:9;30501:19;30493:27;;30530:71;30598:1;30587:9;30583:17;30574:6;30530:71;:::i;:::-;30611:68;30675:2;30664:9;30660:18;30651:6;30611:68;:::i;:::-;30689:72;30757:2;30746:9;30742:18;30733:6;30689:72;:::i;:::-;30771;30839:2;30828:9;30824:18;30815:6;30771:72;:::i;:::-;30305:545;;;;;;;:::o;30856:180::-;30904:77;30901:1;30894:88;31001:4;30998:1;30991:15;31025:4;31022:1;31015:15;31042:174;31182:26;31178:1;31170:6;31166:14;31159:50;31042:174;:::o;31222:366::-;31364:3;31385:67;31449:2;31444:3;31385:67;:::i;:::-;31378:74;;31461:93;31550:3;31461:93;:::i;:::-;31579:2;31574:3;31570:12;31563:19;;31222:366;;;:::o;31594:419::-;31760:4;31798:2;31787:9;31783:18;31775:26;;31847:9;31841:4;31837:20;31833:1;31822:9;31818:17;31811:47;31875:131;32001:4;31875:131;:::i;:::-;31867:139;;31594:419;;;:::o;32019:181::-;32159:33;32155:1;32147:6;32143:14;32136:57;32019:181;:::o;32206:366::-;32348:3;32369:67;32433:2;32428:3;32369:67;:::i;:::-;32362:74;;32445:93;32534:3;32445:93;:::i;:::-;32563:2;32558:3;32554:12;32547:19;;32206:366;;;:::o;32578:419::-;32744:4;32782:2;32771:9;32767:18;32759:26;;32831:9;32825:4;32821:20;32817:1;32806:9;32802:17;32795:47;32859:131;32985:4;32859:131;:::i;:::-;32851:139;;32578:419;;;:::o;33003:221::-;33143:34;33139:1;33131:6;33127:14;33120:58;33212:4;33207:2;33199:6;33195:15;33188:29;33003:221;:::o;33230:366::-;33372:3;33393:67;33457:2;33452:3;33393:67;:::i;:::-;33386:74;;33469:93;33558:3;33469:93;:::i;:::-;33587:2;33582:3;33578:12;33571:19;;33230:366;;;:::o;33602:419::-;33768:4;33806:2;33795:9;33791:18;33783:26;;33855:9;33849:4;33845:20;33841:1;33830:9;33826:17;33819:47;33883:131;34009:4;33883:131;:::i;:::-;33875:139;;33602:419;;;:::o

Swarm Source

ipfs://89e4c6e90d3dc8382439a6918cd0335e6a907564db7c2bbf68ceb0c37f3838e6
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.