ETH Price: $3,254.36 (+2.63%)
Gas: 2 Gwei

Token

Mike (MIKE)
 

Overview

Max Total Supply

10,000,000,000 MIKE

Holders

145

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.901250546806229795 MIKE

Value
$0.00
0x98da5ef3d2565e40dfce5d4f17cad60e15760f9a
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:
Mike

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-30
*/

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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);
    }

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

// 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/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/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/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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: mikecoinfinal/Final.sol


pragma solidity 0.8.20;





contract Mike is ERC20Permit, Ownable {
    uint256 constant NAUGHTY_TIMEOUT = 7200; // blocks
    address public immutable UNISWAP_V2_PAIR;

    mapping(address => uint256) public mikesNaughtyList;

    uint256 public maxWalletAmount;
    uint256 public deadblockExpiration;

    bool public limitsEnabled;
    bool public tradingActive;

    mapping(address => bool) private _exclusionList;

    constructor() ERC20Permit("Mike") ERC20("Mike", "MIKE") {
        _updateExclusionList(msg.sender, true);
        _mint(msg.sender, 10_000_000_000 ether);

        UNISWAP_V2_PAIR = IUniswapV2Factory(
            0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
        ).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "amount must be greater than 0");

        if (!tradingActive) {
            require(
                isExcluded(from) || isExcluded(to),
                "transfers are not yet active"
            );
        }

        if (isNaughty(from)) {
            require(
                block.number > mikesNaughtyList[from],
                "MikesNFT has timed you out! Boop!"
            );
        }

        if (limitsEnabled) {
            if (from == UNISWAP_V2_PAIR && !isExcluded(to)) {
                if (block.number < deadblockExpiration) {
                    mikesNaughtyList[to] = block.number + NAUGHTY_TIMEOUT;
                }
            } else if (to == UNISWAP_V2_PAIR && !isExcluded(from)) {
                if (block.number < deadblockExpiration) {
                    mikesNaughtyList[from] = block.number + NAUGHTY_TIMEOUT;
                }
            }

            if (
                to != UNISWAP_V2_PAIR &&
                !isExcluded(to) &&
                !isExcluded(from) &&
                maxWalletAmount > 0
            ) {
                require(
                    balanceOf(to) + amount <= maxWalletAmount,
                    "amount exceeds wallet limit"
                );
            }
        }

        super._transfer(from, to, amount);
    }

    function updateTradingStatus(uint256 deadBlocks) external onlyOwner {
        updateLimitsEnabled(true);

        tradingActive = true;

        if (deadblockExpiration == 0) {
            deadblockExpiration = block.number + deadBlocks;
        }
    }

    function updateExclusionList(
        address[] calldata addresses,
        bool value
    ) public onlyOwner {
        for (uint256 i; i < addresses.length; ) {
            _updateExclusionList(addresses[i], value);
            unchecked {
                i++;
            }
        }
    }

    function _updateExclusionList(address account, bool value) private {
        _exclusionList[account] = value;
    }

    function isExcluded(address account) public view returns (bool) {
        return _exclusionList[account];
    }

    function updateMikesNaughtyList(
        address[] calldata addresses,
        uint256 blockNumber
    ) external onlyOwner {
        for (uint256 i; i < addresses.length; ) {
            mikesNaughtyList[addresses[i]] = blockNumber;
            unchecked {
                i++;
            }
        }
    }

    function isNaughty(address account) public view returns (bool) {
        return !isExcluded(account) && mikesNaughtyList[account] > 0;
    }

    function updateMaxWalletAmount(uint256 newAmount) external onlyOwner {
        maxWalletAmount = newAmount;
    }

    function updateLimitsEnabled(bool enabled) public onlyOwner {
        limitsEnabled = enabled;
    }
}

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":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"deadblockExpiration","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isNaughty","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mikesNaughtyList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"updateExclusionList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"updateMikesNaughtyList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"deadBlocks","type":"uint256"}],"name":"updateTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61018060405234801562000011575f80fd5b506040518060400160405280600481526020017f4d696b6500000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d696b65000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d494b45000000000000000000000000000000000000000000000000000000008152508160039081620000fc91906200090e565b5080600490816200010e91906200090e565b50505062000127600583620002f560201b90919060201c565b610120818152505062000145600682620002f560201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a08181525050620001846200034a60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620001e2620001d6620003a660201b60201c565b620003ad60201b60201c565b620001f53360016200047060201b60201c565b62000213336b204fce5e3e25026110000000620004c860201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b81526004016200027892919062000a35565b6020604051808303815f875af115801562000295573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002bb919062000a93565b73ffffffffffffffffffffffffffffffffffffffff166101608173ffffffffffffffffffffffffffffffffffffffff168152505062000d83565b5f6020835110156200031a5762000312836200062d60201b60201c565b905062000344565b826200032c836200069760201b60201c565b5f0190816200033c91906200090e565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e0516101005146306040516020016200038b95949392919062000aee565b60405160208183030381529060405280519060200120905090565b5f33905090565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005309062000ba7565b60405180910390fd5b6200054c5f8383620006a060201b60201c565b8060025f8282546200055f919062000bf4565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200060e919062000c2e565b60405180910390a3620006295f8383620006a560201b60201c565b5050565b5f80829050601f815111156200067c57826040517f305a27a900000000000000000000000000000000000000000000000000000000815260040162000673919062000cc3565b60405180910390fd5b8051816200068a9062000d14565b5f1c175f1b915050919050565b5f819050919050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200072657607f821691505b6020821081036200073c576200073b620006e1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000763565b620007ac868362000763565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007f6620007f0620007ea84620007c4565b620007cd565b620007c4565b9050919050565b5f819050919050565b6200081183620007d6565b620008296200082082620007fd565b8484546200076f565b825550505050565b5f90565b6200083f62000831565b6200084c81848462000806565b505050565b5b818110156200087357620008675f8262000835565b60018101905062000852565b5050565b601f821115620008c2576200088c8162000742565b620008978462000754565b81016020851015620008a7578190505b620008bf620008b68562000754565b83018262000851565b50505b505050565b5f82821c905092915050565b5f620008e45f1984600802620008c7565b1980831691505092915050565b5f620008fe8383620008d3565b9150826002028217905092915050565b6200091982620006aa565b67ffffffffffffffff811115620009355762000934620006b4565b5b6200094182546200070e565b6200094e82828562000877565b5f60209050601f83116001811462000984575f84156200096f578287015190505b6200097b8582620008f1565b865550620009ea565b601f198416620009948662000742565b5f5b82811015620009bd5784890151825560018201915060208501945060208101905062000996565b86831015620009dd5784890151620009d9601f891682620008d3565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000a1d82620009f2565b9050919050565b62000a2f8162000a11565b82525050565b5f60408201905062000a4a5f83018562000a24565b62000a59602083018462000a24565b9392505050565b5f80fd5b62000a6f8162000a11565b811462000a7a575f80fd5b50565b5f8151905062000a8d8162000a64565b92915050565b5f6020828403121562000aab5762000aaa62000a60565b5b5f62000aba8482850162000a7d565b91505092915050565b5f819050919050565b62000ad78162000ac3565b82525050565b62000ae881620007c4565b82525050565b5f60a08201905062000b035f83018862000acc565b62000b12602083018762000acc565b62000b21604083018662000acc565b62000b30606083018562000add565b62000b3f608083018462000a24565b9695505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000b8f601f8362000b49565b915062000b9c8262000b59565b602082019050919050565b5f6020820190508181035f83015262000bc08162000b81565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000c0082620007c4565b915062000c0d83620007c4565b925082820190508082111562000c285762000c2762000bc7565b5b92915050565b5f60208201905062000c435f83018462000add565b92915050565b5f5b8381101562000c6857808201518184015260208101905062000c4b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f62000c8f82620006aa565b62000c9b818562000b49565b935062000cad81856020860162000c49565b62000cb88162000c73565b840191505092915050565b5f6020820190508181035f83015262000cdd818462000c83565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f62000d0b825162000ac3565b80915050919050565b5f62000d208262000ce5565b8262000d2c8462000cef565b905062000d398162000cfe565b9250602082101562000d7c5762000d777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080262000763565b831692505b5050919050565b60805160a05160c05160e0516101005161012051610140516101605161316c62000df45f395f8181610efc015281816112c60152818161138b015261144d01525f6108d701525f6108a301525f611b9101525f611b7001525f61153e01525f61159401525f6115bd015261316c5ff3fe608060405234801561000f575f80fd5b50600436106101e3575f3560e01c80638da5cb5b1161010d578063be3a7e57116100a0578063d9dc21281161006f578063d9dc212814610599578063dd62ed3e146105c9578063f2fde38b146105f9578063f40acc3d14610615576101e3565b8063be3a7e5714610515578063c18bc19514610531578063cba0e9961461054d578063d505accf1461057d576101e3565b8063aa4bde28116100dc578063aa4bde28146104a1578063af83ab01146104bf578063b787d572146104db578063bbc0c742146104f7576101e3565b80638da5cb5b1461040557806395d89b4114610423578063a457c2d714610441578063a9059cbb14610471576101e3565b80633582ad2311610185578063715018a611610154578063715018a61461038b5780637897aa77146103955780637ecebe00146103b157806384b0196e146103e1576101e3565b80633582ad23146102ef5780633644e5151461030d578063395093511461032b57806370a082311461035b576101e3565b80631156f209116101c15780631156f2091461026557806318160ddd1461028357806323b872dd146102a1578063313ce567146102d1576101e3565b806306fdde03146101e7578063095ea7b3146102055780630b839a2614610235575b5f80fd5b6101ef610633565b6040516101fc9190611fc6565b60405180910390f35b61021f600480360381019061021a919061207b565b6106c3565b60405161022c91906120d3565b60405180910390f35b61024f600480360381019061024a91906120ec565b6106e5565b60405161025c9190612126565b60405180910390f35b61026d6106fa565b60405161027a9190612126565b60405180910390f35b61028b610700565b6040516102989190612126565b60405180910390f35b6102bb60048036038101906102b6919061213f565b610709565b6040516102c891906120d3565b60405180910390f35b6102d9610737565b6040516102e691906121aa565b60405180910390f35b6102f761073f565b60405161030491906120d3565b60405180910390f35b610315610751565b60405161032291906121db565b60405180910390f35b6103456004803603810190610340919061207b565b61075f565b60405161035291906120d3565b60405180910390f35b610375600480360381019061037091906120ec565b610795565b6040516103829190612126565b60405180910390f35b6103936107da565b005b6103af60048036038101906103aa919061227f565b6107ed565b005b6103cb60048036038101906103c691906120ec565b610846565b6040516103d89190612126565b60405180910390f35b6103e9610893565b6040516103fc97969594939291906123dc565b60405180910390f35b61040d610990565b60405161041a919061245e565b60405180910390f35b61042b6109b8565b6040516104389190611fc6565b60405180910390f35b61045b6004803603810190610456919061207b565b610a48565b60405161046891906120d3565b60405180910390f35b61048b6004803603810190610486919061207b565b610abd565b60405161049891906120d3565b60405180910390f35b6104a9610adf565b6040516104b69190612126565b60405180910390f35b6104d960048036038101906104d49190612477565b610ae5565b005b6104f560048036038101906104f091906124d4565b610b76565b005b6104ff610bc2565b60405161050c91906120d3565b60405180910390f35b61052f600480360381019061052a91906124ff565b610bd5565b005b61054b600480360381019061054691906124d4565b610bf9565b005b610567600480360381019061056291906120ec565b610c0b565b60405161057491906120d3565b60405180910390f35b6105976004803603810190610592919061257e565b610c5d565b005b6105b360048036038101906105ae91906120ec565b610d9c565b6040516105c091906120d3565b60405180910390f35b6105e360048036038101906105de919061261b565b610df6565b6040516105f09190612126565b60405180910390f35b610613600480360381019061060e91906120ec565b610e78565b005b61061d610efa565b60405161062a919061245e565b60405180910390f35b60606003805461064290612686565b80601f016020809104026020016040519081016040528092919081815260200182805461066e90612686565b80156106b95780601f10610690576101008083540402835291602001916106b9565b820191905f5260205f20905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b5f806106cd610f1e565b90506106da818585610f25565b600191505092915050565b600a602052805f5260405f205f915090505481565b600c5481565b5f600254905090565b5f80610713610f1e565b90506107208582856110e8565b61072b858585611173565b60019150509392505050565b5f6012905090565b600d5f9054906101000a900460ff1681565b5f61075a61153b565b905090565b5f80610769610f1e565b905061078a81858561077b8589610df6565b61078591906126e3565b610f25565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107e26115f1565b6107eb5f61166f565b565b6107f56115f1565b5f5b838390508110156108405761083384848381811061081857610817612716565b5b905060200201602081019061082d91906120ec565b83611732565b80806001019150506107f7565b50505050565b5f61088c60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2061178a565b9050919050565b5f6060805f805f60606108d060057f000000000000000000000000000000000000000000000000000000000000000061179690919063ffffffff16565b61090460067f000000000000000000000000000000000000000000000000000000000000000061179690919063ffffffff16565b46305f801b5f67ffffffffffffffff81111561092357610922612743565b5b6040519080825280602002602001820160405280156109515781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109c790612686565b80601f01602080910402602001604051908101604052809291908181526020018280546109f390612686565b8015610a3e5780601f10610a1557610100808354040283529160200191610a3e565b820191905f5260205f20905b815481529060010190602001808311610a2157829003601f168201915b5050505050905090565b5f80610a52610f1e565b90505f610a5f8286610df6565b905083811015610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906127e0565b60405180910390fd5b610ab18286868403610f25565b60019250505092915050565b5f80610ac7610f1e565b9050610ad4818585611173565b600191505092915050565b600b5481565b610aed6115f1565b5f5b83839050811015610b705781600a5f868685818110610b1157610b10612716565b5b9050602002016020810190610b2691906120ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050610aef565b50505050565b610b7e6115f1565b610b886001610bd5565b6001600d60016101000a81548160ff0219169083151502179055505f600c5403610bbf578043610bb891906126e3565b600c819055505b50565b600d60019054906101000a900460ff1681565b610bdd6115f1565b80600d5f6101000a81548160ff02191690831515021790555050565b610c016115f1565b80600b8190555050565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b83421115610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612848565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610cce8c611843565b89604051602001610ce496959493929190612866565b6040516020818303038152906040528051906020012090505f610d068261189e565b90505f610d15828787876118b7565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061290f565b60405180910390fd5b610d908a8a8a610f25565b50505050505050505050565b5f610da682610c0b565b158015610def57505f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054115b9050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e806115f1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee59061299d565b60405180910390fd5b610ef78161166f565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90612a2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612ab9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110db9190612126565b60405180910390a3505050565b5f6110f38484610df6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116d578181101561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612b21565b60405180910390fd5b61116c8484848403610f25565b5b50505050565b5f81116111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612b89565b60405180910390fd5b600d60019054906101000a900460ff16611222576111d283610c0b565b806111e257506111e182610c0b565b5b611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612bf1565b60405180910390fd5b5b61122b83610d9c565b156112b057600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205443116112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612c7f565b60405180910390fd5b5b600d5f9054906101000a900460ff161561152b577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611325575061132382610c0b565b155b1561138957600c5443101561138457611c204361134291906126e3565b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61144b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156113ea57506113e883610c0b565b155b1561144a57600c5443101561144957611c204361140791906126e3565b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114ad57506114ab82610c0b565b155b80156114bf57506114bd83610c0b565b155b80156114cc57505f600b54115b1561152a57600b54816114de84610795565b6114e891906126e3565b1115611529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152090612ce7565b60405180910390fd5b5b5b6115368383836118e0565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156115b657507f000000000000000000000000000000000000000000000000000000000000000046145b156115e3577f000000000000000000000000000000000000000000000000000000000000000090506115ee565b6115eb611b4c565b90505b90565b6115f9610f1e565b73ffffffffffffffffffffffffffffffffffffffff16611617610990565b73ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490612d4f565b60405180910390fd5b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f815f01549050919050565b606060ff5f1b83146117b2576117ab83611be1565b905061183d565b8180546117be90612686565b80601f01602080910402602001604051908101604052809291908181526020018280546117ea90612686565b80156118355780601f1061180c57610100808354040283529160200191611835565b820191905f5260205f20905b81548152906001019060200180831161181857829003601f168201915b505050505090505b92915050565b5f8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20905061188d8161178a565b915061189881611c53565b50919050565b5f6118b06118aa61153b565b83611c67565b9050919050565b5f805f6118c687878787611ca7565b915091506118d381611d7f565b8192505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590612ddd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612e6b565b60405180910390fd5b6119c7838383611ee4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190612ef9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b339190612126565b60405180910390a3611b46848484611ee9565b50505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000004630604051602001611bc6959493929190612f17565b60405160208183030381529060405280519060200120905090565b60605f611bed83611eee565b90505f602067ffffffffffffffff811115611c0b57611c0a612743565b5b6040519080825280601f01601f191660200182016040528015611c3d5781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b6001815f015f828254019250508190555050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0835f1c1115611cdf575f600391509150611d76565b5f6001878787876040515f8152602001604052604051611d029493929190612f68565b6020604051602081039080840390855afa158015611d22573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d6e575f60019250925050611d76565b805f92509250505b94509492505050565b5f6004811115611d9257611d91612fab565b5b816004811115611da557611da4612fab565b5b0315611ee15760016004811115611dbf57611dbe612fab565b5b816004811115611dd257611dd1612fab565b5b03611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613022565b60405180910390fd5b60026004811115611e2657611e25612fab565b5b816004811115611e3957611e38612fab565b5b03611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e709061308a565b60405180910390fd5b60036004811115611e8d57611e8c612fab565b5b816004811115611ea057611e9f612fab565b5b03611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790613118565b60405180910390fd5b5b50565b505050565b505050565b5f8060ff835f1c169050601f811115611f33576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f73578082015181840152602081019050611f58565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f9882611f3c565b611fa28185611f46565b9350611fb2818560208601611f56565b611fbb81611f7e565b840191505092915050565b5f6020820190508181035f830152611fde8184611f8e565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61201782611fee565b9050919050565b6120278161200d565b8114612031575f80fd5b50565b5f813590506120428161201e565b92915050565b5f819050919050565b61205a81612048565b8114612064575f80fd5b50565b5f8135905061207581612051565b92915050565b5f806040838503121561209157612090611fe6565b5b5f61209e85828601612034565b92505060206120af85828601612067565b9150509250929050565b5f8115159050919050565b6120cd816120b9565b82525050565b5f6020820190506120e65f8301846120c4565b92915050565b5f6020828403121561210157612100611fe6565b5b5f61210e84828501612034565b91505092915050565b61212081612048565b82525050565b5f6020820190506121395f830184612117565b92915050565b5f805f6060848603121561215657612155611fe6565b5b5f61216386828701612034565b935050602061217486828701612034565b925050604061218586828701612067565b9150509250925092565b5f60ff82169050919050565b6121a48161218f565b82525050565b5f6020820190506121bd5f83018461219b565b92915050565b5f819050919050565b6121d5816121c3565b82525050565b5f6020820190506121ee5f8301846121cc565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612215576122146121f4565b5b8235905067ffffffffffffffff811115612232576122316121f8565b5b60208301915083602082028301111561224e5761224d6121fc565b5b9250929050565b61225e816120b9565b8114612268575f80fd5b50565b5f8135905061227981612255565b92915050565b5f805f6040848603121561229657612295611fe6565b5b5f84013567ffffffffffffffff8111156122b3576122b2611fea565b5b6122bf86828701612200565b935093505060206122d28682870161226b565b9150509250925092565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b612310816122dc565b82525050565b61231f8161200d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61235781612048565b82525050565b5f612368838361234e565b60208301905092915050565b5f602082019050919050565b5f61238a82612325565b612394818561232f565b935061239f8361233f565b805f5b838110156123cf5781516123b6888261235d565b97506123c183612374565b9250506001810190506123a2565b5085935050505092915050565b5f60e0820190506123ef5f83018a612307565b81810360208301526124018189611f8e565b905081810360408301526124158188611f8e565b90506124246060830187612117565b6124316080830186612316565b61243e60a08301856121cc565b81810360c08301526124508184612380565b905098975050505050505050565b5f6020820190506124715f830184612316565b92915050565b5f805f6040848603121561248e5761248d611fe6565b5b5f84013567ffffffffffffffff8111156124ab576124aa611fea565b5b6124b786828701612200565b935093505060206124ca86828701612067565b9150509250925092565b5f602082840312156124e9576124e8611fe6565b5b5f6124f684828501612067565b91505092915050565b5f6020828403121561251457612513611fe6565b5b5f6125218482850161226b565b91505092915050565b6125338161218f565b811461253d575f80fd5b50565b5f8135905061254e8161252a565b92915050565b61255d816121c3565b8114612567575f80fd5b50565b5f8135905061257881612554565b92915050565b5f805f805f805f60e0888a03121561259957612598611fe6565b5b5f6125a68a828b01612034565b97505060206125b78a828b01612034565b96505060406125c88a828b01612067565b95505060606125d98a828b01612067565b94505060806125ea8a828b01612540565b93505060a06125fb8a828b0161256a565b92505060c061260c8a828b0161256a565b91505092959891949750929550565b5f806040838503121561263157612630611fe6565b5b5f61263e85828601612034565b925050602061264f85828601612034565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061269d57607f821691505b6020821081036126b0576126af612659565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6126ed82612048565b91506126f883612048565b92508282019050808211156127105761270f6126b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6127ca602583611f46565b91506127d582612770565b604082019050919050565b5f6020820190508181035f8301526127f7816127be565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e650000005f82015250565b5f612832601d83611f46565b915061283d826127fe565b602082019050919050565b5f6020820190508181035f83015261285f81612826565b9050919050565b5f60c0820190506128795f8301896121cc565b6128866020830188612316565b6128936040830187612316565b6128a06060830186612117565b6128ad6080830185612117565b6128ba60a0830184612117565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e617475726500005f82015250565b5f6128f9601e83611f46565b9150612904826128c5565b602082019050919050565b5f6020820190508181035f830152612926816128ed565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612987602683611f46565b91506129928261292d565b604082019050919050565b5f6020820190508181035f8301526129b48161297b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612a15602483611f46565b9150612a20826129bb565b604082019050919050565b5f6020820190508181035f830152612a4281612a09565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612aa3602283611f46565b9150612aae82612a49565b604082019050919050565b5f6020820190508181035f830152612ad081612a97565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612b0b601d83611f46565b9150612b1682612ad7565b602082019050919050565b5f6020820190508181035f830152612b3881612aff565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f612b73601d83611f46565b9150612b7e82612b3f565b602082019050919050565b5f6020820190508181035f830152612ba081612b67565b9050919050565b7f7472616e736665727320617265206e6f742079657420616374697665000000005f82015250565b5f612bdb601c83611f46565b9150612be682612ba7565b602082019050919050565b5f6020820190508181035f830152612c0881612bcf565b9050919050565b7f4d696b65734e4654206861732074696d656420796f75206f75742120426f6f705f8201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c69602183611f46565b9150612c7482612c0f565b604082019050919050565b5f6020820190508181035f830152612c9681612c5d565b9050919050565b7f616d6f756e7420657863656564732077616c6c6574206c696d697400000000005f82015250565b5f612cd1601b83611f46565b9150612cdc82612c9d565b602082019050919050565b5f6020820190508181035f830152612cfe81612cc5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d39602083611f46565b9150612d4482612d05565b602082019050919050565b5f6020820190508181035f830152612d6681612d2d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612dc7602583611f46565b9150612dd282612d6d565b604082019050919050565b5f6020820190508181035f830152612df481612dbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612e55602383611f46565b9150612e6082612dfb565b604082019050919050565b5f6020820190508181035f830152612e8281612e49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612ee3602683611f46565b9150612eee82612e89565b604082019050919050565b5f6020820190508181035f830152612f1081612ed7565b9050919050565b5f60a082019050612f2a5f8301886121cc565b612f3760208301876121cc565b612f4460408301866121cc565b612f516060830185612117565b612f5e6080830184612316565b9695505050505050565b5f608082019050612f7b5f8301876121cc565b612f88602083018661219b565b612f9560408301856121cc565b612fa260608301846121cc565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f45434453413a20696e76616c6964207369676e617475726500000000000000005f82015250565b5f61300c601883611f46565b915061301782612fd8565b602082019050919050565b5f6020820190508181035f83015261303981613000565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e677468005f82015250565b5f613074601f83611f46565b915061307f82613040565b602082019050919050565b5f6020820190508181035f8301526130a181613068565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c5f8201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b5f613102602283611f46565b915061310d826130a8565b604082019050919050565b5f6020820190508181035f83015261312f816130f6565b905091905056fea2646970667358221220323ebe49934c28286199241d7a43087c104cec169e233fd4bef7f66fa8f2176564736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101e3575f3560e01c80638da5cb5b1161010d578063be3a7e57116100a0578063d9dc21281161006f578063d9dc212814610599578063dd62ed3e146105c9578063f2fde38b146105f9578063f40acc3d14610615576101e3565b8063be3a7e5714610515578063c18bc19514610531578063cba0e9961461054d578063d505accf1461057d576101e3565b8063aa4bde28116100dc578063aa4bde28146104a1578063af83ab01146104bf578063b787d572146104db578063bbc0c742146104f7576101e3565b80638da5cb5b1461040557806395d89b4114610423578063a457c2d714610441578063a9059cbb14610471576101e3565b80633582ad2311610185578063715018a611610154578063715018a61461038b5780637897aa77146103955780637ecebe00146103b157806384b0196e146103e1576101e3565b80633582ad23146102ef5780633644e5151461030d578063395093511461032b57806370a082311461035b576101e3565b80631156f209116101c15780631156f2091461026557806318160ddd1461028357806323b872dd146102a1578063313ce567146102d1576101e3565b806306fdde03146101e7578063095ea7b3146102055780630b839a2614610235575b5f80fd5b6101ef610633565b6040516101fc9190611fc6565b60405180910390f35b61021f600480360381019061021a919061207b565b6106c3565b60405161022c91906120d3565b60405180910390f35b61024f600480360381019061024a91906120ec565b6106e5565b60405161025c9190612126565b60405180910390f35b61026d6106fa565b60405161027a9190612126565b60405180910390f35b61028b610700565b6040516102989190612126565b60405180910390f35b6102bb60048036038101906102b6919061213f565b610709565b6040516102c891906120d3565b60405180910390f35b6102d9610737565b6040516102e691906121aa565b60405180910390f35b6102f761073f565b60405161030491906120d3565b60405180910390f35b610315610751565b60405161032291906121db565b60405180910390f35b6103456004803603810190610340919061207b565b61075f565b60405161035291906120d3565b60405180910390f35b610375600480360381019061037091906120ec565b610795565b6040516103829190612126565b60405180910390f35b6103936107da565b005b6103af60048036038101906103aa919061227f565b6107ed565b005b6103cb60048036038101906103c691906120ec565b610846565b6040516103d89190612126565b60405180910390f35b6103e9610893565b6040516103fc97969594939291906123dc565b60405180910390f35b61040d610990565b60405161041a919061245e565b60405180910390f35b61042b6109b8565b6040516104389190611fc6565b60405180910390f35b61045b6004803603810190610456919061207b565b610a48565b60405161046891906120d3565b60405180910390f35b61048b6004803603810190610486919061207b565b610abd565b60405161049891906120d3565b60405180910390f35b6104a9610adf565b6040516104b69190612126565b60405180910390f35b6104d960048036038101906104d49190612477565b610ae5565b005b6104f560048036038101906104f091906124d4565b610b76565b005b6104ff610bc2565b60405161050c91906120d3565b60405180910390f35b61052f600480360381019061052a91906124ff565b610bd5565b005b61054b600480360381019061054691906124d4565b610bf9565b005b610567600480360381019061056291906120ec565b610c0b565b60405161057491906120d3565b60405180910390f35b6105976004803603810190610592919061257e565b610c5d565b005b6105b360048036038101906105ae91906120ec565b610d9c565b6040516105c091906120d3565b60405180910390f35b6105e360048036038101906105de919061261b565b610df6565b6040516105f09190612126565b60405180910390f35b610613600480360381019061060e91906120ec565b610e78565b005b61061d610efa565b60405161062a919061245e565b60405180910390f35b60606003805461064290612686565b80601f016020809104026020016040519081016040528092919081815260200182805461066e90612686565b80156106b95780601f10610690576101008083540402835291602001916106b9565b820191905f5260205f20905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b5f806106cd610f1e565b90506106da818585610f25565b600191505092915050565b600a602052805f5260405f205f915090505481565b600c5481565b5f600254905090565b5f80610713610f1e565b90506107208582856110e8565b61072b858585611173565b60019150509392505050565b5f6012905090565b600d5f9054906101000a900460ff1681565b5f61075a61153b565b905090565b5f80610769610f1e565b905061078a81858561077b8589610df6565b61078591906126e3565b610f25565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107e26115f1565b6107eb5f61166f565b565b6107f56115f1565b5f5b838390508110156108405761083384848381811061081857610817612716565b5b905060200201602081019061082d91906120ec565b83611732565b80806001019150506107f7565b50505050565b5f61088c60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2061178a565b9050919050565b5f6060805f805f60606108d060057f4d696b650000000000000000000000000000000000000000000000000000000461179690919063ffffffff16565b61090460067f310000000000000000000000000000000000000000000000000000000000000161179690919063ffffffff16565b46305f801b5f67ffffffffffffffff81111561092357610922612743565b5b6040519080825280602002602001820160405280156109515781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109c790612686565b80601f01602080910402602001604051908101604052809291908181526020018280546109f390612686565b8015610a3e5780601f10610a1557610100808354040283529160200191610a3e565b820191905f5260205f20905b815481529060010190602001808311610a2157829003601f168201915b5050505050905090565b5f80610a52610f1e565b90505f610a5f8286610df6565b905083811015610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906127e0565b60405180910390fd5b610ab18286868403610f25565b60019250505092915050565b5f80610ac7610f1e565b9050610ad4818585611173565b600191505092915050565b600b5481565b610aed6115f1565b5f5b83839050811015610b705781600a5f868685818110610b1157610b10612716565b5b9050602002016020810190610b2691906120ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050610aef565b50505050565b610b7e6115f1565b610b886001610bd5565b6001600d60016101000a81548160ff0219169083151502179055505f600c5403610bbf578043610bb891906126e3565b600c819055505b50565b600d60019054906101000a900460ff1681565b610bdd6115f1565b80600d5f6101000a81548160ff02191690831515021790555050565b610c016115f1565b80600b8190555050565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b83421115610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790612848565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610cce8c611843565b89604051602001610ce496959493929190612866565b6040516020818303038152906040528051906020012090505f610d068261189e565b90505f610d15828787876118b7565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c9061290f565b60405180910390fd5b610d908a8a8a610f25565b50505050505050505050565b5f610da682610c0b565b158015610def57505f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054115b9050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e806115f1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee59061299d565b60405180910390fd5b610ef78161166f565b50565b7f0000000000000000000000003c8fd5ca873e9b204d8398ef462f5cc0d99a486b81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90612a2b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612ab9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110db9190612126565b60405180910390a3505050565b5f6110f38484610df6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116d578181101561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612b21565b60405180910390fd5b61116c8484848403610f25565b5b50505050565b5f81116111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612b89565b60405180910390fd5b600d60019054906101000a900460ff16611222576111d283610c0b565b806111e257506111e182610c0b565b5b611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612bf1565b60405180910390fd5b5b61122b83610d9c565b156112b057600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205443116112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612c7f565b60405180910390fd5b5b600d5f9054906101000a900460ff161561152b577f0000000000000000000000003c8fd5ca873e9b204d8398ef462f5cc0d99a486b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611325575061132382610c0b565b155b1561138957600c5443101561138457611c204361134291906126e3565b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61144b565b7f0000000000000000000000003c8fd5ca873e9b204d8398ef462f5cc0d99a486b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156113ea57506113e883610c0b565b155b1561144a57600c5443101561144957611c204361140791906126e3565b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b5b7f0000000000000000000000003c8fd5ca873e9b204d8398ef462f5cc0d99a486b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114ad57506114ab82610c0b565b155b80156114bf57506114bd83610c0b565b155b80156114cc57505f600b54115b1561152a57600b54816114de84610795565b6114e891906126e3565b1115611529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152090612ce7565b60405180910390fd5b5b5b6115368383836118e0565b505050565b5f7f00000000000000000000000079b36f8a25ac07b09180d6c91d04d26c5ad93b0d73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156115b657507f000000000000000000000000000000000000000000000000000000000000000146145b156115e3577ffd5be0141f12a8da58706e86cfea2b9e8af21d99ce20ffcbb6293a54bc79cf2890506115ee565b6115eb611b4c565b90505b90565b6115f9610f1e565b73ffffffffffffffffffffffffffffffffffffffff16611617610990565b73ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166490612d4f565b60405180910390fd5b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f815f01549050919050565b606060ff5f1b83146117b2576117ab83611be1565b905061183d565b8180546117be90612686565b80601f01602080910402602001604051908101604052809291908181526020018280546117ea90612686565b80156118355780601f1061180c57610100808354040283529160200191611835565b820191905f5260205f20905b81548152906001019060200180831161181857829003601f168201915b505050505090505b92915050565b5f8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20905061188d8161178a565b915061189881611c53565b50919050565b5f6118b06118aa61153b565b83611c67565b9050919050565b5f805f6118c687878787611ca7565b915091506118d381611d7f565b8192505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590612ddd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612e6b565b60405180910390fd5b6119c7838383611ee4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190612ef9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b339190612126565b60405180910390a3611b46848484611ee9565b50505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fff62253a75f63edd24e84e56d98063140a53aba027082f4011d2bc0002495f7a7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc64630604051602001611bc6959493929190612f17565b60405160208183030381529060405280519060200120905090565b60605f611bed83611eee565b90505f602067ffffffffffffffff811115611c0b57611c0a612743565b5b6040519080825280601f01601f191660200182016040528015611c3d5781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b6001815f015f828254019250508190555050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0835f1c1115611cdf575f600391509150611d76565b5f6001878787876040515f8152602001604052604051611d029493929190612f68565b6020604051602081039080840390855afa158015611d22573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d6e575f60019250925050611d76565b805f92509250505b94509492505050565b5f6004811115611d9257611d91612fab565b5b816004811115611da557611da4612fab565b5b0315611ee15760016004811115611dbf57611dbe612fab565b5b816004811115611dd257611dd1612fab565b5b03611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613022565b60405180910390fd5b60026004811115611e2657611e25612fab565b5b816004811115611e3957611e38612fab565b5b03611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e709061308a565b60405180910390fd5b60036004811115611e8d57611e8c612fab565b5b816004811115611ea057611e9f612fab565b5b03611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790613118565b60405180910390fd5b5b50565b505050565b505050565b5f8060ff835f1c169050601f811115611f33576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f73578082015181840152602081019050611f58565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611f9882611f3c565b611fa28185611f46565b9350611fb2818560208601611f56565b611fbb81611f7e565b840191505092915050565b5f6020820190508181035f830152611fde8184611f8e565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61201782611fee565b9050919050565b6120278161200d565b8114612031575f80fd5b50565b5f813590506120428161201e565b92915050565b5f819050919050565b61205a81612048565b8114612064575f80fd5b50565b5f8135905061207581612051565b92915050565b5f806040838503121561209157612090611fe6565b5b5f61209e85828601612034565b92505060206120af85828601612067565b9150509250929050565b5f8115159050919050565b6120cd816120b9565b82525050565b5f6020820190506120e65f8301846120c4565b92915050565b5f6020828403121561210157612100611fe6565b5b5f61210e84828501612034565b91505092915050565b61212081612048565b82525050565b5f6020820190506121395f830184612117565b92915050565b5f805f6060848603121561215657612155611fe6565b5b5f61216386828701612034565b935050602061217486828701612034565b925050604061218586828701612067565b9150509250925092565b5f60ff82169050919050565b6121a48161218f565b82525050565b5f6020820190506121bd5f83018461219b565b92915050565b5f819050919050565b6121d5816121c3565b82525050565b5f6020820190506121ee5f8301846121cc565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612215576122146121f4565b5b8235905067ffffffffffffffff811115612232576122316121f8565b5b60208301915083602082028301111561224e5761224d6121fc565b5b9250929050565b61225e816120b9565b8114612268575f80fd5b50565b5f8135905061227981612255565b92915050565b5f805f6040848603121561229657612295611fe6565b5b5f84013567ffffffffffffffff8111156122b3576122b2611fea565b5b6122bf86828701612200565b935093505060206122d28682870161226b565b9150509250925092565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b612310816122dc565b82525050565b61231f8161200d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61235781612048565b82525050565b5f612368838361234e565b60208301905092915050565b5f602082019050919050565b5f61238a82612325565b612394818561232f565b935061239f8361233f565b805f5b838110156123cf5781516123b6888261235d565b97506123c183612374565b9250506001810190506123a2565b5085935050505092915050565b5f60e0820190506123ef5f83018a612307565b81810360208301526124018189611f8e565b905081810360408301526124158188611f8e565b90506124246060830187612117565b6124316080830186612316565b61243e60a08301856121cc565b81810360c08301526124508184612380565b905098975050505050505050565b5f6020820190506124715f830184612316565b92915050565b5f805f6040848603121561248e5761248d611fe6565b5b5f84013567ffffffffffffffff8111156124ab576124aa611fea565b5b6124b786828701612200565b935093505060206124ca86828701612067565b9150509250925092565b5f602082840312156124e9576124e8611fe6565b5b5f6124f684828501612067565b91505092915050565b5f6020828403121561251457612513611fe6565b5b5f6125218482850161226b565b91505092915050565b6125338161218f565b811461253d575f80fd5b50565b5f8135905061254e8161252a565b92915050565b61255d816121c3565b8114612567575f80fd5b50565b5f8135905061257881612554565b92915050565b5f805f805f805f60e0888a03121561259957612598611fe6565b5b5f6125a68a828b01612034565b97505060206125b78a828b01612034565b96505060406125c88a828b01612067565b95505060606125d98a828b01612067565b94505060806125ea8a828b01612540565b93505060a06125fb8a828b0161256a565b92505060c061260c8a828b0161256a565b91505092959891949750929550565b5f806040838503121561263157612630611fe6565b5b5f61263e85828601612034565b925050602061264f85828601612034565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061269d57607f821691505b6020821081036126b0576126af612659565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6126ed82612048565b91506126f883612048565b92508282019050808211156127105761270f6126b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6127ca602583611f46565b91506127d582612770565b604082019050919050565b5f6020820190508181035f8301526127f7816127be565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e650000005f82015250565b5f612832601d83611f46565b915061283d826127fe565b602082019050919050565b5f6020820190508181035f83015261285f81612826565b9050919050565b5f60c0820190506128795f8301896121cc565b6128866020830188612316565b6128936040830187612316565b6128a06060830186612117565b6128ad6080830185612117565b6128ba60a0830184612117565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e617475726500005f82015250565b5f6128f9601e83611f46565b9150612904826128c5565b602082019050919050565b5f6020820190508181035f830152612926816128ed565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612987602683611f46565b91506129928261292d565b604082019050919050565b5f6020820190508181035f8301526129b48161297b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612a15602483611f46565b9150612a20826129bb565b604082019050919050565b5f6020820190508181035f830152612a4281612a09565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612aa3602283611f46565b9150612aae82612a49565b604082019050919050565b5f6020820190508181035f830152612ad081612a97565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612b0b601d83611f46565b9150612b1682612ad7565b602082019050919050565b5f6020820190508181035f830152612b3881612aff565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f612b73601d83611f46565b9150612b7e82612b3f565b602082019050919050565b5f6020820190508181035f830152612ba081612b67565b9050919050565b7f7472616e736665727320617265206e6f742079657420616374697665000000005f82015250565b5f612bdb601c83611f46565b9150612be682612ba7565b602082019050919050565b5f6020820190508181035f830152612c0881612bcf565b9050919050565b7f4d696b65734e4654206861732074696d656420796f75206f75742120426f6f705f8201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c69602183611f46565b9150612c7482612c0f565b604082019050919050565b5f6020820190508181035f830152612c9681612c5d565b9050919050565b7f616d6f756e7420657863656564732077616c6c6574206c696d697400000000005f82015250565b5f612cd1601b83611f46565b9150612cdc82612c9d565b602082019050919050565b5f6020820190508181035f830152612cfe81612cc5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d39602083611f46565b9150612d4482612d05565b602082019050919050565b5f6020820190508181035f830152612d6681612d2d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612dc7602583611f46565b9150612dd282612d6d565b604082019050919050565b5f6020820190508181035f830152612df481612dbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612e55602383611f46565b9150612e6082612dfb565b604082019050919050565b5f6020820190508181035f830152612e8281612e49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612ee3602683611f46565b9150612eee82612e89565b604082019050919050565b5f6020820190508181035f830152612f1081612ed7565b9050919050565b5f60a082019050612f2a5f8301886121cc565b612f3760208301876121cc565b612f4460408301866121cc565b612f516060830185612117565b612f5e6080830184612316565b9695505050505050565b5f608082019050612f7b5f8301876121cc565b612f88602083018661219b565b612f9560408301856121cc565b612fa260608301846121cc565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f45434453413a20696e76616c6964207369676e617475726500000000000000005f82015250565b5f61300c601883611f46565b915061301782612fd8565b602082019050919050565b5f6020820190508181035f83015261303981613000565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e677468005f82015250565b5f613074601f83611f46565b915061307f82613040565b602082019050919050565b5f6020820190508181035f8301526130a181613068565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c5f8201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b5f613102602283611f46565b915061310d826130a8565b604082019050919050565b5f6020820190508181035f83015261312f816130f6565b905091905056fea2646970667358221220323ebe49934c28286199241d7a43087c104cec169e233fd4bef7f66fa8f2176564736f6c63430008140033

