ETH Price: $3,419.59 (+1.12%)
Gas: 3 Gwei

Token

Dead Presidentz (BILLZ)
 

Overview

Max Total Supply

7,000,000,000,000 BILLZ

Holders

224

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.363723125470353507 BILLZ

Value
$0.00
0x4efe699d75787a84ea3e69987763505034b583da
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:
Billz

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : Billz.sol
/**
______  _____   ___  ______ 
|  _  \|  ___| / _ \ |  _  \
| | | || |__  / /_\ \| | | |
| | | ||  __| |  _  || | | |
| |/ / | |___ | | | || |/ / 
|___/  \____/ \_| |_/|___/                              
______ ______  _____  _____  _____ ______  _____  _   _  _____  ______
| ___ \| ___ \|  ___|/  ___||_   _||  _  \|  ___|| \ | ||_   _||___  /
| |_/ /| |_/ /| |__  \ `--.   | |  | | | || |__  |  \| |  | |     / / 
|  __/ |    / |  __|  `--. \  | |  | | | ||  __| | . ` |  | |    / /  
| |    | |\ \ | |___ /\__/ / _| |_ | |/ / | |___ | |\  |  | |  ./ /___
\_|    \_| \_|\____/ \____/  \___/ |___/  \____/ \_| \_/  \_/  \_____/
**/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

