ETH Price: $3,265.25 (+0.69%)
Gas: 1 Gwei

Token

Rob (ROB)
 

Overview

Max Total Supply

69,000,000,000 ROB

Holders

168

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
61,654,577.003885434261130356 ROB

Value
$0.00
0x6c0113155c47b4e21544702e3dd4fa93c3a51828
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:
Rob

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes 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-core/contracts/interfaces/IUniswapV2Pair.sol


pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) 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: @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: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: @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/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @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) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @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].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // 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 _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @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) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, 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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/draft-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: contracts/ROB.sol


pragma solidity ^0.8.9;









contract Rob is ERC20, Pausable, Ownable, ERC20Permit {
    using SafeMath for uint256;

    address public charityWallet = 0xa2d856870A4a351B715a91093d2ad25B5025DD0d;
    address constant public liquidityWallet = 0x6Ab40BcF32fd756bf755b226FF89bDFF202113eb;
    address constant public uniswapV2RouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address immutable public uniswapV2Pair;

    IUniswapV2Router02 private uniswapV2Router;

    bool private swapping;

    uint8 public buyCharityRate;
    uint8 public buyLiquidityRate;
    uint8 public sellCharityRate;
    uint8 public sellLiquidityRate;
    
    uint256 private tokensForLiquidity;
    uint256 private swapTokensAtAmount;
    uint256 private maxTokensAmount;

    mapping(address => bool) private _isBlacklisted;
    mapping(address => bool) private _isExcludedFromFees;

    constructor() ERC20("Rob", "ROB") ERC20Permit("Rob") {
        buyCharityRate = 1;
        buyLiquidityRate = 2;
        sellCharityRate = 2;
        sellLiquidityRate = 1;
        tokensForLiquidity = 0;

        swapping = false;

        uint256 totalSupply = 69000000000 * 10 ** decimals();
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet
        maxTokensAmount = (totalSupply * 25) / 10000; // 0.25% max sell

        uniswapV2Router = IUniswapV2Router02(uniswapV2RouterAddress);
        address factory = uniswapV2Router.factory();
        uniswapV2Pair = IUniswapV2Factory(factory).createPair(address(this), uniswapV2Router.WETH());
        
        _isExcludedFromFees[charityWallet] = true;
        _isExcludedFromFees[liquidityWallet] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function blacklist(address _address, bool _blacklistedAccount) external onlyOwner {
        _isBlacklisted[_address] = _blacklistedAccount;
    }

    function changeCharityWallet(address _address) external onlyOwner {
        require(_address != address(0xdead));
        charityWallet = _address;
    }

    function excludeFromFees(address _address, bool _isExcluded) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function setBuyRate(uint8 charityRate, uint8 liquidityRate) external onlyOwner {
        require(charityRate <= 6 && liquidityRate <= 6 && charityRate + liquidityRate <= 6, "Invalid buy rate");
        buyCharityRate = charityRate;
        buyLiquidityRate = liquidityRate;
    }

    function setSellRate(uint8 charityRate, uint8 liquidityRate) external onlyOwner {
        require(charityRate <= 6 && liquidityRate <= 6 && charityRate + liquidityRate <= 6, "Invalid sell rate");
        sellCharityRate = charityRate;
        sellLiquidityRate = liquidityRate;
    }

    // change the max amount of tokens to sell at once
    function updateMaxTokensAmount(uint256 newAmount) external onlyOwner {
        require( newAmount >= totalSupply().div(10000), "Amount under minimum threshold of 0.01%");
        require( newAmount <= totalSupply().div(100), "Amount over maximum threshold of 1%"); 
        maxTokensAmount = newAmount;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require( newAmount >= totalSupply().div(100000), "<T" ); // newAmount under minimum threshold of 0.001%
        require( newAmount <= totalSupply().div(200), ">T" ); // newAmount over maximum threshold of 0.5%
        swapTokensAtAmount = newAmount;
    }

    function isAccountExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function isAccountBlacklisted(address account) public view returns(bool) {
        return _isBlacklisted[account];
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(!paused(), "CP"); // Contract paused
        require(!_isBlacklisted[to] && !_isBlacklisted[from], "Blacklisted Address");

        uint256 fee = 0;

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            bool isSelling = to == uniswapV2Pair;
            
            if( isSelling && !swapping && balanceOf(address(this)) > swapTokensAtAmount ) {
                    swapping = true;
                    swapBack();
                    swapping = false;
            }

            // check if a rate for buying or selling applies           
            if(from == uniswapV2Pair) {
                fee = amount.mul(buyCharityRate + buyLiquidityRate).div(100);
                tokensForLiquidity += amount.mul(buyLiquidityRate).div(100);
            } else if (isSelling) {
                fee = amount.mul(sellCharityRate + sellLiquidityRate).div(100);
                tokensForLiquidity += amount.mul(sellLiquidityRate).div(100);
            }

            // Transfer the fee
            if (fee > 0) {
                super._transfer(from, address(this), fee);
            }
        }

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

    function swapBack() private {
        uint256 liquidityTokens = tokensForLiquidity.div(2);
        uint256 contractBalance = balanceOf(address(this)).sub(liquidityTokens);
        bool success;
        if (contractBalance == 0) { return; }

        uint256 charityTokens = contractBalance.sub(liquidityTokens);
        uint256 maxSwap = Math.min(contractBalance, maxTokensAmount);

        if( contractBalance > maxSwap ) {
            charityTokens = charityTokens.mul(maxSwap).div(contractBalance);
            liquidityTokens = maxSwap.sub(charityTokens);
        }
        
        uint256 initialETHBalance = address(this).balance;
        swapTokensForETH(maxSwap);
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 liquidityEth = ethBalance.mul(liquidityTokens).div(maxSwap);
        tokensForLiquidity -= liquidityTokens.mul(2);

        if(liquidityTokens > 0 && liquidityEth > 0){
            addLiquidity(liquidityTokens, liquidityEth);
        }

        (success,) = address(charityWallet).call{value: address(this).balance}("");
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), uniswapV2RouterAddress, tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), uniswapV2RouterAddress, tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            liquidityWallet,
            block.timestamp
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_blacklistedAccount","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyCharityRate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityRate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"changeCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","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":"isAccountBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAccountExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sellCharityRate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityRate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"charityRate","type":"uint8"},{"internalType":"uint8","name":"liquidityRate","type":"uint8"}],"name":"setBuyRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"charityRate","type":"uint8"},{"internalType":"uint8","name":"liquidityRate","type":"uint8"}],"name":"setSellRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2RouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