Deployed Bytecode Sourcemap

75218:3777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58185:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60545:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75368:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75465:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59314:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61326:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59156:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75508:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71985:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61996:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59485:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74328:103;;;:::i;:::-;;77736:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71727:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48532:657;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;73687:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58404:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62737:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59818:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75428:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78291:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77467:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75540:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78890:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78767:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78170:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71016:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78617:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60074:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74586:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75319:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58185:100;58239:13;58272:5;58265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58185:100;:::o;60545:201::-;60628:4;60645:13;60661:12;:10;:12::i;:::-;60645:28;;60684:32;60693:5;60700:7;60709:6;60684:8;:32::i;:::-;60734:4;60727:11;;;60545:201;;;;:::o;75368:51::-;;;;;;;;;;;;;;;;;:::o;75465:34::-;;;;:::o;59314:108::-;59375:7;59402:12;;59395:19;;59314:108;:::o;61326:261::-;61423:4;61440:15;61458:12;:10;:12::i;:::-;61440:30;;61481:38;61497:4;61503:7;61512:6;61481:15;:38::i;:::-;61530:27;61540:4;61546:2;61550:6;61530:9;:27::i;:::-;61575:4;61568:11;;;61326:261;;;;;:::o;59156:93::-;59214:5;59239:2;59232:9;;59156:93;:::o;75508:25::-;;;;;;;;;;;;;:::o;71985:115::-;72045:7;72072:20;:18;:20::i;:::-;72065:27;;71985:115;:::o;61996:238::-;62084:4;62101:13;62117:12;:10;:12::i;:::-;62101:28;;62140:64;62149:5;62156:7;62193:10;62165:25;62175:5;62182:7;62165:9;:25::i;:::-;:38;;;;:::i;:::-;62140:8;:64::i;:::-;62222:4;62215:11;;;61996:238;;;;:::o;59485:127::-;59559:7;59586:9;:18;59596:7;59586:18;;;;;;;;;;;;;;;;59579:25;;59485:127;;;:::o;74328:103::-;73573:13;:11;:13::i;:::-;74393:30:::1;74420:1;74393:18;:30::i;:::-;74328:103::o:0;77736:301::-;73573:13;:11;:13::i;:::-;77865:9:::1;77860:170;77880:9;;:16;;77876:1;:20;77860:170;;;77915:41;77936:9;;77946:1;77936:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;77950:5;77915:20;:41::i;:::-;78000:3;;;;;;;77860:170;;;;77736:301:::0;;;:::o;71727:128::-;71796:7;71823:24;:7;:14;71831:5;71823:14;;;;;;;;;;;;;;;:22;:24::i;:::-;71816:31;;71727:128;;;:::o;48532:657::-;48653:13;48681:18;48714:21;48750:15;48780:25;48820:12;48847:27;48955:41;48982:13;48955:5;:26;;:41;;;;:::i;:::-;49011:47;49041:16;49011:8;:29;;:47;;;;:::i;:::-;49073:13;49109:4;49137:1;49129:10;;49168:1;49154:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48902:279;;;;;;;;;;;;;;;;;;;;;48532:657;;;;;;;:::o;73687:87::-;73733:7;73760:6;;;;;;;;;;;73753:13;;73687:87;:::o;58404:104::-;58460:13;58493:7;58486:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58404:104;:::o;62737:436::-;62830:4;62847:13;62863:12;:10;:12::i;:::-;62847:28;;62886:24;62913:25;62923:5;62930:7;62913:9;:25::i;:::-;62886:52;;62977:15;62957:16;:35;;62949:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;63070:60;63079:5;63086:7;63114:15;63095:16;:34;63070:8;:60::i;:::-;63161:4;63154:11;;;;62737:436;;;;:::o;59818:193::-;59897:4;59914:13;59930:12;:10;:12::i;:::-;59914:28;;59953;59963:5;59970:2;59974:6;59953:9;:28::i;:::-;59999:4;59992:11;;;59818:193;;;;:::o;75428:30::-;;;;:::o;78291:318::-;73573:13;:11;:13::i;:::-;78434:9:::1;78429:173;78449:9;;:16;;78445:1;:20;78429:173;;;78517:11;78484:16;:30;78501:9;;78511:1;78501:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;78484:30;;;;;;;;;;;;;;;:44;;;;78572:3;;;;;;;78429:173;;;;78291:318:::0;;;:::o;77467:261::-;73573:13;:11;:13::i;:::-;77546:25:::1;77566:4;77546:19;:25::i;:::-;77600:4;77584:13;;:20;;;;;;;;;;;;;;;;;;77644:1;77621:19;;:24:::0;77617:104:::1;;77699:10;77684:12;:25;;;;:::i;:::-;77662:19;:47;;;;77617:104;77467:261:::0;:::o;75540:25::-;;;;;;;;;;;;;:::o;78890:102::-;73573:13;:11;:13::i;:::-;78977:7:::1;78961:13;;:23;;;;;;;;;;;;;;;;;;78890:102:::0;:::o;78767:115::-;73573:13;:11;:13::i;:::-;78865:9:::1;78847:15;:27;;;;78767:115:::0;:::o;78170:113::-;78228:4;78252:14;:23;78267:7;78252:23;;;;;;;;;;;;;;;;;;;;;;;;;78245:30;;78170:113;;;:::o;71016:645::-;71260:8;71241:15;:27;;71233:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;71315:18;70191:95;71375:5;71382:7;71391:5;71398:16;71408:5;71398:9;:16::i;:::-;71416:8;71346:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71336:90;;;;;;71315:111;;71439:12;71454:28;71471:10;71454:16;:28::i;:::-;71439:43;;71495:14;71512:28;71526:4;71532:1;71535;71538;71512:13;:28::i;:::-;71495:45;;71569:5;71559:15;;:6;:15;;;71551:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;71622:31;71631:5;71638:7;71647:5;71622:8;:31::i;:::-;71222:439;;;71016:645;;;;;;;:::o;78617:142::-;78674:4;78699:19;78710:7;78699:10;:19::i;:::-;78698:20;:53;;;;;78750:1;78722:16;:25;78739:7;78722:25;;;;;;;;;;;;;;;;:29;78698:53;78691:60;;78617:142;;;:::o;60074:151::-;60163:7;60190:11;:18;60202:5;60190:18;;;;;;;;;;;;;;;:27;60209:7;60190:27;;;;;;;;;;;;;;;;60183:34;;60074:151;;;;:::o;74586:201::-;73573:13;:11;:13::i;:::-;74695:1:::1;74675:22;;:8;:22;;::::0;74667:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;74751:28;74770:8;74751:18;:28::i;:::-;74586:201:::0;:::o;75319:40::-;;;:::o;55823:98::-;55876:7;55903:10;55896:17;;55823:98;:::o;66730:346::-;66849:1;66832:19;;:5;:19;;;66824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66930:1;66911:21;;:7;:21;;;66903:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67014:6;66984:11;:18;66996:5;66984:18;;;;;;;;;;;;;;;:27;67003:7;66984:27;;;;;;;;;;;;;;;:36;;;;67052:7;67036:32;;67045:5;67036:32;;;67061:6;67036:32;;;;;;:::i;:::-;;;;;;;;66730:346;;;:::o;67367:419::-;67468:24;67495:25;67505:5;67512:7;67495:9;:25::i;:::-;67468:52;;67555:17;67535:16;:37;67531:248;;67617:6;67597:16;:26;;67589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67701:51;67710:5;67717:7;67745:6;67726:16;:25;67701:8;:51::i;:::-;67531:248;67457:329;67367:419;;;:::o;75987:1472::-;76128:1;76119:6;:10;76111:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;76181:13;;;;;;;;;;;76176:171;;76237:16;76248:4;76237:10;:16::i;:::-;:34;;;;76257:14;76268:2;76257:10;:14::i;:::-;76237:34;76211:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;76176:171;76363:15;76373:4;76363:9;:15::i;:::-;76359:180;;;76436:16;:22;76453:4;76436:22;;;;;;;;;;;;;;;;76421:12;:37;76395:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;76359:180;76555:13;;;;;;;;;;;76551:855;;;76597:15;76589:23;;:4;:23;;;:42;;;;;76617:14;76628:2;76617:10;:14::i;:::-;76616:15;76589:42;76585:444;;;76671:19;;76656:12;:34;76652:136;;;75298:4;76738:12;:30;;;;:::i;:::-;76715:16;:20;76732:2;76715:20;;;;;;;;;;;;;;;:53;;;;76652:136;76585:444;;;76819:15;76813:21;;:2;:21;;;:42;;;;;76839:16;76850:4;76839:10;:16::i;:::-;76838:17;76813:42;76809:220;;;76895:19;;76880:12;:34;76876:138;;;75298:4;76964:12;:30;;;;:::i;:::-;76939:16;:22;76956:4;76939:22;;;;;;;;;;;;;;;:55;;;;76876:138;76809:220;76585:444;77073:15;77067:21;;:2;:21;;;;:57;;;;;77110:14;77121:2;77110:10;:14::i;:::-;77109:15;77067:57;:95;;;;;77146:16;77157:4;77146:10;:16::i;:::-;77145:17;77067:95;:135;;;;;77201:1;77183:15;;:19;77067:135;77045:350;;;77293:15;;77283:6;77267:13;77277:2;77267:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;77237:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;77045:350;76551:855;77418:33;77434:4;77440:2;77444:6;77418:15;:33::i;:::-;75987:1472;;;:::o;47170:268::-;47223:7;47264:11;47247:28;;47255:4;47247:28;;;:63;;;;;47296:14;47279:13;:31;47247:63;47243:188;;;47334:22;47327:29;;;;47243:188;47396:23;:21;:23::i;:::-;47389:30;;47170:268;;:::o;73852:132::-;73927:12;:10;:12::i;:::-;73916:23;;:7;:5;:7::i;:::-;:23;;;73908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73852:132::o;74947:191::-;75021:16;75040:6;;;;;;;;;;;75021:25;;75066:8;75057:6;;:17;;;;;;;;;;;;;;;;;;75121:8;75090:40;;75111:8;75090:40;;;;;;;;;;;;75010:128;74947:191;:::o;78045:117::-;78149:5;78123:14;:23;78138:7;78123:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;78045:117;;:::o;6699:114::-;6764:7;6791;:14;;;6784:21;;6699:114;;;:::o;15828:274::-;15922:13;13773:66;15981:18;;15971:5;15952:47;15948:147;;16023:15;16032:5;16023:8;:15::i;:::-;16016:22;;;;15948:147;16078:5;16071:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15828:274;;;;;:::o;72238:207::-;72298:15;72326:30;72359:7;:14;72367:5;72359:14;;;;;;;;;;;;;;;72326:47;;72394:15;:5;:13;:15::i;:::-;72384:25;;72420:17;:5;:15;:17::i;:::-;72315:130;72238:207;;;:::o;48270:167::-;48347:7;48374:55;48396:20;:18;:20::i;:::-;48418:10;48374:21;:55::i;:::-;48367:62;;48270:167;;;:::o;40849:236::-;40934:7;40955:17;40974:18;40996:25;41007:4;41013:1;41016;41019;40996:10;:25::i;:::-;40954:67;;;;41032:18;41044:5;41032:11;:18::i;:::-;41068:9;41061:16;;;;40849:236;;;;;;:::o;63643:806::-;63756:1;63740:18;;:4;:18;;;63732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63833:1;63819:16;;:2;:16;;;63811:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;63888:38;63909:4;63915:2;63919:6;63888:20;:38::i;:::-;63939:19;63961:9;:15;63971:4;63961:15;;;;;;;;;;;;;;;;63939:37;;64010:6;63995:11;:21;;63987:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;64127:6;64113:11;:20;64095:9;:15;64105:4;64095:15;;;;;;;;;;;;;;;:38;;;;64330:6;64313:9;:13;64323:2;64313:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;64380:2;64365:26;;64374:4;64365:26;;;64384:6;64365:26;;;;;;:::i;:::-;;;;;;;;64404:37;64424:4;64430:2;64434:6;64404:19;:37::i;:::-;63721:728;63643:806;;;:::o;47446:182::-;47501:7;45362:95;47561:11;47574:14;47590:13;47613:4;47538:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47528:92;;;;;;47521:99;;47446:182;:::o;14482:415::-;14541:13;14567:11;14581:16;14592:4;14581:10;:16::i;:::-;14567:30;;14687:17;14718:2;14707:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14687:34;;14812:3;14807;14800:16;14853:4;14846;14841:3;14837:14;14830:28;14886:3;14879:10;;;;14482:415;;;:::o;6821:127::-;6928:1;6910:7;:14;;;:19;;;;;;;;;;;6821:127;:::o;42633:406::-;42726:12;42836:4;42830:11;42867:10;42862:3;42855:23;42915:15;42908:4;42903:3;42899:14;42892:39;42968:10;42961:4;42956:3;42952:14;42945:34;43016:4;43011:3;43001:20;42993:28;;42804:228;42633:406;;;;:::o;39233:1477::-;39321:7;39330:12;40255:66;40250:1;40242:10;;:79;40238:163;;;40354:1;40358:30;40338:51;;;;;;40238:163;40498:14;40515:24;40525:4;40531:1;40534;40537;40515:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40498:41;;40572:1;40554:20;;:6;:20;;;40550:103;;40607:1;40611:29;40591:50;;;;;;;40550:103;40673:6;40681:20;40665:37;;;;;39233:1477;;;;;;;;:::o;34693:521::-;34771:20;34762:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;34758:449;34808:7;34758:449;34869:29;34860:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;34856:351;;34915:34;;;;;;;;;;:::i;:::-;;;;;;;;34856:351;34980:35;34971:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;34967:240;;35032:41;;;;;;;;;;:::i;:::-;;;;;;;;34967:240;35104:30;35095:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;35091:116;;35151:44;;;;;;;;;;:::i;:::-;;;;;;;;35091:116;34693:521;;:::o;68386:91::-;;;;:::o;69081:90::-;;;;:::o;14974:251::-;15035:7;15055:14;15108:4;15099;15072:33;;:40;15055:57;;15136:2;15127:6;:11;15123:71;;;15162:20;;;;;;;;;;;;;;15123:71;15211:6;15204:13;;;14974: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;1553:117;1662:1;1659;1652: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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:77::-;5225:7;5254:5;5243:16;;5188:77;;;:::o;5271:118::-;5358:24;5376:5;5358:24;:::i;:::-;5353:3;5346:37;5271:118;;:::o;5395:222::-;5488:4;5526:2;5515:9;5511:18;5503:26;;5539:71;5607:1;5596:9;5592:17;5583:6;5539:71;:::i;:::-;5395:222;;;;:::o;5623:117::-;5732:1;5729;5722:12;5746:117;5855:1;5852;5845:12;5869:117;5978:1;5975;5968:12;6009:568;6082:8;6092:6;6142:3;6135:4;6127:6;6123:17;6119:27;6109:122;;6150:79;;:::i;:::-;6109:122;6263:6;6250:20;6240:30;;6293:18;6285:6;6282:30;6279:117;;;6315:79;;:::i;:::-;6279:117;6429:4;6421:6;6417:17;6405:29;;6483:3;6475:4;6467:6;6463:17;6453:8;6449:32;6446:41;6443:128;;;6490:79;;:::i;:::-;6443:128;6009:568;;;;;:::o;6583:116::-;6653:21;6668:5;6653:21;:::i;:::-;6646:5;6643:32;6633:60;;6689:1;6686;6679:12;6633:60;6583:116;:::o;6705:133::-;6748:5;6786:6;6773:20;6764:29;;6802:30;6826:5;6802:30;:::i;:::-;6705:133;;;;:::o;6844:698::-;6936:6;6944;6952;7001:2;6989:9;6980:7;6976:23;6972:32;6969:119;;;7007:79;;:::i;:::-;6969:119;7155:1;7144:9;7140:17;7127:31;7185:18;7177:6;7174:30;7171:117;;;7207:79;;:::i;:::-;7171:117;7320:80;7392:7;7383:6;7372:9;7368:22;7320:80;:::i;:::-;7302:98;;;;7098:312;7449:2;7475:50;7517:7;7508:6;7497:9;7493:22;7475:50;:::i;:::-;7465:60;;7420:115;6844:698;;;;;:::o;7548:149::-;7584:7;7624:66;7617:5;7613:78;7602:89;;7548:149;;;:::o;7703:115::-;7788:23;7805:5;7788:23;:::i;:::-;7783:3;7776:36;7703:115;;:::o;7824:118::-;7911:24;7929:5;7911:24;:::i;:::-;7906:3;7899:37;7824:118;;:::o;7948:114::-;8015:6;8049:5;8043:12;8033:22;;7948:114;;;:::o;8068:184::-;8167:11;8201:6;8196:3;8189:19;8241:4;8236:3;8232:14;8217:29;;8068:184;;;;:::o;8258:132::-;8325:4;8348:3;8340:11;;8378:4;8373:3;8369:14;8361:22;;8258:132;;;:::o;8396:108::-;8473:24;8491:5;8473:24;:::i;:::-;8468:3;8461:37;8396:108;;:::o;8510:179::-;8579:10;8600:46;8642:3;8634:6;8600:46;:::i;:::-;8678:4;8673:3;8669:14;8655:28;;8510:179;;;;:::o;8695:113::-;8765:4;8797;8792:3;8788:14;8780:22;;8695:113;;;:::o;8844:732::-;8963:3;8992:54;9040:5;8992:54;:::i;:::-;9062:86;9141:6;9136:3;9062:86;:::i;:::-;9055:93;;9172:56;9222:5;9172:56;:::i;:::-;9251:7;9282:1;9267:284;9292:6;9289:1;9286:13;9267:284;;;9368:6;9362:13;9395:63;9454:3;9439:13;9395:63;:::i;:::-;9388:70;;9481:60;9534:6;9481:60;:::i;:::-;9471:70;;9327:224;9314:1;9311;9307:9;9302:14;;9267:284;;;9271:14;9567:3;9560:10;;8968:608;;;8844:732;;;;:::o;9582:1215::-;9931:4;9969:3;9958:9;9954:19;9946:27;;9983:69;10049:1;10038:9;10034:17;10025:6;9983:69;:::i;:::-;10099:9;10093:4;10089:20;10084:2;10073:9;10069:18;10062:48;10127:78;10200:4;10191:6;10127:78;:::i;:::-;10119:86;;10252:9;10246:4;10242:20;10237:2;10226:9;10222:18;10215:48;10280:78;10353:4;10344:6;10280:78;:::i;:::-;10272:86;;10368:72;10436:2;10425:9;10421:18;10412:6;10368:72;:::i;:::-;10450:73;10518:3;10507:9;10503:19;10494:6;10450:73;:::i;:::-;10533;10601:3;10590:9;10586:19;10577:6;10533:73;:::i;:::-;10654:9;10648:4;10644:20;10638:3;10627:9;10623:19;10616:49;10682:108;10785:4;10776:6;10682:108;:::i;:::-;10674:116;;9582:1215;;;;;;;;;;:::o;10803:222::-;10896:4;10934:2;10923:9;10919:18;10911:26;;10947:71;11015:1;11004:9;11000:17;10991:6;10947:71;:::i;:::-;10803:222;;;;:::o;11031:704::-;11126:6;11134;11142;11191:2;11179:9;11170:7;11166:23;11162:32;11159:119;;;11197:79;;:::i;:::-;11159:119;11345:1;11334:9;11330:17;11317:31;11375:18;11367:6;11364:30;11361:117;;;11397:79;;:::i;:::-;11361:117;11510:80;11582:7;11573:6;11562:9;11558:22;11510:80;:::i;:::-;11492:98;;;;11288:312;11639:2;11665:53;11710:7;11701:6;11690:9;11686:22;11665:53;:::i;:::-;11655:63;;11610:118;11031:704;;;;;:::o;11741:329::-;11800:6;11849:2;11837:9;11828:7;11824:23;11820:32;11817:119;;;11855:79;;:::i;:::-;11817:119;11975:1;12000:53;12045:7;12036:6;12025:9;12021:22;12000:53;:::i;:::-;11990:63;;11946:117;11741:329;;;;:::o;12076:323::-;12132:6;12181:2;12169:9;12160:7;12156:23;12152:32;12149:119;;;12187:79;;:::i;:::-;12149:119;12307:1;12332:50;12374:7;12365:6;12354:9;12350:22;12332:50;:::i;:::-;12322:60;;12278:114;12076:323;;;;:::o;12405:118::-;12476:22;12492:5;12476:22;:::i;:::-;12469:5;12466:33;12456:61;;12513:1;12510;12503:12;12456:61;12405:118;:::o;12529:135::-;12573:5;12611:6;12598:20;12589:29;;12627:31;12652:5;12627:31;:::i;:::-;12529:135;;;;:::o;12670:122::-;12743:24;12761:5;12743:24;:::i;:::-;12736:5;12733:35;12723:63;;12782:1;12779;12772:12;12723:63;12670:122;:::o;12798:139::-;12844:5;12882:6;12869:20;12860:29;;12898:33;12925:5;12898:33;:::i;:::-;12798:139;;;;:::o;12943:1199::-;13054:6;13062;13070;13078;13086;13094;13102;13151:3;13139:9;13130:7;13126:23;13122:33;13119:120;;;13158:79;;:::i;:::-;13119:120;13278:1;13303:53;13348:7;13339:6;13328:9;13324:22;13303:53;:::i;:::-;13293:63;;13249:117;13405:2;13431:53;13476:7;13467:6;13456:9;13452:22;13431:53;:::i;:::-;13421:63;;13376:118;13533:2;13559:53;13604:7;13595:6;13584:9;13580:22;13559:53;:::i;:::-;13549:63;;13504:118;13661:2;13687:53;13732:7;13723:6;13712:9;13708:22;13687:53;:::i;:::-;13677:63;;13632:118;13789:3;13816:51;13859:7;13850:6;13839:9;13835:22;13816:51;:::i;:::-;13806:61;;13760:117;13916:3;13943:53;13988:7;13979:6;13968:9;13964:22;13943:53;:::i;:::-;13933:63;;13887:119;14045:3;14072:53;14117:7;14108:6;14097:9;14093:22;14072:53;:::i;:::-;14062:63;;14016:119;12943:1199;;;;;;;;;;:::o;14148:474::-;14216:6;14224;14273:2;14261:9;14252:7;14248:23;14244:32;14241:119;;;14279:79;;:::i;:::-;14241:119;14399:1;14424:53;14469:7;14460:6;14449:9;14445:22;14424:53;:::i;:::-;14414:63;;14370:117;14526:2;14552:53;14597:7;14588:6;14577:9;14573:22;14552:53;:::i;:::-;14542:63;;14497:118;14148:474;;;;;:::o;14628:180::-;14676:77;14673:1;14666:88;14773:4;14770:1;14763:15;14797:4;14794:1;14787:15;14814:320;14858:6;14895:1;14889:4;14885:12;14875:22;;14942:1;14936:4;14932:12;14963:18;14953:81;;15019:4;15011:6;15007:17;14997:27;;14953:81;15081:2;15073:6;15070:14;15050:18;15047:38;15044:84;;15100:18;;:::i;:::-;15044:84;14865:269;14814:320;;;:::o;15140:180::-;15188:77;15185:1;15178:88;15285:4;15282:1;15275:15;15309:4;15306:1;15299:15;15326:191;15366:3;15385:20;15403:1;15385:20;:::i;:::-;15380:25;;15419:20;15437:1;15419:20;:::i;:::-;15414:25;;15462:1;15459;15455:9;15448:16;;15483:3;15480:1;15477:10;15474:36;;;15490:18;;:::i;:::-;15474:36;15326:191;;;;:::o;15523:180::-;15571:77;15568:1;15561:88;15668:4;15665:1;15658:15;15692:4;15689:1;15682:15;15709:180;15757:77;15754:1;15747:88;15854:4;15851:1;15844:15;15878:4;15875:1;15868:15;15895:224;16035:34;16031:1;16023:6;16019:14;16012:58;16104:7;16099:2;16091:6;16087:15;16080:32;15895:224;:::o;16125:366::-;16267:3;16288:67;16352:2;16347:3;16288:67;:::i;:::-;16281:74;;16364:93;16453:3;16364:93;:::i;:::-;16482:2;16477:3;16473:12;16466:19;;16125:366;;;:::o;16497:419::-;16663:4;16701:2;16690:9;16686:18;16678:26;;16750:9;16744:4;16740:20;16736:1;16725:9;16721:17;16714:47;16778:131;16904:4;16778:131;:::i;:::-;16770:139;;16497:419;;;:::o;16922:179::-;17062:31;17058:1;17050:6;17046:14;17039:55;16922:179;:::o;17107:366::-;17249:3;17270:67;17334:2;17329:3;17270:67;:::i;:::-;17263:74;;17346:93;17435:3;17346:93;:::i;:::-;17464:2;17459:3;17455:12;17448:19;;17107:366;;;:::o;17479:419::-;17645:4;17683:2;17672:9;17668:18;17660:26;;17732:9;17726:4;17722:20;17718:1;17707:9;17703:17;17696:47;17760:131;17886:4;17760:131;:::i;:::-;17752:139;;17479:419;;;:::o;17904:775::-;18137:4;18175:3;18164:9;18160:19;18152:27;;18189:71;18257:1;18246:9;18242:17;18233:6;18189:71;:::i;:::-;18270:72;18338:2;18327:9;18323:18;18314:6;18270:72;:::i;:::-;18352;18420:2;18409:9;18405:18;18396:6;18352:72;:::i;:::-;18434;18502:2;18491:9;18487:18;18478:6;18434:72;:::i;:::-;18516:73;18584:3;18573:9;18569:19;18560:6;18516:73;:::i;:::-;18599;18667:3;18656:9;18652:19;18643:6;18599:73;:::i;:::-;17904:775;;;;;;;;;:::o;18685:180::-;18825:32;18821:1;18813:6;18809:14;18802:56;18685:180;:::o;18871:366::-;19013:3;19034:67;19098:2;19093:3;19034:67;:::i;:::-;19027:74;;19110:93;19199:3;19110:93;:::i;:::-;19228:2;19223:3;19219:12;19212:19;;18871:366;;;:::o;19243:419::-;19409:4;19447:2;19436:9;19432:18;19424:26;;19496:9;19490:4;19486:20;19482:1;19471:9;19467:17;19460:47;19524:131;19650:4;19524:131;:::i;:::-;19516:139;;19243:419;;;:::o;19668:225::-;19808:34;19804:1;19796:6;19792:14;19785:58;19877:8;19872:2;19864:6;19860:15;19853:33;19668:225;:::o;19899:366::-;20041:3;20062:67;20126:2;20121:3;20062:67;:::i;:::-;20055:74;;20138:93;20227:3;20138:93;:::i;:::-;20256:2;20251:3;20247:12;20240:19;;19899:366;;;:::o;20271:419::-;20437:4;20475:2;20464:9;20460:18;20452:26;;20524:9;20518:4;20514:20;20510:1;20499:9;20495:17;20488:47;20552:131;20678:4;20552:131;:::i;:::-;20544:139;;20271:419;;;:::o;20696:223::-;20836:34;20832:1;20824:6;20820:14;20813:58;20905:6;20900:2;20892:6;20888:15;20881:31;20696:223;:::o;20925:366::-;21067:3;21088:67;21152:2;21147:3;21088:67;:::i;:::-;21081:74;;21164:93;21253:3;21164:93;:::i;:::-;21282:2;21277:3;21273:12;21266:19;;20925:366;;;:::o;21297:419::-;21463:4;21501:2;21490:9;21486:18;21478:26;;21550:9;21544:4;21540:20;21536:1;21525:9;21521:17;21514:47;21578:131;21704:4;21578:131;:::i;:::-;21570:139;;21297:419;;;:::o;21722:221::-;21862:34;21858:1;21850:6;21846:14;21839:58;21931:4;21926:2;21918:6;21914:15;21907:29;21722:221;:::o;21949:366::-;22091:3;22112:67;22176:2;22171:3;22112:67;:::i;:::-;22105:74;;22188:93;22277:3;22188:93;:::i;:::-;22306:2;22301:3;22297:12;22290:19;;21949:366;;;:::o;22321:419::-;22487:4;22525:2;22514:9;22510:18;22502:26;;22574:9;22568:4;22564:20;22560:1;22549:9;22545:17;22538:47;22602:131;22728:4;22602:131;:::i;:::-;22594:139;;22321:419;;;:::o;22746:179::-;22886:31;22882:1;22874:6;22870:14;22863:55;22746:179;:::o;22931:366::-;23073:3;23094:67;23158:2;23153:3;23094:67;:::i;:::-;23087:74;;23170:93;23259:3;23170:93;:::i;:::-;23288:2;23283:3;23279:12;23272:19;;22931:366;;;:::o;23303:419::-;23469:4;23507:2;23496:9;23492:18;23484:26;;23556:9;23550:4;23546:20;23542:1;23531:9;23527:17;23520:47;23584:131;23710:4;23584:131;:::i;:::-;23576:139;;23303:419;;;:::o;23728:179::-;23868:31;23864:1;23856:6;23852:14;23845:55;23728:179;:::o;23913:366::-;24055:3;24076:67;24140:2;24135:3;24076:67;:::i;:::-;24069:74;;24152:93;24241:3;24152:93;:::i;:::-;24270:2;24265:3;24261:12;24254:19;;23913:366;;;:::o;24285:419::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24285:419;;;:::o;24710:178::-;24850:30;24846:1;24838:6;24834:14;24827:54;24710:178;:::o;24894:366::-;25036:3;25057:67;25121:2;25116:3;25057:67;:::i;:::-;25050:74;;25133:93;25222:3;25133:93;:::i;:::-;25251:2;25246:3;25242:12;25235:19;;24894:366;;;:::o;25266:419::-;25432:4;25470:2;25459:9;25455:18;25447:26;;25519:9;25513:4;25509:20;25505:1;25494:9;25490:17;25483:47;25547:131;25673:4;25547:131;:::i;:::-;25539:139;;25266:419;;;:::o;25691:220::-;25831:34;25827:1;25819:6;25815:14;25808:58;25900:3;25895:2;25887:6;25883:15;25876:28;25691:220;:::o;25917:366::-;26059:3;26080:67;26144:2;26139:3;26080:67;:::i;:::-;26073:74;;26156:93;26245:3;26156:93;:::i;:::-;26274:2;26269:3;26265:12;26258:19;;25917:366;;;:::o;26289:419::-;26455:4;26493:2;26482:9;26478:18;26470:26;;26542:9;26536:4;26532:20;26528:1;26517:9;26513:17;26506:47;26570:131;26696:4;26570:131;:::i;:::-;26562:139;;26289:419;;;:::o;26714:177::-;26854:29;26850:1;26842:6;26838:14;26831:53;26714:177;:::o;26897:366::-;27039:3;27060:67;27124:2;27119:3;27060:67;:::i;:::-;27053:74;;27136:93;27225:3;27136:93;:::i;:::-;27254:2;27249:3;27245:12;27238:19;;26897:366;;;:::o;27269:419::-;27435:4;27473:2;27462:9;27458:18;27450:26;;27522:9;27516:4;27512:20;27508:1;27497:9;27493:17;27486:47;27550:131;27676:4;27550:131;:::i;:::-;27542:139;;27269:419;;;:::o;27694:182::-;27834:34;27830:1;27822:6;27818:14;27811:58;27694:182;:::o;27882:366::-;28024:3;28045:67;28109:2;28104:3;28045:67;:::i;:::-;28038:74;;28121:93;28210:3;28121:93;:::i;:::-;28239:2;28234:3;28230:12;28223:19;;27882:366;;;:::o;28254:419::-;28420:4;28458:2;28447:9;28443:18;28435:26;;28507:9;28501:4;28497:20;28493:1;28482:9;28478:17;28471:47;28535:131;28661:4;28535:131;:::i;:::-;28527:139;;28254:419;;;:::o;28679:224::-;28819:34;28815:1;28807:6;28803:14;28796:58;28888:7;28883:2;28875:6;28871:15;28864:32;28679:224;:::o;28909:366::-;29051:3;29072:67;29136:2;29131:3;29072:67;:::i;:::-;29065:74;;29148:93;29237:3;29148:93;:::i;:::-;29266:2;29261:3;29257:12;29250:19;;28909:366;;;:::o;29281:419::-;29447:4;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29281:419;;;:::o;29706:222::-;29846:34;29842:1;29834:6;29830:14;29823:58;29915:5;29910:2;29902:6;29898:15;29891:30;29706:222;:::o;29934:366::-;30076:3;30097:67;30161:2;30156:3;30097:67;:::i;:::-;30090:74;;30173:93;30262:3;30173:93;:::i;:::-;30291:2;30286:3;30282:12;30275:19;;29934:366;;;:::o;30306:419::-;30472:4;30510:2;30499:9;30495:18;30487:26;;30559:9;30553:4;30549:20;30545:1;30534:9;30530:17;30523:47;30587:131;30713:4;30587:131;:::i;:::-;30579:139;;30306:419;;;:::o;30731:225::-;30871:34;30867:1;30859:6;30855:14;30848:58;30940:8;30935:2;30927:6;30923:15;30916:33;30731:225;:::o;30962:366::-;31104:3;31125:67;31189:2;31184:3;31125:67;:::i;:::-;31118:74;;31201:93;31290:3;31201:93;:::i;:::-;31319:2;31314:3;31310:12;31303:19;;30962:366;;;:::o;31334:419::-;31500:4;31538:2;31527:9;31523:18;31515:26;;31587:9;31581:4;31577:20;31573:1;31562:9;31558:17;31551:47;31615:131;31741:4;31615:131;:::i;:::-;31607:139;;31334:419;;;:::o;31759:664::-;31964:4;32002:3;31991:9;31987:19;31979:27;;32016:71;32084:1;32073:9;32069:17;32060:6;32016:71;:::i;:::-;32097:72;32165:2;32154:9;32150:18;32141:6;32097:72;:::i;:::-;32179;32247:2;32236:9;32232:18;32223:6;32179:72;:::i;:::-;32261;32329:2;32318:9;32314:18;32305:6;32261:72;:::i;:::-;32343:73;32411:3;32400:9;32396:19;32387:6;32343:73;:::i;:::-;31759:664;;;;;;;;:::o;32429:545::-;32602:4;32640:3;32629:9;32625:19;32617:27;;32654:71;32722:1;32711:9;32707:17;32698:6;32654:71;:::i;:::-;32735:68;32799:2;32788:9;32784:18;32775:6;32735:68;:::i;:::-;32813:72;32881:2;32870:9;32866:18;32857:6;32813:72;:::i;:::-;32895;32963:2;32952:9;32948:18;32939:6;32895:72;:::i;:::-;32429:545;;;;;;;:::o;32980:180::-;33028:77;33025:1;33018:88;33125:4;33122:1;33115:15;33149:4;33146:1;33139:15;33166:174;33306:26;33302:1;33294:6;33290:14;33283:50;33166:174;:::o;33346:366::-;33488:3;33509:67;33573:2;33568:3;33509:67;:::i;:::-;33502:74;;33585:93;33674:3;33585:93;:::i;:::-;33703:2;33698:3;33694:12;33687:19;;33346:366;;;:::o;33718:419::-;33884:4;33922:2;33911:9;33907:18;33899:26;;33971:9;33965:4;33961:20;33957:1;33946:9;33942:17;33935:47;33999:131;34125:4;33999:131;:::i;:::-;33991:139;;33718:419;;;:::o;34143:181::-;34283:33;34279:1;34271:6;34267:14;34260:57;34143:181;:::o;34330:366::-;34472:3;34493:67;34557:2;34552:3;34493:67;:::i;:::-;34486:74;;34569:93;34658:3;34569:93;:::i;:::-;34687:2;34682:3;34678:12;34671:19;;34330:366;;;:::o;34702:419::-;34868:4;34906:2;34895:9;34891:18;34883:26;;34955:9;34949:4;34945:20;34941:1;34930:9;34926:17;34919:47;34983:131;35109:4;34983:131;:::i;:::-;34975:139;;34702:419;;;:::o;35127:221::-;35267:34;35263:1;35255:6;35251:14;35244:58;35336:4;35331:2;35323:6;35319:15;35312:29;35127:221;:::o;35354:366::-;35496:3;35517:67;35581:2;35576:3;35517:67;:::i;:::-;35510:74;;35593:93;35682:3;35593:93;:::i;:::-;35711:2;35706:3;35702:12;35695:19;;35354:366;;;:::o;35726:419::-;35892:4;35930:2;35919:9;35915:18;35907:26;;35979:9;35973:4;35969:20;35965:1;35954:9;35950:17;35943:47;36007:131;36133:4;36007:131;:::i;:::-;35999:139;;35726:419;;;:::o

Swarm Source

ipfs://323ebe49934c28286199241d7a43087c104cec169e233fd4bef7f66fa8f21765
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.