// 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;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract Billz is Context, IERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 private uniswapV2Router;

    address private uniswapV2Pair;
    address payable public taxWallet;

    string private constant _name = unicode"Dead Presidentz";
    string private constant _symbol = unicode"BILLZ";

    uint256 public buyTax = 99; // 99%
    uint256 public sellTax = 99; // 99%
    uint8 private constant _decimals = 18;
    uint256 private constant _tTotal = 7_000_000_000_000 * 10 ** _decimals; // 7 trillion
    uint256 public maxTxAmount = _tTotal.div(200); // 0.5% of total supply
    uint256 public maxWalletSize = _tTotal.div(200); // 0.5% of total supply
    uint256 public initialTokenAmountForLp = _tTotal.mul(62).div(100); // 62% of total supply
    uint256 public taxSwapThreshold = _tTotal.div(1000); // 0.1% of total supply
    uint256 public maxTaxSwap = _tTotal.div(1000); // 0.1% of total supply

    bool private tradingOpen = false;
    bool private inSwap = false;
    bool private swapEnabled = false;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }
    
    event MaxTxAmountUpdated(uint maxTxAmount);

    constructor() {
        taxWallet = payable(0x2f8a2ee7DC371d20bCe5f9DacF5bc0Ab87CF04BB);

        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[taxWallet] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[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) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (from != owner() && to != owner()) {
            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to]
            ) {
                require(amount <= maxTxAmount, "Exceeds the _maxTxAmount.");
                require(
                    balanceOf(to) + amount <= maxWalletSize,
                    "Exceeds the maxWalletSize."
                );
            }

            if (to != uniswapV2Pair && !_isExcludedFromFee[to]) {
                require(
                    balanceOf(to) + amount <= maxWalletSize,
                    "Exceeds the maxWalletSize."
                );
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (
                !inSwap &&
                to == uniswapV2Pair &&
                swapEnabled &&
                contractTokenBalance > taxSwapThreshold
            ) {
                swapTokensForEth(
                    min(amount, min(contractTokenBalance, maxTaxSwap)), 0
                );
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        uint256 taxAmount = 0;
        if (
            (_isExcludedFromFee[from] || _isExcludedFromFee[to]) ||
            (from != uniswapV2Pair && to != uniswapV2Pair)
        ) {
            taxAmount = 0;
        } else {
            //Set Fee for Buys
            if (from == uniswapV2Pair && to != address(uniswapV2Router)) {
                taxAmount = amount
                    .mul(buyTax)
                    .div(100);
            }

            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                taxAmount = amount
                    .mul(sellTax)
                    .div(100);
            }
        }

        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));

        emit Transfer(from, to, amount.sub(taxAmount));
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function swapTokensForEth(uint256 _tokenAmount, uint256 _amountETHMin) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), _tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _tokenAmount,
            _amountETHMin,
            path,
            address(this),
            block.timestamp
        );
    }
    
    function manualswap(uint256 _tokenAmount, uint256 _amountETHMin) external {
        require(
            (msg.sender == taxWallet) || (msg.sender == owner()),
            "Only admin can call this method."
        );
        
        require(
            _tokenAmount <= balanceOf(address(this)),
            "Exceeds the maxWalletSize."
        );
        swapTokensForEth(_tokenAmount, _amountETHMin);
    }

    function withdrawFees() external {
        require(
            (msg.sender == taxWallet) || (msg.sender == owner()),
            "Only admin can call this method."
        );

        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function setBuyTax(uint256 _buyTax) external onlyOwner {
        buyTax = _buyTax;
    }

    function setSellTax(uint256 _sellTax) external onlyOwner {
        sellTax = _sellTax;
    }

    function resetTax() external onlyOwner {
        buyTax = 1; //1%
        sellTax = 1; //1%
    }

    function setMaxTxAmount(uint256 _maxTxAmount) external onlyOwner {
        maxTxAmount = _maxTxAmount;
    }

    function setMaxWalletSize(uint256 _maxWalletSize) external onlyOwner {
        maxWalletSize = _maxWalletSize;
    }

    function removeLimits() external onlyOwner {
        maxTxAmount = _tTotal;
        maxWalletSize = _tTotal;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function setMaxTaxSwap(uint256 _maxTaxSwap) external onlyOwner {
        maxTaxSwap = _maxTaxSwap;
    }

    function setTaxSwapThreshold(uint256 _taxSwapThreshold) external onlyOwner {
        taxSwapThreshold = _taxSwapThreshold;
    }

    function toggleSwap(bool _swapEnabled) external onlyOwner {
        swapEnabled = _swapEnabled;
    }

    function sendETHToFee(uint256 _amount) private {
        taxWallet.transfer(_amount);
    }

    function openTrading() external onlyOwner {
        require(!tradingOpen, "trading is already open");
        require(balanceOf(address(this)) >= initialTokenAmountForLp, "insufficient token balance");

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            initialTokenAmountForLp,
            0,
            0,
            taxWallet,
            block.timestamp
        );
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
    }

    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"initialTokenAmountForLp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_amountETHMin","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTaxSwap","type":"uint256"}],"name":"setMaxTaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxSwapThreshold","type":"uint256"}],"name":"setTaxSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"withdrawFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052606360048190556005556200003b60c8620000226012600a62000367565b620000349065065dd083700062000378565b90620001df565b6006556200005260c8620000226012600a62000367565b60075562000088606462000034603e6200006f6012600a62000367565b620000819065065dd083700062000378565b90620001f6565b600855620000a06103e8620000226012600a62000367565b600955620000b86103e8620000226012600a62000367565b600a55600b805462ffffff19169055348015620000d457600080fd5b50620000e03362000204565b600380546001600160a01b031916732f8a2ee7dc371d20bce5f9dacf5bc0ab87cf04bb179055620001146012600a62000367565b620001269065065dd083700062000378565b336000818152600c602090815260408083209490945581546001600160a01b039081168352600e9091528382208054600160ff199182168117909255308452858420805482168317905560035490921683529382208054909116909317909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001b66012600a62000367565b620001c89065065dd083700062000378565b60405190815260200160405180910390a3620003b5565b6000620001ed828462000392565b90505b92915050565b6000620001ed828462000378565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002ab5781600019048211156200028f576200028f62000254565b808516156200029d57918102915b93841c93908002906200026f565b509250929050565b600082620002c457506001620001f0565b81620002d357506000620001f0565b8160018114620002ec5760028114620002f75762000317565b6001915050620001f0565b60ff8411156200030b576200030b62000254565b50506001821b620001f0565b5060208310610133831016604e8410600b84101617156200033c575081810a620001f0565b6200034883836200026a565b80600019048211156200035f576200035f62000254565b029392505050565b6000620001ed60ff841683620002b3565b8082028115828204841417620001f057620001f062000254565b600082620003b057634e487b7160e01b600052601260045260246000fd5b500490565b611b7280620003c56000396000f3fe6080604052600436106101e75760003560e01c80638da5cb5b11610102578063dab65eb411610095578063ea1644d511610064578063ea1644d51461059c578063ec28438a146105bc578063f2fde38b146105dc578063f32383e9146105fc57600080fd5b8063dab65eb414610500578063dc1052e214610516578063dd62ed3e14610536578063de2aa57d1461057c57600080fd5b8063a9059cbb116100d1578063a9059cbb14610495578063b9d0f1af146104b5578063c9567bf9146104d5578063cc1776d3146104ea57600080fd5b80638da5cb5b146104135780638f3fa8601461043157806395d89b41146104475780639ee6aa2f1461047557600080fd5b80635e7b655c1161017a578063715018a611610149578063715018a6146103b3578063751039fc146103c85780638c0b5e22146103dd5780638cd09d50146103f357600080fd5b80635e7b655c1461033157806362997f8c146103475780636d8aa8f81461035d57806370a082311461037d57600080fd5b80632dc0562d116101b65780632dc0562d146102b0578063313ce567146102e8578063476343ee146103045780634f7041a51461031b57600080fd5b806306fdde03146101f3578063095ea7b31461023d57806318160ddd1461026d57806323b872dd1461029057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5060408051808201909152600f81526e2232b0b210283932b9b4b232b73a3d60891b60208201525b60405161023491906116f7565b60405180910390f35b34801561024957600080fd5b5061025d61025836600461175b565b610611565b6040519015158152602001610234565b34801561027957600080fd5b50610282610628565b604051908152602001610234565b34801561029c57600080fd5b5061025d6102ab366004611787565b61064b565b3480156102bc57600080fd5b506003546102d0906001600160a01b031681565b6040516001600160a01b039091168152602001610234565b3480156102f457600080fd5b5060405160128152602001610234565b34801561031057600080fd5b506103196106b4565b005b34801561032757600080fd5b5061028260045481565b34801561033d57600080fd5b5061028260095481565b34801561035357600080fd5b50610282600a5481565b34801561036957600080fd5b506103196103783660046117d6565b610735565b34801561038957600080fd5b506102826103983660046117f3565b6001600160a01b03166000908152600c602052604090205490565b3480156103bf57600080fd5b50610319610759565b3480156103d457600080fd5b5061031961076d565b3480156103e957600080fd5b5061028260065481565b3480156103ff57600080fd5b5061031961040e366004611810565b610803565b34801561041f57600080fd5b506000546001600160a01b03166102d0565b34801561043d57600080fd5b5061028260075481565b34801561045357600080fd5b506040805180820190915260058152642124a6262d60d91b6020820152610227565b34801561048157600080fd5b50610319610490366004611829565b610810565b3480156104a157600080fd5b5061025d6104b036600461175b565b6108bc565b3480156104c157600080fd5b506103196104d0366004611810565b6108c9565b3480156104e157600080fd5b506103196108d6565b3480156104f657600080fd5b5061028260055481565b34801561050c57600080fd5b5061028260085481565b34801561052257600080fd5b50610319610531366004611810565b610c88565b34801561054257600080fd5b5061028261055136600461184b565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561058857600080fd5b50610319610597366004611810565b610c95565b3480156105a857600080fd5b506103196105b7366004611810565b610ca2565b3480156105c857600080fd5b506103196105d7366004611810565b610caf565b3480156105e857600080fd5b506103196105f73660046117f3565b610cbc565b34801561060857600080fd5b50610319610d32565b600061061e338484610d46565b5060015b92915050565b60006106366012600a61197e565b6106469065065dd083700061198d565b905090565b6000610658848484610e6a565b6106aa84336106a585604051806060016040528060288152602001611b15602891396001600160a01b038a166000908152600d60209081526040808320338452909152902054919061142b565b610d46565b5060019392505050565b6003546001600160a01b03163314806106d757506000546001600160a01b031633145b6107285760405162461bcd60e51b815260206004820181905260248201527f4f6e6c792061646d696e2063616e2063616c6c2074686973206d6574686f642e60448201526064015b60405180910390fd5b4761073281611457565b50565b61073d611491565b600b8054911515620100000262ff000019909216919091179055565b610761611491565b61076b60006114eb565b565b610775611491565b6107816012600a61197e565b6107919065065dd083700061198d565b6006556107a06012600a61197e565b6107b09065065dd083700061198d565b6007557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6107e06012600a61197e565b6107f09065065dd083700061198d565b60405190815260200160405180910390a1565b61080b611491565b600555565b6003546001600160a01b031633148061083357506000546001600160a01b031633145b61087f5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c792061646d696e2063616e2063616c6c2074686973206d6574686f642e604482015260640161071f565b306000908152600c60205260409020548211156108ae5760405162461bcd60e51b815260040161071f906119a4565b6108b8828261153b565b5050565b600061061e338484610e6a565b6108d1611491565b600a55565b6108de611491565b600b5460ff16156109315760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161071f565b600854306000908152600c602052604090205410156109925760405162461bcd60e51b815260206004820152601a60248201527f696e73756666696369656e7420746f6b656e2062616c616e6365000000000000604482015260640161071f565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556109dd9030906109cd6012600a61197e565b6106a59065065dd083700061198d565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5491906119db565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ada91906119db565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b91906119db565b600280546001600160a01b0319166001600160a01b0392831617905560015460085460035460405163f305d71960e01b815230600482015260248101929092526000604483018190526064830152831660848201524260a482015291169063f305d71990479060c40160606040518083038185885af1158015610bd2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610bf791906119f8565b505060025460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c749190611a26565b50600b805462ff00ff191662010001179055565b610c90611491565b600455565b610c9d611491565b600955565b610caa611491565b600755565b610cb7611491565b600655565b610cc4611491565b6001600160a01b038116610d295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b610732816114eb565b610d3a611491565b60016004819055600555565b6001600160a01b038316610da85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161071f565b6001600160a01b038216610e095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161071f565b6001600160a01b038381166000818152600d602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ece5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161071f565b6001600160a01b038216610f305760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161071f565b60008111610f925760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161071f565b6000546001600160a01b03848116911614801590610fbe57506000546001600160a01b03838116911614155b156111ca576002546001600160a01b038481169116148015610fee57506001546001600160a01b03838116911614155b801561101357506001600160a01b0382166000908152600e602052604090205460ff16155b156110b55760065481111561106a5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161071f565b6007548161108d846001600160a01b03166000908152600c602052604090205490565b6110979190611a43565b11156110b55760405162461bcd60e51b815260040161071f906119a4565b6002546001600160a01b038381169116148015906110ec57506001600160a01b0382166000908152600e602052604090205460ff16155b1561113c5760075481611114846001600160a01b03166000908152600c602052604090205490565b61111e9190611a43565b111561113c5760405162461bcd60e51b815260040161071f906119a4565b306000908152600c6020526040902054600b54610100900460ff1615801561117157506002546001600160a01b038481169116145b80156111855750600b5462010000900460ff165b8015611192575060095481115b156111c8576111b66111af836111aa84600a546116af565b6116af565b600061153b565b4780156111c6576111c647611457565b505b505b6001600160a01b0383166000908152600e602052604081205460ff168061120957506001600160a01b0383166000908152600e602052604090205460ff165b8061123b57506002546001600160a01b0385811691161480159061123b57506002546001600160a01b03848116911614155b15611248575060006112e8565b6002546001600160a01b03858116911614801561127357506001546001600160a01b03848116911614155b1561129b576112986064611292600454856116c790919063ffffffff16565b906116d3565b90505b6002546001600160a01b0384811691161480156112c657506001546001600160a01b03858116911614155b156112e8576112e56064611292600554856116c790919063ffffffff16565b90505b801561136257306000908152600c602052604090205461130890826116df565b306000818152600c6020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113599085815260200190565b60405180910390a35b6001600160a01b0384166000908152600c602052604090205461138590836116eb565b6001600160a01b0385166000908152600c60205260409020556113ca6113ab83836116eb565b6001600160a01b0385166000908152600c6020526040902054906116df565b6001600160a01b038085166000818152600c602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61141485856116eb565b60405190815260200160405180910390a350505050565b6000818484111561144f5760405162461bcd60e51b815260040161071f91906116f7565b505050900390565b6003546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108b8573d6000803e3d6000fd5b6000546001600160a01b0316331461076b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061157f5761157f611a56565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fc91906119db565b8160018151811061160f5761160f611a56565b6001600160a01b0392831660209182029290920101526001546116359130911685610d46565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac9479061166d9086908690869030904290600401611a6c565b600060405180830381600087803b15801561168757600080fd5b505af115801561169b573d6000803e3d6000fd5b5050600b805461ff00191690555050505050565b60008183116116be57826116c0565b815b9392505050565b60006116c0828461198d565b60006116c08284611adf565b60006116c08284611a43565b60006116c08284611b01565b60006020808352835180602085015260005b8181101561172557858101830151858201604001528201611709565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461073257600080fd5b6000806040838503121561176e57600080fd5b823561177981611746565b946020939093013593505050565b60008060006060848603121561179c57600080fd5b83356117a781611746565b925060208401356117b781611746565b929592945050506040919091013590565b801515811461073257600080fd5b6000602082840312156117e857600080fd5b81356116c0816117c8565b60006020828403121561180557600080fd5b81356116c081611746565b60006020828403121561182257600080fd5b5035919050565b6000806040838503121561183c57600080fd5b50508035926020909101359150565b6000806040838503121561185e57600080fd5b823561186981611746565b9150602083013561187981611746565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156118d55781600019048211156118bb576118bb611884565b808516156118c857918102915b93841c939080029061189f565b509250929050565b6000826118ec57506001610622565b816118f957506000610622565b816001811461190f576002811461191957611935565b6001915050610622565b60ff84111561192a5761192a611884565b50506001821b610622565b5060208310610133831016604e8410600b8410161715611958575081810a610622565b611962838361189a565b806000190482111561197657611976611884565b029392505050565b60006116c060ff8416836118dd565b808202811582820484141761062257610622611884565b6020808252601a908201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604082015260600190565b6000602082840312156119ed57600080fd5b81516116c081611746565b600080600060608486031215611a0d57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611a3857600080fd5b81516116c0816117c8565b8082018082111561062257610622611884565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611abe5784516001600160a01b031683529383019391830191600101611a99565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611afc57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106225761062261188456fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220653d9d6c65b3c0c178af39bf1a17e4653f9e7d45af40b85b7c2db020d84cd3bd64736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80638da5cb5b11610102578063dab65eb411610095578063ea1644d511610064578063ea1644d51461059c578063ec28438a146105bc578063f2fde38b146105dc578063f32383e9146105fc57600080fd5b8063dab65eb414610500578063dc1052e214610516578063dd62ed3e14610536578063de2aa57d1461057c57600080fd5b8063a9059cbb116100d1578063a9059cbb14610495578063b9d0f1af146104b5578063c9567bf9146104d5578063cc1776d3146104ea57600080fd5b80638da5cb5b146104135780638f3fa8601461043157806395d89b41146104475780639ee6aa2f1461047557600080fd5b80635e7b655c1161017a578063715018a611610149578063715018a6146103b3578063751039fc146103c85780638c0b5e22146103dd5780638cd09d50146103f357600080fd5b80635e7b655c1461033157806362997f8c146103475780636d8aa8f81461035d57806370a082311461037d57600080fd5b80632dc0562d116101b65780632dc0562d146102b0578063313ce567146102e8578063476343ee146103045780634f7041a51461031b57600080fd5b806306fdde03146101f3578063095ea7b31461023d57806318160ddd1461026d57806323b872dd1461029057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5060408051808201909152600f81526e2232b0b210283932b9b4b232b73a3d60891b60208201525b60405161023491906116f7565b60405180910390f35b34801561024957600080fd5b5061025d61025836600461175b565b610611565b6040519015158152602001610234565b34801561027957600080fd5b50610282610628565b604051908152602001610234565b34801561029c57600080fd5b5061025d6102ab366004611787565b61064b565b3480156102bc57600080fd5b506003546102d0906001600160a01b031681565b6040516001600160a01b039091168152602001610234565b3480156102f457600080fd5b5060405160128152602001610234565b34801561031057600080fd5b506103196106b4565b005b34801561032757600080fd5b5061028260045481565b34801561033d57600080fd5b5061028260095481565b34801561035357600080fd5b50610282600a5481565b34801561036957600080fd5b506103196103783660046117d6565b610735565b34801561038957600080fd5b506102826103983660046117f3565b6001600160a01b03166000908152600c602052604090205490565b3480156103bf57600080fd5b50610319610759565b3480156103d457600080fd5b5061031961076d565b3480156103e957600080fd5b5061028260065481565b3480156103ff57600080fd5b5061031961040e366004611810565b610803565b34801561041f57600080fd5b506000546001600160a01b03166102d0565b34801561043d57600080fd5b5061028260075481565b34801561045357600080fd5b506040805180820190915260058152642124a6262d60d91b6020820152610227565b34801561048157600080fd5b50610319610490366004611829565b610810565b3480156104a157600080fd5b5061025d6104b036600461175b565b6108bc565b3480156104c157600080fd5b506103196104d0366004611810565b6108c9565b3480156104e157600080fd5b506103196108d6565b3480156104f657600080fd5b5061028260055481565b34801561050c57600080fd5b5061028260085481565b34801561052257600080fd5b50610319610531366004611810565b610c88565b34801561054257600080fd5b5061028261055136600461184b565b6001600160a01b039182166000908152600d6020908152604080832093909416825291909152205490565b34801561058857600080fd5b50610319610597366004611810565b610c95565b3480156105a857600080fd5b506103196105b7366004611810565b610ca2565b3480156105c857600080fd5b506103196105d7366004611810565b610caf565b3480156105e857600080fd5b506103196105f73660046117f3565b610cbc565b34801561060857600080fd5b50610319610d32565b600061061e338484610d46565b5060015b92915050565b60006106366012600a61197e565b6106469065065dd083700061198d565b905090565b6000610658848484610e6a565b6106aa84336106a585604051806060016040528060288152602001611b15602891396001600160a01b038a166000908152600d60209081526040808320338452909152902054919061142b565b610d46565b5060019392505050565b6003546001600160a01b03163314806106d757506000546001600160a01b031633145b6107285760405162461bcd60e51b815260206004820181905260248201527f4f6e6c792061646d696e2063616e2063616c6c2074686973206d6574686f642e60448201526064015b60405180910390fd5b4761073281611457565b50565b61073d611491565b600b8054911515620100000262ff000019909216919091179055565b610761611491565b61076b60006114eb565b565b610775611491565b6107816012600a61197e565b6107919065065dd083700061198d565b6006556107a06012600a61197e565b6107b09065065dd083700061198d565b6007557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6107e06012600a61197e565b6107f09065065dd083700061198d565b60405190815260200160405180910390a1565b61080b611491565b600555565b6003546001600160a01b031633148061083357506000546001600160a01b031633145b61087f5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c792061646d696e2063616e2063616c6c2074686973206d6574686f642e604482015260640161071f565b306000908152600c60205260409020548211156108ae5760405162461bcd60e51b815260040161071f906119a4565b6108b8828261153b565b5050565b600061061e338484610e6a565b6108d1611491565b600a55565b6108de611491565b600b5460ff16156109315760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161071f565b600854306000908152600c602052604090205410156109925760405162461bcd60e51b815260206004820152601a60248201527f696e73756666696369656e7420746f6b656e2062616c616e6365000000000000604482015260640161071f565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556109dd9030906109cd6012600a61197e565b6106a59065065dd083700061198d565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5491906119db565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ada91906119db565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b91906119db565b600280546001600160a01b0319166001600160a01b0392831617905560015460085460035460405163f305d71960e01b815230600482015260248101929092526000604483018190526064830152831660848201524260a482015291169063f305d71990479060c40160606040518083038185885af1158015610bd2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610bf791906119f8565b505060025460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c749190611a26565b50600b805462ff00ff191662010001179055565b610c90611491565b600455565b610c9d611491565b600955565b610caa611491565b600755565b610cb7611491565b600655565b610cc4611491565b6001600160a01b038116610d295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b610732816114eb565b610d3a611491565b60016004819055600555565b6001600160a01b038316610da85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161071f565b6001600160a01b038216610e095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161071f565b6001600160a01b038381166000818152600d602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ece5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161071f565b6001600160a01b038216610f305760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161071f565b60008111610f925760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161071f565b6000546001600160a01b03848116911614801590610fbe57506000546001600160a01b03838116911614155b156111ca576002546001600160a01b038481169116148015610fee57506001546001600160a01b03838116911614155b801561101357506001600160a01b0382166000908152600e602052604090205460ff16155b156110b55760065481111561106a5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161071f565b6007548161108d846001600160a01b03166000908152600c602052604090205490565b6110979190611a43565b11156110b55760405162461bcd60e51b815260040161071f906119a4565b6002546001600160a01b038381169116148015906110ec57506001600160a01b0382166000908152600e602052604090205460ff16155b1561113c5760075481611114846001600160a01b03166000908152600c602052604090205490565b61111e9190611a43565b111561113c5760405162461bcd60e51b815260040161071f906119a4565b306000908152600c6020526040902054600b54610100900460ff1615801561117157506002546001600160a01b038481169116145b80156111855750600b5462010000900460ff165b8015611192575060095481115b156111c8576111b66111af836111aa84600a546116af565b6116af565b600061153b565b4780156111c6576111c647611457565b505b505b6001600160a01b0383166000908152600e602052604081205460ff168061120957506001600160a01b0383166000908152600e602052604090205460ff165b8061123b57506002546001600160a01b0385811691161480159061123b57506002546001600160a01b03848116911614155b15611248575060006112e8565b6002546001600160a01b03858116911614801561127357506001546001600160a01b03848116911614155b1561129b576112986064611292600454856116c790919063ffffffff16565b906116d3565b90505b6002546001600160a01b0384811691161480156112c657506001546001600160a01b03858116911614155b156112e8576112e56064611292600554856116c790919063ffffffff16565b90505b801561136257306000908152600c602052604090205461130890826116df565b306000818152600c6020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113599085815260200190565b60405180910390a35b6001600160a01b0384166000908152600c602052604090205461138590836116eb565b6001600160a01b0385166000908152600c60205260409020556113ca6113ab83836116eb565b6001600160a01b0385166000908152600c6020526040902054906116df565b6001600160a01b038085166000818152600c602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61141485856116eb565b60405190815260200160405180910390a350505050565b6000818484111561144f5760405162461bcd60e51b815260040161071f91906116f7565b505050900390565b6003546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108b8573d6000803e3d6000fd5b6000546001600160a01b0316331461076b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061157f5761157f611a56565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fc91906119db565b8160018151811061160f5761160f611a56565b6001600160a01b0392831660209182029290920101526001546116359130911685610d46565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac9479061166d9086908690869030904290600401611a6c565b600060405180830381600087803b15801561168757600080fd5b505af115801561169b573d6000803e3d6000fd5b5050600b805461ff00191690555050505050565b60008183116116be57826116c0565b815b9392505050565b60006116c0828461198d565b60006116c08284611adf565b60006116c08284611a43565b60006116c08284611b01565b60006020808352835180602085015260005b8181101561172557858101830151858201604001528201611709565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461073257600080fd5b6000806040838503121561176e57600080fd5b823561177981611746565b946020939093013593505050565b60008060006060848603121561179c57600080fd5b83356117a781611746565b925060208401356117b781611746565b929592945050506040919091013590565b801515811461073257600080fd5b6000602082840312156117e857600080fd5b81356116c0816117c8565b60006020828403121561180557600080fd5b81356116c081611746565b60006020828403121561182257600080fd5b5035919050565b6000806040838503121561183c57600080fd5b50508035926020909101359150565b6000806040838503121561185e57600080fd5b823561186981611746565b9150602083013561187981611746565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156118d55781600019048211156118bb576118bb611884565b808516156118c857918102915b93841c939080029061189f565b509250929050565b6000826118ec57506001610622565b816118f957506000610622565b816001811461190f576002811461191957611935565b6001915050610622565b60ff84111561192a5761192a611884565b50506001821b610622565b5060208310610133831016604e8410600b8410161715611958575081810a610622565b611962838361189a565b806000190482111561197657611976611884565b029392505050565b60006116c060ff8416836118dd565b808202811582820484141761062257610622611884565b6020808252601a908201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604082015260600190565b6000602082840312156119ed57600080fd5b81516116c081611746565b600080600060608486031215611a0d57600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611a3857600080fd5b81516116c0816117c8565b8082018082111561062257610622611884565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611abe5784516001600160a01b031683529383019391830191600101611a99565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611afc57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106225761062261188456fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220653d9d6c65b3c0c178af39bf1a17e4653f9e7d45af40b85b7c2db020d84cd3bd64736f6c63430008160033

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.