610160604052600880546001600160a01b03191673a2d856870a4a351b715a91093d2ad25b5025dd0d1790553480156200003857600080fd5b50604051806040016040528060038152602001622937b160e91b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060038152602001622937b160e91b815250604051806040016040528060038152602001622927a160e91b8152508160039081620000b9919062000636565b506004620000c8828262000636565b50506005805460ff1916905550620000e0336200046d565b815160208084019190912082518383012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c00190528051940193909320919290916080523060c052610120525050600980546000600a81905564ffffffffff60a01b19909116630102020160a81b179091559250620001a1915050601290565b620001ae90600a62000817565b620001bf90641010b872006200082f565b9050612710620001d18260056200082f565b620001dd919062000849565b600b55612710620001f08260196200082f565b620001fc919062000849565b600c55600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa15801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d91906200086c565b9050806001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031991906200086c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000367573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038d91906200086c565b6001600160a01b0390811661014052600854166000908152600e6020819052604082208054600160ff199182168117909255736ab40bcf32fd756bf755b226ff89bdff202113eb84527fc06093fff74cd59ea4ebe6e6a0911693a55a03b11f715d88264d947ef73d83e3805490911682179055916200041960055461010090046001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600e909252902080549091166001179055620004653383620004c7565b5050620008ad565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005225760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000536919062000897565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005bd57607f821691505b602082108103620005de57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058d57600081815260208120601f850160051c810160208610156200060d5750805b601f850160051c820191505b818110156200062e5782815560010162000619565b505050505050565b81516001600160401b0381111562000652576200065262000592565b6200066a81620006638454620005a8565b84620005e4565b602080601f831160018114620006a25760008415620006895750858301515b600019600386901b1c1916600185901b1785556200062e565b600085815260208120601f198616915b82811015620006d357888601518255948401946001909101908401620006b2565b5085821015620006f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007595781600019048211156200073d576200073d62000702565b808516156200074b57918102915b93841c93908002906200071d565b509250929050565b600082620007725750600162000811565b81620007815750600062000811565b81600181146200079a5760028114620007a557620007c5565b600191505062000811565b60ff841115620007b957620007b962000702565b50506001821b62000811565b5060208310610133831016604e8410600b8410161715620007ea575081810a62000811565b620007f6838362000718565b80600019048211156200080d576200080d62000702565b0290505b92915050565b60006200082860ff84168362000761565b9392505050565b808202811582820484141762000811576200081162000702565b6000826200086757634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200087f57600080fd5b81516001600160a01b03811681146200082857600080fd5b8082018082111562000811576200081162000702565b60805160a05160c05160e0516101005161012051610140516122566200091660003960008181610462015281816111c5015261125d01526000611422015260006114710152600061144c015260006113a5015260006113cf015260006113f901526122566000f3fe60806040526004361061021d5760003560e01c80635c975abb11610123578063a457c2d7116100ab578063d505accf1161006f578063d505accf1461067d578063da3e78ea1461069d578063dd62ed3e146106d6578063de08749f146106f6578063f2fde38b1461071757600080fd5b8063a457c2d7146105d5578063a9059cbb146105f5578063c024666814610615578063d257b34f14610635578063d46980161461065557600080fd5b80637ecebe00116100f25780637ecebe00146105475780638456cb59146105675780638da5cb5b1461057c57806395d89b411461059f5780639b078344146105b457600080fd5b80635c975abb146104c457806370a08231146104dc578063715018a6146105125780637b2087691461052757600080fd5b806323b872dd116101a6578063395093511161017557806339509351146103fb5780633f4ba83a1461041b578063404e51291461043057806349bd5a5e146104505780634a377e1d1461049c57600080fd5b806323b872dd14610392578063313ce567146103b25780633644e515146103c657806337ec5a24146103db57600080fd5b80630f1d76c1116101ed5780630f1d76c1146102c6578063149e91ae146102ff57806318160ddd146103325780631a3874c9146103515780631bf171e91461037257600080fd5b8062a2a32214610229578063058828691461024b57806306fdde031461026b578063095ea7b31461029657600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50610249610244366004611e63565b610737565b005b34801561025757600080fd5b50610249610266366004611e63565b6107e9565b34801561027757600080fd5b50610280610895565b60405161028d9190611e96565b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004611ef9565b610927565b604051901515815260200161028d565b3480156102d257600080fd5b506102b66102e1366004611f25565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561030b57600080fd5b5060095461032090600160b01b900460ff1681565b60405160ff909116815260200161028d565b34801561033e57600080fd5b506002545b60405190815260200161028d565b34801561035d57600080fd5b5060095461032090600160a81b900460ff1681565b34801561037e57600080fd5b5061024961038d366004611f42565b610941565b34801561039e57600080fd5b506102b66103ad366004611f5b565b610a2b565b3480156103be57600080fd5b506012610320565b3480156103d257600080fd5b50610343610a4f565b3480156103e757600080fd5b506102496103f6366004611f25565b610a5e565b34801561040757600080fd5b506102b6610416366004611ef9565b610aa0565b34801561042757600080fd5b50610249610ac2565b34801561043c57600080fd5b5061024961044b366004611f9c565b610ad4565b34801561045c57600080fd5b506104847f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028d565b3480156104a857600080fd5b50610484737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104d057600080fd5b5060055460ff166102b6565b3480156104e857600080fd5b506103436104f7366004611f25565b6001600160a01b031660009081526020819052604090205490565b34801561051e57600080fd5b50610249610b07565b34801561053357600080fd5b50600854610484906001600160a01b031681565b34801561055357600080fd5b50610343610562366004611f25565b610b19565b34801561057357600080fd5b50610249610b37565b34801561058857600080fd5b5060055461010090046001600160a01b0316610484565b3480156105ab57600080fd5b50610280610b47565b3480156105c057600080fd5b5060095461032090600160c01b900460ff1681565b3480156105e157600080fd5b506102b66105f0366004611ef9565b610b56565b34801561060157600080fd5b506102b6610610366004611ef9565b610bd1565b34801561062157600080fd5b50610249610630366004611f9c565b610bdf565b34801561064157600080fd5b50610249610650366004611f42565b610c12565b34801561066157600080fd5b50610484736ab40bcf32fd756bf755b226ff89bdff202113eb81565b34801561068957600080fd5b50610249610698366004611fda565b610ca5565b3480156106a957600080fd5b506102b66106b8366004611f25565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156106e257600080fd5b506103436106f1366004612048565b610e09565b34801561070257600080fd5b5060095461032090600160b81b900460ff1681565b34801561072357600080fd5b50610249610732366004611f25565b610e34565b61073f610ead565b60068260ff1611158015610757575060068160ff1611155b80156107705750600661076a828461208c565b60ff1611155b6107b55760405162461bcd60e51b8152602060048201526011602482015270496e76616c69642073656c6c207261746560781b60448201526064015b60405180910390fd5b6009805461ffff60b81b1916600160b81b60ff9485160260ff60c01b191617600160c01b9290931691909102919091179055565b6107f1610ead565b60068260ff1611158015610809575060068160ff1611155b80156108225750600661081c828461208c565b60ff1611155b6108615760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420627579207261746560801b60448201526064016107ac565b6009805461ffff60a81b1916600160a81b60ff9485160260ff60b01b191617600160b01b9290931691909102919091179055565b6060600380546108a4906120a5565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906120a5565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600033610935818585610f0d565b60019150505b92915050565b610949610ead565b61095e61271061095860025490565b90611031565b8110156109bd5760405162461bcd60e51b815260206004820152602760248201527f416d6f756e7420756e646572206d696e696d756d207468726573686f6c64206f6044820152666620302e30312560c81b60648201526084016107ac565b6109cb606461095860025490565b811115610a265760405162461bcd60e51b815260206004820152602360248201527f416d6f756e74206f766572206d6178696d756d207468726573686f6c64206f6660448201526220312560e81b60648201526084016107ac565b600c55565b600033610a39858285611044565b610a448585856110be565b506001949350505050565b6000610a59611398565b905090565b610a66610ead565b61deac196001600160a01b03821601610a7e57600080fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600033610935818585610ab38383610e09565b610abd91906120d9565b610f0d565b610aca610ead565b610ad26114bf565b565b610adc610ead565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610b0f610ead565b610ad26000611511565b6001600160a01b03811660009081526006602052604081205461093b565b610b3f610ead565b610ad261156b565b6060600480546108a4906120a5565b60003381610b648286610e09565b905083811015610bc45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ac565b610a448286868403610f0d565b6000336109358185856110be565b610be7610ead565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610c1a610ead565b610c2a620186a061095860025490565b811015610c5e5760405162461bcd60e51b81526020600482015260026024820152610f1560f21b60448201526064016107ac565b610c6c60c861095860025490565b811115610ca05760405162461bcd60e51b81526020600482015260026024820152610f9560f21b60448201526064016107ac565b600b55565b83421115610cf55760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107ac565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610d248c6115a8565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610d7f826115d0565b90506000610d8f8287878761161e565b9050896001600160a01b0316816001600160a01b031614610df25760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107ac565b610dfd8a8a8a610f0d565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e3c610ead565b6001600160a01b038116610ea15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ac565b610eaa81611511565b50565b6005546001600160a01b03610100909104163314610ad25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ac565b6001600160a01b038316610f6f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ac565b6001600160a01b038216610fd05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061103d82846120ec565b9392505050565b60006110508484610e09565b905060001981146110b857818110156110ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ac565b6110b88484848403610f0d565b50505050565b60055460ff16156110f65760405162461bcd60e51b8152602060048201526002602482015261043560f41b60448201526064016107ac565b6001600160a01b0382166000908152600d602052604090205460ff1615801561113857506001600160a01b0383166000908152600d602052604090205460ff16155b61117a5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564204164647265737360681b60448201526064016107ac565b6001600160a01b0383166000908152600e602052604081205460ff161580156111bc57506001600160a01b0383166000908152600e602052604090205460ff16155b156113845760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161490508080156112115750600954600160a01b900460ff16155b801561122d5750600b5430600090815260208190526040902054115b1561125b576009805460ff60a01b1916600160a01b17905561124d611646565b6009805460ff60a01b191690555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603611307576009546112c990606490610958906112bf9060ff600160b01b8204811691600160a81b90041661208c565b869060ff166117a0565b6009549092506112eb90606490610958908690600160b01b900460ff166117a0565b600a60008282546112fc91906120d9565b909155506113719050565b80156113715760095461133890606490610958906112bf9060ff600160c01b8204811691600160b81b90041661208c565b60095490925061135a90606490610958908690600160c01b900460ff166117a0565b600a600082825461136b91906120d9565b90915550505b8115611382576113828530846117ac565b505b6110b884846113938585611950565b6117ac565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156113f157507f000000000000000000000000000000000000000000000000000000000000000046145b1561141b57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6114c761195c565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115736119a5565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114f43390565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b600061093b6115dd611398565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061162f878787876119eb565b9150915061163c81611aaf565b5095945050505050565b600a54600090611657906002611031565b905060006116848261167e306001600160a01b031660009081526020819052604090205490565b90611950565b905060008160000361169557505050565b60006116a18385611950565b905060006116b184600c54611bf9565b9050808411156116d8576116c98461095884846117a0565b91506116d58183611950565b94505b476116e282611c0f565b60006116ee4783611950565b9050600061170084610958848b6117a0565b905061170d8860026117a0565b600a600082825461171e919061210e565b909155505087158015906117325750600081115b15611741576117418882611d82565b6008546040516001600160a01b03909116904790600081818185875af1925050503d806000811461178e576040519150601f19603f3d011682016040523d82523d6000602084013e611793565b606091505b5050505050505050505050565b600061103d8284612121565b6001600160a01b0383166118105760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ac565b6001600160a01b0382166118725760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ac565b6001600160a01b038316600090815260208190526040902054818110156118ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ac565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110b8565b600061103d828461210e565b60055460ff16610ad25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107ac565b60055460ff1615610ad25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ac565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611a225750600090506003611aa6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a76573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a9f57600060019250925050611aa6565b9150600090505b94509492505050565b6000816004811115611ac357611ac3612138565b03611acb5750565b6001816004811115611adf57611adf612138565b03611b2c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107ac565b6002816004811115611b4057611b40612138565b03611b8d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107ac565b6003816004811115611ba157611ba1612138565b03610eaa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107ac565b6000818310611c08578161103d565b5090919050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c4457611c4461214e565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611c9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc19190612164565b81600181518110611cd457611cd461214e565b60200260200101906001600160a01b031690816001600160a01b031681525050611d1330737a250d5630b4cf539739df2c5dacb4c659f2488d84610f0d565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d4c908590600090869030904290600401612181565b600060405180830381600087803b158015611d6657600080fd5b505af1158015611d7a573d6000803e3d6000fd5b505050505050565b611da130737a250d5630b4cf539739df2c5dacb4c659f2488d84610f0d565b60095460405163f305d71960e01b8152306004820152602481018490526000604482018190526064820152736ab40bcf32fd756bf755b226ff89bdff202113eb60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015611e21573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e4691906121f2565b5050505050565b803560ff81168114611e5e57600080fd5b919050565b60008060408385031215611e7657600080fd5b611e7f83611e4d565b9150611e8d60208401611e4d565b90509250929050565b600060208083528351808285015260005b81811015611ec357858101830151858201604001528201611ea7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610eaa57600080fd5b60008060408385031215611f0c57600080fd5b8235611f1781611ee4565b946020939093013593505050565b600060208284031215611f3757600080fd5b813561103d81611ee4565b600060208284031215611f5457600080fd5b5035919050565b600080600060608486031215611f7057600080fd5b8335611f7b81611ee4565b92506020840135611f8b81611ee4565b929592945050506040919091013590565b60008060408385031215611faf57600080fd5b8235611fba81611ee4565b915060208301358015158114611fcf57600080fd5b809150509250929050565b600080600080600080600060e0888a031215611ff557600080fd5b873561200081611ee4565b9650602088013561201081611ee4565b9550604088013594506060880135935061202c60808901611e4d565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561205b57600080fd5b823561206681611ee4565b91506020830135611fcf81611ee4565b634e487b7160e01b600052601160045260246000fd5b60ff818116838216019081111561093b5761093b612076565b600181811c908216806120b957607f821691505b6020821081036115ca57634e487b7160e01b600052602260045260246000fd5b8082018082111561093b5761093b612076565b60008261210957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561093b5761093b612076565b808202811582820484141761093b5761093b612076565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561217657600080fd5b815161103d81611ee4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121d15784516001600160a01b0316835293830193918301916001016121ac565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561220757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a964a4037ae6d5ac56cc2869811bef4a6a4b729cda01ee217d53586ead4bc15964736f6c63430008130033

Deployed Bytecode

0x60806040526004361061021d5760003560e01c80635c975abb11610123578063a457c2d7116100ab578063d505accf1161006f578063d505accf1461067d578063da3e78ea1461069d578063dd62ed3e146106d6578063de08749f146106f6578063f2fde38b1461071757600080fd5b8063a457c2d7146105d5578063a9059cbb146105f5578063c024666814610615578063d257b34f14610635578063d46980161461065557600080fd5b80637ecebe00116100f25780637ecebe00146105475780638456cb59146105675780638da5cb5b1461057c57806395d89b411461059f5780639b078344146105b457600080fd5b80635c975abb146104c457806370a08231146104dc578063715018a6146105125780637b2087691461052757600080fd5b806323b872dd116101a6578063395093511161017557806339509351146103fb5780633f4ba83a1461041b578063404e51291461043057806349bd5a5e146104505780634a377e1d1461049c57600080fd5b806323b872dd14610392578063313ce567146103b25780633644e515146103c657806337ec5a24146103db57600080fd5b80630f1d76c1116101ed5780630f1d76c1146102c6578063149e91ae146102ff57806318160ddd146103325780631a3874c9146103515780631bf171e91461037257600080fd5b8062a2a32214610229578063058828691461024b57806306fdde031461026b578063095ea7b31461029657600080fd5b3661022457005b600080fd5b34801561023557600080fd5b50610249610244366004611e63565b610737565b005b34801561025757600080fd5b50610249610266366004611e63565b6107e9565b34801561027757600080fd5b50610280610895565b60405161028d9190611e96565b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004611ef9565b610927565b604051901515815260200161028d565b3480156102d257600080fd5b506102b66102e1366004611f25565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561030b57600080fd5b5060095461032090600160b01b900460ff1681565b60405160ff909116815260200161028d565b34801561033e57600080fd5b506002545b60405190815260200161028d565b34801561035d57600080fd5b5060095461032090600160a81b900460ff1681565b34801561037e57600080fd5b5061024961038d366004611f42565b610941565b34801561039e57600080fd5b506102b66103ad366004611f5b565b610a2b565b3480156103be57600080fd5b506012610320565b3480156103d257600080fd5b50610343610a4f565b3480156103e757600080fd5b506102496103f6366004611f25565b610a5e565b34801561040757600080fd5b506102b6610416366004611ef9565b610aa0565b34801561042757600080fd5b50610249610ac2565b34801561043c57600080fd5b5061024961044b366004611f9c565b610ad4565b34801561045c57600080fd5b506104847f00000000000000000000000066abaa99c4a874f2da20c22aaf75605a990c99c881565b6040516001600160a01b03909116815260200161028d565b3480156104a857600080fd5b50610484737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104d057600080fd5b5060055460ff166102b6565b3480156104e857600080fd5b506103436104f7366004611f25565b6001600160a01b031660009081526020819052604090205490565b34801561051e57600080fd5b50610249610b07565b34801561053357600080fd5b50600854610484906001600160a01b031681565b34801561055357600080fd5b50610343610562366004611f25565b610b19565b34801561057357600080fd5b50610249610b37565b34801561058857600080fd5b5060055461010090046001600160a01b0316610484565b3480156105ab57600080fd5b50610280610b47565b3480156105c057600080fd5b5060095461032090600160c01b900460ff1681565b3480156105e157600080fd5b506102b66105f0366004611ef9565b610b56565b34801561060157600080fd5b506102b6610610366004611ef9565b610bd1565b34801561062157600080fd5b50610249610630366004611f9c565b610bdf565b34801561064157600080fd5b50610249610650366004611f42565b610c12565b34801561066157600080fd5b50610484736ab40bcf32fd756bf755b226ff89bdff202113eb81565b34801561068957600080fd5b50610249610698366004611fda565b610ca5565b3480156106a957600080fd5b506102b66106b8366004611f25565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156106e257600080fd5b506103436106f1366004612048565b610e09565b34801561070257600080fd5b5060095461032090600160b81b900460ff1681565b34801561072357600080fd5b50610249610732366004611f25565b610e34565b61073f610ead565b60068260ff1611158015610757575060068160ff1611155b80156107705750600661076a828461208c565b60ff1611155b6107b55760405162461bcd60e51b8152602060048201526011602482015270496e76616c69642073656c6c207261746560781b60448201526064015b60405180910390fd5b6009805461ffff60b81b1916600160b81b60ff9485160260ff60c01b191617600160c01b9290931691909102919091179055565b6107f1610ead565b60068260ff1611158015610809575060068160ff1611155b80156108225750600661081c828461208c565b60ff1611155b6108615760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420627579207261746560801b60448201526064016107ac565b6009805461ffff60a81b1916600160a81b60ff9485160260ff60b01b191617600160b01b9290931691909102919091179055565b6060600380546108a4906120a5565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906120a5565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b600033610935818585610f0d565b60019150505b92915050565b610949610ead565b61095e61271061095860025490565b90611031565b8110156109bd5760405162461bcd60e51b815260206004820152602760248201527f416d6f756e7420756e646572206d696e696d756d207468726573686f6c64206f6044820152666620302e30312560c81b60648201526084016107ac565b6109cb606461095860025490565b811115610a265760405162461bcd60e51b815260206004820152602360248201527f416d6f756e74206f766572206d6178696d756d207468726573686f6c64206f6660448201526220312560e81b60648201526084016107ac565b600c55565b600033610a39858285611044565b610a448585856110be565b506001949350505050565b6000610a59611398565b905090565b610a66610ead565b61deac196001600160a01b03821601610a7e57600080fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600033610935818585610ab38383610e09565b610abd91906120d9565b610f0d565b610aca610ead565b610ad26114bf565b565b610adc610ead565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610b0f610ead565b610ad26000611511565b6001600160a01b03811660009081526006602052604081205461093b565b610b3f610ead565b610ad261156b565b6060600480546108a4906120a5565b60003381610b648286610e09565b905083811015610bc45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ac565b610a448286868403610f0d565b6000336109358185856110be565b610be7610ead565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610c1a610ead565b610c2a620186a061095860025490565b811015610c5e5760405162461bcd60e51b81526020600482015260026024820152610f1560f21b60448201526064016107ac565b610c6c60c861095860025490565b811115610ca05760405162461bcd60e51b81526020600482015260026024820152610f9560f21b60448201526064016107ac565b600b55565b83421115610cf55760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016107ac565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610d248c6115a8565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610d7f826115d0565b90506000610d8f8287878761161e565b9050896001600160a01b0316816001600160a01b031614610df25760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016107ac565b610dfd8a8a8a610f0d565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e3c610ead565b6001600160a01b038116610ea15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ac565b610eaa81611511565b50565b6005546001600160a01b03610100909104163314610ad25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ac565b6001600160a01b038316610f6f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ac565b6001600160a01b038216610fd05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061103d82846120ec565b9392505050565b60006110508484610e09565b905060001981146110b857818110156110ab5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ac565b6110b88484848403610f0d565b50505050565b60055460ff16156110f65760405162461bcd60e51b8152602060048201526002602482015261043560f41b60448201526064016107ac565b6001600160a01b0382166000908152600d602052604090205460ff1615801561113857506001600160a01b0383166000908152600d602052604090205460ff16155b61117a5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564204164647265737360681b60448201526064016107ac565b6001600160a01b0383166000908152600e602052604081205460ff161580156111bc57506001600160a01b0383166000908152600e602052604090205460ff16155b156113845760007f00000000000000000000000066abaa99c4a874f2da20c22aaf75605a990c99c86001600160a01b0316846001600160a01b03161490508080156112115750600954600160a01b900460ff16155b801561122d5750600b5430600090815260208190526040902054115b1561125b576009805460ff60a01b1916600160a01b17905561124d611646565b6009805460ff60a01b191690555b7f00000000000000000000000066abaa99c4a874f2da20c22aaf75605a990c99c86001600160a01b0316856001600160a01b031603611307576009546112c990606490610958906112bf9060ff600160b01b8204811691600160a81b90041661208c565b869060ff166117a0565b6009549092506112eb90606490610958908690600160b01b900460ff166117a0565b600a60008282546112fc91906120d9565b909155506113719050565b80156113715760095461133890606490610958906112bf9060ff600160c01b8204811691600160b81b90041661208c565b60095490925061135a90606490610958908690600160c01b900460ff166117a0565b600a600082825461136b91906120d9565b90915550505b8115611382576113828530846117ac565b505b6110b884846113938585611950565b6117ac565b6000306001600160a01b037f000000000000000000000000f1f2e8aab6ae739f41b06d23441af0afa079bb9f161480156113f157507f000000000000000000000000000000000000000000000000000000000000000146145b1561141b57507fcd7b18b0bc7de43ccd3509b186ef88d8b65ae41b4b709c803ddae0b3a5dfdf6390565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f196350a766c20f36334fd1df468520a26fbdb6c19362e00418dcb2a89fb4ed6a828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6114c761195c565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115736119a5565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114f43390565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b600061093b6115dd611398565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061162f878787876119eb565b9150915061163c81611aaf565b5095945050505050565b600a54600090611657906002611031565b905060006116848261167e306001600160a01b031660009081526020819052604090205490565b90611950565b905060008160000361169557505050565b60006116a18385611950565b905060006116b184600c54611bf9565b9050808411156116d8576116c98461095884846117a0565b91506116d58183611950565b94505b476116e282611c0f565b60006116ee4783611950565b9050600061170084610958848b6117a0565b905061170d8860026117a0565b600a600082825461171e919061210e565b909155505087158015906117325750600081115b15611741576117418882611d82565b6008546040516001600160a01b03909116904790600081818185875af1925050503d806000811461178e576040519150601f19603f3d011682016040523d82523d6000602084013e611793565b606091505b5050505050505050505050565b600061103d8284612121565b6001600160a01b0383166118105760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ac565b6001600160a01b0382166118725760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ac565b6001600160a01b038316600090815260208190526040902054818110156118ea5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ac565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110b8565b600061103d828461210e565b60055460ff16610ad25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016107ac565b60055460ff1615610ad25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ac565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611a225750600090506003611aa6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a76573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a9f57600060019250925050611aa6565b9150600090505b94509492505050565b6000816004811115611ac357611ac3612138565b03611acb5750565b6001816004811115611adf57611adf612138565b03611b2c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107ac565b6002816004811115611b4057611b40612138565b03611b8d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107ac565b6003816004811115611ba157611ba1612138565b03610eaa5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107ac565b6000818310611c08578161103d565b5090919050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c4457611c4461214e565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611c9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc19190612164565b81600181518110611cd457611cd461214e565b60200260200101906001600160a01b031690816001600160a01b031681525050611d1330737a250d5630b4cf539739df2c5dacb4c659f2488d84610f0d565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d4c908590600090869030904290600401612181565b600060405180830381600087803b158015611d6657600080fd5b505af1158015611d7a573d6000803e3d6000fd5b505050505050565b611da130737a250d5630b4cf539739df2c5dacb4c659f2488d84610f0d565b60095460405163f305d71960e01b8152306004820152602481018490526000604482018190526064820152736ab40bcf32fd756bf755b226ff89bdff202113eb60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015611e21573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e4691906121f2565b5050505050565b803560ff81168114611e5e57600080fd5b919050565b60008060408385031215611e7657600080fd5b611e7f83611e4d565b9150611e8d60208401611e4d565b90509250929050565b600060208083528351808285015260005b81811015611ec357858101830151858201604001528201611ea7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610eaa57600080fd5b60008060408385031215611f0c57600080fd5b8235611f1781611ee4565b946020939093013593505050565b600060208284031215611f3757600080fd5b813561103d81611ee4565b600060208284031215611f5457600080fd5b5035919050565b600080600060608486031215611f7057600080fd5b8335611f7b81611ee4565b92506020840135611f8b81611ee4565b929592945050506040919091013590565b60008060408385031215611faf57600080fd5b8235611fba81611ee4565b915060208301358015158114611fcf57600080fd5b809150509250929050565b600080600080600080600060e0888a031215611ff557600080fd5b873561200081611ee4565b9650602088013561201081611ee4565b9550604088013594506060880135935061202c60808901611e4d565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561205b57600080fd5b823561206681611ee4565b91506020830135611fcf81611ee4565b634e487b7160e01b600052601160045260246000fd5b60ff818116838216019081111561093b5761093b612076565b600181811c908216806120b957607f821691505b6020821081036115ca57634e487b7160e01b600052602260045260246000fd5b8082018082111561093b5761093b612076565b60008261210957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561093b5761093b612076565b808202811582820484141761093b5761093b612076565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561217657600080fd5b815161103d81611ee4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121d15784516001600160a01b0316835293830193918301916001016121ac565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561220757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a964a4037ae6d5ac56cc2869811bef4a6a4b729cda01ee217d53586ead4bc15964736f6c63430008130033

Deployed Bytecode Sourcemap

74402:7568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77183:287;;;;;;;;;;-1:-1:-1;77183:287:0;;;;;:::i;:::-;;:::i;:::-;;76892:283;;;;;;;;;;-1:-1:-1;76892:283:0;;;;;:::i;:::-;;:::i;59853:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62204:201;;;;;;;;;;-1:-1:-1;62204:201:0;;;;;:::i;:::-;;:::i;:::-;;;1606:14:1;;1599:22;1581:41;;1569:2;1554:18;62204:201:0;1441:187:1;78405:122:0;;;;;;;;;;-1:-1:-1;78405:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;78496:23:0;78472:4;78496:23;;;:14;:23;;;;;;;;;78405:122;74929:29;;;;;;;;;;-1:-1:-1;74929:29:0;;;;-1:-1:-1;;;74929:29:0;;;;;;;;;2057:4:1;2045:17;;;2027:36;;2015:2;2000:18;74929:29:0;1885:184:1;60973:108:0;;;;;;;;;;-1:-1:-1;61061:12:0;;60973:108;;;2220:25:1;;;2208:2;2193:18;60973:108:0;2074:177:1;74895:27:0;;;;;;;;;;-1:-1:-1;74895:27:0;;;;-1:-1:-1;;;74895:27:0;;;;;;77534:312;;;;;;;;;;-1:-1:-1;77534:312:0;;;;;:::i;:::-;;:::i;62985:295::-;;;;;;;;;;-1:-1:-1;62985:295:0;;;;;:::i;:::-;;:::i;60815:93::-;;;;;;;;;;-1:-1:-1;60898:2:0;60815:93;;73860:115;;;;;;;;;;;;;:::i;76436:156::-;;;;;;;;;;-1:-1:-1;76436:156:0;;;;;:::i;:::-;;:::i;63689:238::-;;;;;;;;;;-1:-1:-1;63689:238:0;;;;;:::i;:::-;;:::i;76819:65::-;;;;;;;;;;;;;:::i;76281:147::-;;;;;;;;;;-1:-1:-1;76281:147:0;;;;;:::i;:::-;;:::i;74767:38::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3669:32:1;;;3651:51;;3639:2;3624:18;74767:38:0;3505:203:1;74669:91:0;;;;;;;;;;;;74718:42;74669:91;;53113:86;;;;;;;;;;-1:-1:-1;53184:7:0;;;;53113:86;;61144:127;;;;;;;;;;-1:-1:-1;61144:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;61245:18:0;61218:7;61245:18;;;;;;;;;;;;61144:127;50623:103;;;;;;;;;;;;;:::i;74498:73::-;;;;;;;;;;-1:-1:-1;74498:73:0;;;;-1:-1:-1;;;;;74498:73:0;;;73602:128;;;;;;;;;;-1:-1:-1;73602:128:0;;;;;:::i;:::-;;:::i;76750:61::-;;;;;;;;;;;;;:::i;49975:87::-;;;;;;;;;;-1:-1:-1;50048:6:0;;;;;-1:-1:-1;;;;;50048:6:0;49975:87;;60072:104;;;;;;;;;;;;;:::i;75000:30::-;;;;;;;;;;-1:-1:-1;75000:30:0;;;;-1:-1:-1;;;75000:30:0;;;;;;64430:436;;;;;;;;;;-1:-1:-1;64430:436:0;;;;;:::i;:::-;;:::i;61477:193::-;;;;;;;;;;-1:-1:-1;61477:193:0;;;;;:::i;:::-;;:::i;76600:142::-;;;;;;;;;;-1:-1:-1;76600:142:0;;;;;:::i;:::-;;:::i;77916:341::-;;;;;;;;;;-1:-1:-1;77916:341:0;;;;;:::i;:::-;;:::i;74578:84::-;;;;;;;;;;;;74620:42;74578:84;;72891:645;;;;;;;;;;-1:-1:-1;72891:645:0;;;;;:::i;:::-;;:::i;78265:132::-;;;;;;;;;;-1:-1:-1;78265:132:0;;;;;:::i;:::-;-1:-1:-1;;;;;78361:28:0;78337:4;78361:28;;;:19;:28;;;;;;;;;78265:132;61733:151;;;;;;;;;;-1:-1:-1;61733:151:0;;;;;:::i;:::-;;:::i;74965:28::-;;;;;;;;;;-1:-1:-1;74965:28:0;;;;-1:-1:-1;;;74965:28:0;;;;;;50881:201;;;;;;;;;;-1:-1:-1;50881:201:0;;;;;:::i;:::-;;:::i;77183:287::-;49861:13;:11;:13::i;:::-;77297:1:::1;77282:11;:16;;;;:38;;;;;77319:1;77302:13;:18;;;;77282:38;:74;;;;-1:-1:-1::0;77355:1:0::1;77324:27;77338:13:::0;77324:11;:27:::1;:::i;:::-;:32;;;;77282:74;77274:104;;;::::0;-1:-1:-1;;;77274:104:0;;5332:2:1;77274:104:0::1;::::0;::::1;5314:21:1::0;5371:2;5351:18;;;5344:30;-1:-1:-1;;;5390:18:1;;;5383:47;5447:18;;77274:104:0::1;;;;;;;;;77389:15;:29:::0;;-1:-1:-1;;;;77429:33:0;-1:-1:-1;;;77389:29:0::1;::::0;;::::1;;-1:-1:-1::0;;;;77429:33:0;;-1:-1:-1;;;77429:33:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;77183:287::o;76892:283::-;49861:13;:11;:13::i;:::-;77005:1:::1;76990:11;:16;;;;:38;;;;;77027:1;77010:13;:18;;;;76990:38;:74;;;;-1:-1:-1::0;77063:1:0::1;77032:27;77046:13:::0;77032:11;:27:::1;:::i;:::-;:32;;;;76990:74;76982:103;;;::::0;-1:-1:-1;;;76982:103:0;;5678:2:1;76982:103:0::1;::::0;::::1;5660:21:1::0;5717:2;5697:18;;;5690:30;-1:-1:-1;;;5736:18:1;;;5729:46;5792:18;;76982:103:0::1;5476:340:1::0;76982:103:0::1;77096:14;:28:::0;;-1:-1:-1;;;;77135:32:0;-1:-1:-1;;;77096:28:0::1;::::0;;::::1;;-1:-1:-1::0;;;;77135:32:0;;-1:-1:-1;;;77135:32:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;76892:283::o;59853:100::-;59907:13;59940:5;59933:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59853:100;:::o;62204:201::-;62287:4;48606:10;62343:32;48606:10;62359:7;62368:6;62343:8;:32::i;:::-;62393:4;62386:11;;;62204:201;;;;;:::o;77534:312::-;49861:13;:11;:13::i;:::-;77636:24:::1;77654:5;77636:13;61061:12:::0;;;60973:108;77636:13:::1;:17:::0;::::1;:24::i;:::-;77623:9;:37;;77614:90;;;::::0;-1:-1:-1;;;77614:90:0;;6408:2:1;77614:90:0::1;::::0;::::1;6390:21:1::0;6447:2;6427:18;;;6420:30;6486:34;6466:18;;;6459:62;-1:-1:-1;;;6537:18:1;;;6530:37;6584:19;;77614:90:0::1;6206:403:1::0;77614:90:0::1;77737:22;77755:3;77737:13;61061:12:::0;;;60973:108;77737:22:::1;77724:9;:35;;77715:84;;;::::0;-1:-1:-1;;;77715:84:0;;6816:2:1;77715:84:0::1;::::0;::::1;6798:21:1::0;6855:2;6835:18;;;6828:30;6894:34;6874:18;;;6867:62;-1:-1:-1;;;6945:18:1;;;6938:33;6988:19;;77715:84:0::1;6614:399:1::0;77715:84:0::1;77811:15;:27:::0;77534:312::o;62985:295::-;63116:4;48606:10;63174:38;63190:4;48606:10;63205:6;63174:15;:38::i;:::-;63223:27;63233:4;63239:2;63243:6;63223:9;:27::i;:::-;-1:-1:-1;63268:4:0;;62985:295;-1:-1:-1;;;;62985:295:0:o;73860:115::-;73920:7;73947:20;:18;:20::i;:::-;73940:27;;73860:115;:::o;76436:156::-;49861:13;:11;:13::i;:::-;-1:-1:-1;;;;;;;76521:27:0;::::1;::::0;76513:36:::1;;;::::0;::::1;;76560:13;:24:::0;;-1:-1:-1;;;;;;76560:24:0::1;-1:-1:-1::0;;;;;76560:24:0;;;::::1;::::0;;;::::1;::::0;;76436:156::o;63689:238::-;63777:4;48606:10;63833:64;48606:10;63849:7;63886:10;63858:25;48606:10;63849:7;63858:9;:25::i;:::-;:38;;;;:::i;:::-;63833:8;:64::i;76819:65::-;49861:13;:11;:13::i;:::-;76866:10:::1;:8;:10::i;:::-;76819:65::o:0;76281:147::-;49861:13;:11;:13::i;:::-;-1:-1:-1;;;;;76374:24:0;;;::::1;;::::0;;;:14:::1;:24;::::0;;;;:46;;-1:-1:-1;;76374:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76281:147::o;50623:103::-;49861:13;:11;:13::i;:::-;50688:30:::1;50715:1;50688:18;:30::i;73602:128::-:0;-1:-1:-1;;;;;73698:14:0;;73671:7;73698:14;;;:7;:14;;;;;16387;73698:24;16295:114;76750:61;49861:13;:11;:13::i;:::-;76795:8:::1;:6;:8::i;60072:104::-:0;60128:13;60161:7;60154:14;;;;;:::i;64430:436::-;64523:4;48606:10;64523:4;64606:25;48606:10;64623:7;64606:9;:25::i;:::-;64579:52;;64670:15;64650:16;:35;;64642:85;;;;-1:-1:-1;;;64642:85:0;;7350:2:1;64642:85:0;;;7332:21:1;7389:2;7369:18;;;7362:30;7428:34;7408:18;;;7401:62;-1:-1:-1;;;7479:18:1;;;7472:35;7524:19;;64642:85:0;7148:401:1;64642:85:0;64763:60;64772:5;64779:7;64807:15;64788:16;:34;64763:8;:60::i;61477:193::-;61556:4;48606:10;61612:28;48606:10;61629:2;61633:6;61612:9;:28::i;76600:142::-;49861:13;:11;:13::i;:::-;-1:-1:-1;;;;;76691:29:0;;;::::1;;::::0;;;:19:::1;:29;::::0;;;;:43;;-1:-1:-1;;76691:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76600:142::o;77916:341::-;49861:13;:11;:13::i;:::-;78021:25:::1;78039:6;78021:13;61061:12:::0;;;60973:108;78021:25:::1;78008:9;:38;;77999:55;;;::::0;-1:-1:-1;;;77999:55:0;;7756:2:1;77999:55:0::1;::::0;::::1;7738:21:1::0;7795:1;7775:18;;;7768:29;-1:-1:-1;;;7813:18:1;;;7806:32;7855:18;;77999:55:0::1;7554:325:1::0;77999:55:0::1;78134:22;78152:3;78134:13;61061:12:::0;;;60973:108;78134:22:::1;78121:9;:35;;78112:52;;;::::0;-1:-1:-1;;;78112:52:0;;8086:2:1;78112:52:0::1;::::0;::::1;8068:21:1::0;8125:1;8105:18;;;8098:29;-1:-1:-1;;;8143:18:1;;;8136:32;8185:18;;78112:52:0::1;7884:325:1::0;78112:52:0::1;78219:18;:30:::0;77916:341::o;72891:645::-;73135:8;73116:15;:27;;73108:69;;;;-1:-1:-1;;;73108:69:0;;8416:2:1;73108:69:0;;;8398:21:1;8455:2;8435:18;;;8428:30;8494:31;8474:18;;;8467:59;8543:18;;73108:69:0;8214:353:1;73108:69:0;73190:18;72066:95;73250:5;73257:7;73266:5;73273:16;73283:5;73273:9;:16::i;:::-;73221:79;;;;;;8859:25:1;;;;-1:-1:-1;;;;;8958:15:1;;;8938:18;;;8931:43;9010:15;;;;8990:18;;;8983:43;9042:18;;;9035:34;9085:19;;;9078:35;9129:19;;;9122:35;;;8831:19;;73221:79:0;;;;;;;;;;;;73211:90;;;;;;73190:111;;73314:12;73329:28;73346:10;73329:16;:28::i;:::-;73314:43;;73370:14;73387:28;73401:4;73407:1;73410;73413;73387:13;:28::i;:::-;73370:45;;73444:5;-1:-1:-1;;;;;73434:15:0;:6;-1:-1:-1;;;;;73434:15:0;;73426:58;;;;-1:-1:-1;;;73426:58:0;;9370:2:1;73426:58:0;;;9352:21:1;9409:2;9389:18;;;9382:30;9448:32;9428:18;;;9421:60;9498:18;;73426:58:0;9168:354:1;73426:58:0;73497:31;73506:5;73513:7;73522:5;73497:8;:31::i;:::-;73097:439;;;72891:645;;;;;;;:::o;61733:151::-;-1:-1:-1;;;;;61849:18:0;;;61822:7;61849:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;61733:151::o;50881:201::-;49861:13;:11;:13::i;:::-;-1:-1:-1;;;;;50970:22:0;::::1;50962:73;;;::::0;-1:-1:-1;;;50962:73:0;;9729:2:1;50962:73:0::1;::::0;::::1;9711:21:1::0;9768:2;9748:18;;;9741:30;9807:34;9787:18;;;9780:62;-1:-1:-1;;;9858:18:1;;;9851:36;9904:19;;50962:73:0::1;9527:402:1::0;50962:73:0::1;51046:28;51065:8;51046:18;:28::i;:::-;50881:201:::0;:::o;50140:132::-;50048:6;;-1:-1:-1;;;;;50048:6:0;;;;;48606:10;50204:23;50196:68;;;;-1:-1:-1;;;50196:68:0;;10136:2:1;50196:68:0;;;10118:21:1;;;10155:18;;;10148:30;10214:34;10194:18;;;10187:62;10266:18;;50196:68:0;9934:356:1;68457:380:0;-1:-1:-1;;;;;68593:19:0;;68585:68;;;;-1:-1:-1;;;68585:68:0;;10497:2:1;68585:68:0;;;10479:21:1;10536:2;10516:18;;;10509:30;10575:34;10555:18;;;10548:62;-1:-1:-1;;;10626:18:1;;;10619:34;10670:19;;68585:68:0;10295:400:1;68585:68:0;-1:-1:-1;;;;;68672:21:0;;68664:68;;;;-1:-1:-1;;;68664:68:0;;10902:2:1;68664:68:0;;;10884:21:1;10941:2;10921:18;;;10914:30;10980:34;10960:18;;;10953:62;-1:-1:-1;;;11031:18:1;;;11024:32;11073:19;;68664:68:0;10700:398:1;68664:68:0;-1:-1:-1;;;;;68745:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;68797:32;;2220:25:1;;;68797:32:0;;2193:18:1;68797:32:0;;;;;;;68457:380;;;:::o;12395:98::-;12453:7;12480:5;12484:1;12480;:5;:::i;:::-;12473:12;12395:98;-1:-1:-1;;;12395:98:0:o;69128:453::-;69263:24;69290:25;69300:5;69307:7;69290:9;:25::i;:::-;69263:52;;-1:-1:-1;;69330:16:0;:37;69326:248;;69412:6;69392:16;:26;;69384:68;;;;-1:-1:-1;;;69384:68:0;;11527:2:1;69384:68:0;;;11509:21:1;11566:2;11546:18;;;11539:30;11605:31;11585:18;;;11578:59;11654:18;;69384:68:0;11325:353:1;69384:68:0;69496:51;69505:5;69512:7;69540:6;69521:16;:25;69496:8;:51::i;:::-;69252:329;69128:453;;;:::o;78535:1300::-;53184:7;;;;78633:9;78625:24;;;;-1:-1:-1;;;78625:24:0;;11885:2:1;78625:24:0;;;11867:21:1;11924:1;11904:18;;;11897:29;-1:-1:-1;;;11942:18:1;;;11935:32;11984:18;;78625:24:0;11683:325:1;78625:24:0;-1:-1:-1;;;;;78688:18:0;;;;;;:14;:18;;;;;;;;78687:19;:44;;;;-1:-1:-1;;;;;;78711:20:0;;;;;;:14;:20;;;;;;;;78710:21;78687:44;78679:76;;;;-1:-1:-1;;;78679:76:0;;12215:2:1;78679:76:0;;;12197:21:1;12254:2;12234:18;;;12227:30;-1:-1:-1;;;12273:18:1;;;12266:49;12332:18;;78679:76:0;12013:343:1;78679:76:0;-1:-1:-1;;;;;78800:25:0;;78768:11;78800:25;;;:19;:25;;;;;;;;78799:26;:54;;;;-1:-1:-1;;;;;;78830:23:0;;;;;;:19;:23;;;;;;;;78829:24;78799:54;78796:977;;;78870:14;78893:13;-1:-1:-1;;;;;78887:19:0;:2;-1:-1:-1;;;;;78887:19:0;;78870:36;;78939:9;:22;;;;-1:-1:-1;78953:8:0;;-1:-1:-1;;;78953:8:0;;;;78952:9;78939:22;:71;;;;-1:-1:-1;78992:18:0;;78983:4;61218:7;61245:18;;;;;;;;;;;78965:45;78939:71;78935:204;;;79036:8;:15;;-1:-1:-1;;;;79036:15:0;-1:-1:-1;;;79036:15:0;;;79074:10;:8;:10::i;:::-;79107:8;:16;;-1:-1:-1;;;;79107:16:0;;;78935:204;79239:13;-1:-1:-1;;;;;79231:21:0;:4;-1:-1:-1;;;;;79231:21:0;;79228:396;;79307:16;;79279:54;;79329:3;;79279:45;;79290:33;;79307:16;-1:-1:-1;;;79307:16:0;;;;;-1:-1:-1;;;79290:14:0;;;:33;:::i;:::-;79279:6;;:45;;:10;:45::i;:54::-;79385:16;;79273:60;;-1:-1:-1;79374:37:0;;79407:3;;79374:28;;:6;;-1:-1:-1;;;79385:16:0;;;;79374:10;:28::i;:37::-;79352:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;79228:396:0;;-1:-1:-1;79228:396:0;;79437:9;79433:191;;;79502:17;;79473:56;;79525:3;;79473:47;;79484:35;;79502:17;-1:-1:-1;;;79502:17:0;;;;;-1:-1:-1;;;79484:15:0;;;:35;:::i;79473:56::-;79581:17;;79467:62;;-1:-1:-1;79570:38:0;;79604:3;;79570:29;;:6;;-1:-1:-1;;;79581:17:0;;;;79570:10;:29::i;:38::-;79548:18;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;79433:191:0;79677:7;;79673:89;;79705:41;79721:4;79735;79742:3;79705:15;:41::i;:::-;78855:918;78796:977;79785:42;79801:4;79807:2;79811:15;:6;79822:3;79811:10;:15::i;:::-;79785;:42::i;44081:314::-;44134:7;44166:4;-1:-1:-1;;;;;44175:12:0;44158:29;;:66;;;;;44208:16;44191:13;:33;44158:66;44154:234;;;-1:-1:-1;44248:24:0;;44081:314::o;44154:234::-;-1:-1:-1;44584:73:0;;;44334:10;44584:73;;;;14353:25:1;;;;44346:12:0;14394:18:1;;;14387:34;44360:15:0;14437:18:1;;;14430:34;44628:13:0;14480:18:1;;;14473:34;44651:4:0;14523:19:1;;;;14516:61;;;;44584:73:0;;;;;;;;;;14325:19:1;;;;44584:73:0;;;44574:84;;;;;;73860:115::o;53968:120::-;52977:16;:14;:16::i;:::-;54027:7:::1;:15:::0;;-1:-1:-1;;54027:15:0::1;::::0;;54058:22:::1;48606:10:::0;54067:12:::1;54058:22;::::0;-1:-1:-1;;;;;3669:32:1;;;3651:51;;3639:2;3624:18;54058:22:0::1;;;;;;;53968:120::o:0;51242:191::-;51335:6;;;-1:-1:-1;;;;;51352:17:0;;;51335:6;51352:17;;;-1:-1:-1;;;;;;51352:17:0;;;;;;51385:40;;51335:6;;;;;;;;51385:40;;51316:16;;51385:40;51305:128;51242:191;:::o;53709:118::-;52718:19;:17;:19::i;:::-;53769:7:::1;:14:::0;;-1:-1:-1;;53769:14:0::1;53779:4;53769:14;::::0;;53799:20:::1;53806:12;48606:10:::0;;48526:98;74113:207;-1:-1:-1;;;;;74234:14:0;;74173:15;74234:14;;;:7;:14;;;;;16387;;16524:1;16506:19;;;;16387:14;74295:17;74190:130;74113:207;;;:::o;45308:167::-;45385:7;45412:55;45434:20;:18;:20::i;:::-;45456:10;40775:57;;-1:-1:-1;;;40775:57:0;;;15540:27:1;15583:11;;;15576:27;;;15619:12;;;15612:28;;;40738:7:0;;15656:12:1;;40775:57:0;;;;;;;;;;;;40765:68;;;;;;40758:75;;40645:196;;;;;38954:279;39082:7;39103:17;39122:18;39144:25;39155:4;39161:1;39164;39167;39144:10;:25::i;:::-;39102:67;;;;39180:18;39192:5;39180:11;:18::i;:::-;-1:-1:-1;39216:9:0;38954:279;-1:-1:-1;;;;;38954:279:0:o;79843:1116::-;79908:18;;79882:23;;79908:25;;79931:1;79908:22;:25::i;:::-;79882:51;;79944:23;79970:45;79999:15;79970:24;79988:4;-1:-1:-1;;;;;61245:18:0;61218:7;61245:18;;;;;;;;;;;;61144:127;79970:24;:28;;:45::i;:::-;79944:71;;80026:12;80053:15;80072:1;80053:20;80049:37;;80077:7;;;79843:1116::o;80049:37::-;80098:21;80122:36;:15;80142;80122:19;:36::i;:::-;80098:60;;80169:15;80187:42;80196:15;80213;;80187:8;:42::i;:::-;80169:60;;80264:7;80246:15;:25;80242:181;;;80305:47;80336:15;80305:26;:13;80323:7;80305:17;:26::i;:47::-;80289:63;-1:-1:-1;80385:26:0;:7;80289:63;80385:11;:26::i;:::-;80367:44;;80242:181;80471:21;80503:25;80520:7;80503:16;:25::i;:::-;80539:18;80560:44;:21;80586:17;80560:25;:44::i;:::-;80539:65;-1:-1:-1;80617:20:0;80640:44;80676:7;80640:31;80539:65;80655:15;80640:14;:31::i;:44::-;80617:67;-1:-1:-1;80717:22:0;:15;80737:1;80717:19;:22::i;:::-;80695:18;;:44;;;;;;;:::i;:::-;;;;-1:-1:-1;;80755:19:0;;;;;:39;;;80793:1;80778:12;:16;80755:39;80752:113;;;80810:43;80823:15;80840:12;80810;:43::i;:::-;80898:13;;80890:61;;-1:-1:-1;;;;;80898:13:0;;;;80925:21;;80890:61;;;;80925:21;80898:13;80890:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;79843:1116:0:o;11996:98::-;12054:7;12081:5;12085:1;12081;:5;:::i;65336:840::-;-1:-1:-1;;;;;65467:18:0;;65459:68;;;;-1:-1:-1;;;65459:68:0;;13079:2:1;65459:68:0;;;13061:21:1;13118:2;13098:18;;;13091:30;13157:34;13137:18;;;13130:62;-1:-1:-1;;;13208:18:1;;;13201:35;13253:19;;65459:68:0;12877:401:1;65459:68:0;-1:-1:-1;;;;;65546:16:0;;65538:64;;;;-1:-1:-1;;;65538:64:0;;13485:2:1;65538:64:0;;;13467:21:1;13524:2;13504:18;;;13497:30;13563:34;13543:18;;;13536:62;-1:-1:-1;;;13614:18:1;;;13607:33;13657:19;;65538:64:0;13283:399:1;65538:64:0;-1:-1:-1;;;;;65688:15:0;;65666:19;65688:15;;;;;;;;;;;65722:21;;;;65714:72;;;;-1:-1:-1;;;65714:72:0;;13889:2:1;65714:72:0;;;13871:21:1;13928:2;13908:18;;;13901:30;13967:34;13947:18;;;13940:62;-1:-1:-1;;;14018:18:1;;;14011:36;14064:19;;65714:72:0;13687:402:1;65714:72:0;-1:-1:-1;;;;;65822:15:0;;;:9;:15;;;;;;;;;;;65840:20;;;65822:38;;66040:13;;;;;;;;;;:23;;;;;;66092:26;;2220:25:1;;;66040:13:0;;66092:26;;2193:18:1;66092:26:0;;;;;;;66131:37;70181:125;11639:98;11697:7;11724:5;11728:1;11724;:5;:::i;53457:108::-;53184:7;;;;53516:41;;;;-1:-1:-1;;;53516:41:0;;14790:2:1;53516:41:0;;;14772:21:1;14829:2;14809:18;;;14802:30;-1:-1:-1;;;14848:18:1;;;14841:50;14908:18;;53516:41:0;14588:344:1;53272:108:0;53184:7;;;;53342:9;53334:38;;;;-1:-1:-1;;;53334:38:0;;15139:2:1;53334:38:0;;;15121:21:1;15178:2;15158:18;;;15151:30;-1:-1:-1;;;15197:18:1;;;15190:46;15253:18;;53334:38:0;14937:340:1;37295:1520:0;37426:7;;38360:66;38347:79;;38343:163;;;-1:-1:-1;38459:1:0;;-1:-1:-1;38463:30:0;38443:51;;38343:163;38620:24;;;38603:14;38620:24;;;;;;;;;15906:25:1;;;15979:4;15967:17;;15947:18;;;15940:45;;;;16001:18;;;15994:34;;;16044:18;;;16037:34;;;38620:24:0;;15878:19:1;;38620:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38620:24:0;;-1:-1:-1;;38620:24:0;;;-1:-1:-1;;;;;;;38659:20:0;;38655:103;;38712:1;38716:29;38696:50;;;;;;;38655:103;38778:6;-1:-1:-1;38786:20:0;;-1:-1:-1;37295:1520:0;;;;;;;;:::o;32687:521::-;32765:20;32756:5;:29;;;;;;;;:::i;:::-;;32752:449;;32687:521;:::o;32752:449::-;32863:29;32854:5;:38;;;;;;;;:::i;:::-;;32850:351;;32909:34;;-1:-1:-1;;;32909:34:0;;16416:2:1;32909:34:0;;;16398:21:1;16455:2;16435:18;;;16428:30;16494:26;16474:18;;;16467:54;16538:18;;32909:34:0;16214:348:1;32850:351:0;32974:35;32965:5;:44;;;;;;;;:::i;:::-;;32961:240;;33026:41;;-1:-1:-1;;;33026:41:0;;16769:2:1;33026:41:0;;;16751:21:1;16808:2;16788:18;;;16781:30;16847:33;16827:18;;;16820:61;16898:18;;33026:41:0;16567:355:1;32961:240:0;33098:30;33089:5;:39;;;;;;;;:::i;:::-;;33085:116;;33145:44;;-1:-1:-1;;;33145:44:0;;17129:2:1;33145:44:0;;;17111:21:1;17168:2;17148:18;;;17141:30;17207:34;17187:18;;;17180:62;-1:-1:-1;;;17258:18:1;;;17251:32;17300:19;;33145:44:0;16927:398:1;17526:106:0;17584:7;17615:1;17611;:5;:13;;17623:1;17611:13;;;-1:-1:-1;17619:1:0;;17526:106;-1:-1:-1;17526:106:0:o;80967:473::-;81057:16;;;81071:1;81057:16;;;;;;;;81033:21;;81057:16;;;;;;;;;;-1:-1:-1;81057:16:0;81033:40;;81102:4;81084;81089:1;81084:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;81084:23:0;;;:7;;;;;;;;;;:23;;;;81128:15;;:22;;;-1:-1:-1;;;81128:22:0;;;;:15;;;;;:20;;:22;;;;;81084:7;;81128:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;81118:4;81123:1;81118:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;81118:32:0;;;-1:-1:-1;;;;;81118:32:0;;;;;81163:60;81180:4;74718:42;81211:11;81163:8;:60::i;:::-;81236:15;;:196;;-1:-1:-1;;;81236:196:0;;-1:-1:-1;;;;;81236:15:0;;;;:66;;:196;;81317:11;;81236:15;;81359:4;;81386;;81406:15;;81236:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81022:418;80967:473;:::o;81448:519::-;81596:60;81613:4;74718:42;81644:11;81596:8;:60::i;:::-;81699:15;;:260;;-1:-1:-1;;;81699:260:0;;81771:4;81699:260;;;19176:34:1;19226:18;;;19219:34;;;81699:15:0;19269:18:1;;;19262:34;;;19312:18;;;19305:34;74620:42:0;19355:19:1;;;19348:44;81933:15:0;19408:19:1;;;19401:35;-1:-1:-1;;;;;81699:15:0;;;;:31;;81738:9;;19110:19:1;;81699:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;81448:519;;:::o;14:156:1:-;80:20;;140:4;129:16;;119:27;;109:55;;160:1;157;150:12;109:55;14:156;;;:::o;175:252::-;239:6;247;300:2;288:9;279:7;275:23;271:32;268:52;;;316:1;313;306:12;268:52;339:27;356:9;339:27;:::i;:::-;329:37;;385:36;417:2;406:9;402:18;385:36;:::i;:::-;375:46;;175:252;;;;;:::o;432:548::-;544:4;573:2;602;591:9;584:21;634:6;628:13;677:6;672:2;661:9;657:18;650:34;702:1;712:140;726:6;723:1;720:13;712:140;;;821:14;;;817:23;;811:30;787:17;;;806:2;783:26;776:66;741:10;;712:140;;;716:3;901:1;896:2;887:6;876:9;872:22;868:31;861:42;971:2;964;960:7;955:2;947:6;943:15;939:29;928:9;924:45;920:54;912:62;;;;432:548;;;;:::o;985:131::-;-1:-1:-1;;;;;1060:31:1;;1050:42;;1040:70;;1106:1;1103;1096:12;1121:315;1189:6;1197;1250:2;1238:9;1229:7;1225:23;1221:32;1218:52;;;1266:1;1263;1256:12;1218:52;1305:9;1292:23;1324:31;1349:5;1324:31;:::i;:::-;1374:5;1426:2;1411:18;;;;1398:32;;-1:-1:-1;;;1121:315:1:o;1633:247::-;1692:6;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;1800:9;1787:23;1819:31;1844:5;1819:31;:::i;2256:180::-;2315:6;2368:2;2356:9;2347:7;2343:23;2339:32;2336:52;;;2384:1;2381;2374:12;2336:52;-1:-1:-1;2407:23:1;;2256:180;-1:-1:-1;2256:180:1:o;2441:456::-;2518:6;2526;2534;2587:2;2575:9;2566:7;2562:23;2558:32;2555:52;;;2603:1;2600;2593:12;2555:52;2642:9;2629:23;2661:31;2686:5;2661:31;:::i;:::-;2711:5;-1:-1:-1;2768:2:1;2753:18;;2740:32;2781:33;2740:32;2781:33;:::i;:::-;2441:456;;2833:7;;-1:-1:-1;;;2887:2:1;2872:18;;;;2859:32;;2441:456::o;3084:416::-;3149:6;3157;3210:2;3198:9;3189:7;3185:23;3181:32;3178:52;;;3226:1;3223;3216:12;3178:52;3265:9;3252:23;3284:31;3309:5;3284:31;:::i;:::-;3334:5;-1:-1:-1;3391:2:1;3376:18;;3363:32;3433:15;;3426:23;3414:36;;3404:64;;3464:1;3461;3454:12;3404:64;3487:7;3477:17;;;3084:416;;;;;:::o;3713:734::-;3824:6;3832;3840;3848;3856;3864;3872;3925:3;3913:9;3904:7;3900:23;3896:33;3893:53;;;3942:1;3939;3932:12;3893:53;3981:9;3968:23;4000:31;4025:5;4000:31;:::i;:::-;4050:5;-1:-1:-1;4107:2:1;4092:18;;4079:32;4120:33;4079:32;4120:33;:::i;:::-;4172:7;-1:-1:-1;4226:2:1;4211:18;;4198:32;;-1:-1:-1;4277:2:1;4262:18;;4249:32;;-1:-1:-1;4300:37:1;4332:3;4317:19;;4300:37;:::i;:::-;4290:47;;4384:3;4373:9;4369:19;4356:33;4346:43;;4436:3;4425:9;4421:19;4408:33;4398:43;;3713:734;;;;;;;;;;:::o;4452:388::-;4520:6;4528;4581:2;4569:9;4560:7;4556:23;4552:32;4549:52;;;4597:1;4594;4587:12;4549:52;4636:9;4623:23;4655:31;4680:5;4655:31;:::i;:::-;4705:5;-1:-1:-1;4762:2:1;4747:18;;4734:32;4775:33;4734:32;4775:33;:::i;4845:127::-;4906:10;4901:3;4897:20;4894:1;4887:31;4937:4;4934:1;4927:15;4961:4;4958:1;4951:15;4977:148;5065:4;5044:12;;;5058;;;5040:31;;5083:13;;5080:39;;;5099:18;;:::i;5821:380::-;5900:1;5896:12;;;;5943;;;5964:61;;6018:4;6010:6;6006:17;5996:27;;5964:61;6071:2;6063:6;6060:14;6040:18;6037:38;6034:161;;6117:10;6112:3;6108:20;6105:1;6098:31;6152:4;6149:1;6142:15;6180:4;6177:1;6170:15;7018:125;7083:9;;;7104:10;;;7101:36;;;7117:18;;:::i;11103:217::-;11143:1;11169;11159:132;;11213:10;11208:3;11204:20;11201:1;11194:31;11248:4;11245:1;11238:15;11276:4;11273:1;11266:15;11159:132;-1:-1:-1;11305:9:1;;11103:217::o;12361:128::-;12428:9;;;12449:11;;;12446:37;;;12463:18;;:::i;12704:168::-;12777:9;;;12808;;12825:15;;;12819:22;;12805:37;12795:71;;12846:18;;:::i;16082:127::-;16143:10;16138:3;16134:20;16131:1;16124:31;16174:4;16171:1;16164:15;16198:4;16195:1;16188:15;17462:127;17523:10;17518:3;17514:20;17511:1;17504:31;17554:4;17551:1;17544:15;17578:4;17575:1;17568:15;17594:251;17664:6;17717:2;17705:9;17696:7;17692:23;17688:32;17685:52;;;17733:1;17730;17723:12;17685:52;17765:9;17759:16;17784:31;17809:5;17784:31;:::i;17850:980::-;18112:4;18160:3;18149:9;18145:19;18191:6;18180:9;18173:25;18217:2;18255:6;18250:2;18239:9;18235:18;18228:34;18298:3;18293:2;18282:9;18278:18;18271:31;18322:6;18357;18351:13;18388:6;18380;18373:22;18426:3;18415:9;18411:19;18404:26;;18465:2;18457:6;18453:15;18439:29;;18486:1;18496:195;18510:6;18507:1;18504:13;18496:195;;;18575:13;;-1:-1:-1;;;;;18571:39:1;18559:52;;18666:15;;;;18631:12;;;;18607:1;18525:9;18496:195;;;-1:-1:-1;;;;;;;18747:32:1;;;;18742:2;18727:18;;18720:60;-1:-1:-1;;;18811:3:1;18796:19;18789:35;18708:3;17850:980;-1:-1:-1;;;17850:980:1:o;19447:306::-;19535:6;19543;19551;19604:2;19592:9;19583:7;19579:23;19575:32;19572:52;;;19620:1;19617;19610:12;19572:52;19649:9;19643:16;19633:26;;19699:2;19688:9;19684:18;19678:25;19668:35;;19743:2;19732:9;19728:18;19722:25;19712:35;;19447:306;;;;;:::o

Swarm Source

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