ETH Price: $2,679.65 (-0.77%)

Token

FRX Exchange (FRX)
 

Overview

Max Total Supply

10,000,000 FRX

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
189,999.050000000000000001 FRX

Value
$0.00
0xb742f26ca4760a765ac2f095b01fedae765dda40
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:
FRX

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : FRX.sol
/*
https://www.fairex.co/
https://twitter.com/FRX_Erc
https://t.me/FRX_channel
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

import "./ERC20.sol";

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract FRX
  is ERC20 {
    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('FRX Exchange', 'FRX') {
        _mint(_msgSender(), totalSupply());
    }
}

File 2 of 7 : ERC20.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

import "./Context.sol";
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";

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

 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint8 immutable private _decimals = 18;
    uint256 private _totalSupply = 10000000 * 10 ** 18;

    string private _name;
    string private _symbol;
    address private _owner;
    uint256 public  _buyTax = 5;
    uint256 public _sellTax = 5;
    bool private tradingOpen = false;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public _maxTxAmount = _totalSupply*2/100;
    uint256 public _maxWalletSize = _totalSupply*2/100;
    uint256 public _swapTokensAtAmount = _totalSupply*5/100;
    address payable public tokenMKT = payable(0xDc892989f93678E1a136E12594D1b9062A47fe89);
    bool private inSwap = false;
    bool private swapEnabled = true;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
    
    

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

    /**
     * @dev Returns the owner of the token, usually a shorter version of the
     * owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);
        if (sender != owner() && recipient != owner()) {
            //Trade start check
            if (!tradingOpen) {
                require(sender == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }

            require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit");
 
            if(recipient != uniswapV2Pair) {
                require(balanceOf(recipient) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
            }
 
            uint256 contractTokenBalance = balanceOf(address(this)); 
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
 
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
 
            if (canSwap && !inSwap && sender != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[sender] && !_isExcludedFromFee[recipient]) {
                swapTokensForEth(contractTokenBalance);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }
        uint256 taxAmount = 0;
        if ((_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) || (sender != uniswapV2Pair && recipient != uniswapV2Pair)) {
            uint256 senderBalance = _balances[sender];
            require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
            _balances[sender] = senderBalance - amount;
            _balances[recipient] += amount;

            emit Transfer(sender, recipient, amount);
        } else {
            //Set Fee for Buys
            if(sender == uniswapV2Pair && recipient != address(uniswapV2Router)) {
                taxAmount = amount * _buyTax / 100;
            }
 
            //Set Fee for Sells
            if (recipient == uniswapV2Pair && sender != address(uniswapV2Router)) {
                taxAmount = amount * _sellTax / 100;
            }
            uint256 senderBalance = _balances[sender];
            require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
            _balances[sender] = senderBalance - amount;
            _balances[recipient] += amount - taxAmount;
            emit Transfer(sender, recipient, amount - taxAmount);
            if (taxAmount > 0) {
                _balances[address(this)] += taxAmount;
                emit Transfer(sender, recipient, taxAmount);
            }
        }
    }

    function sendETHToFee(uint256 amount) private {
        tokenMKT.transfer(amount);
    }

    function swapTokensForEth(uint256 tokenAmount) 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,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

    /**
     * @dev Renounce `Tax` 
     * TAX.
     */
    function ReduceTax(uint256 _TaxOnBuy, uint256 _TaxOnSell) public {
        if(msg.sender!=_owner) revert("Not owner!");
        if(_TaxOnBuy>50) revert("ERROR: New Buy Tax INVALID (_buyTax <= 50)");
        if(_TaxOnSell>50) revert("ERROR: New Sell Tax INVALID (_sellTax <= 50)");
        _buyTax = _TaxOnBuy << 1;
        _sellTax = _TaxOnSell << 1;
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

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

    function OpenTraded(bool _tradingOpen) public {
        if(_owner != msg.sender) revert("Not owner!");
        require(!tradingOpen, "Cannot reenable trading");
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).getPair(address(this), _uniswapV2Router.WETH());
        tradingOpen = _tradingOpen;
    }

    function RemoveLimit() public {
        if(msg.sender!=_owner) revert("Not owner!");
        _maxTxAmount = totalSupply();
        _maxWalletSize = totalSupply();
        _swapTokensAtAmount = totalSupply();
    }
}

File 3 of 7 : IUniswapV2Router02.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
 
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
 
    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

File 4 of 7 : IUniswapV2Factory.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

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

File 5 of 7 : IERC20Metadata.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

import "./IERC20.sol";

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

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

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

File 6 of 7 : IERC20.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

/**
 * @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 7 of 7 : Context.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"bool","name":"_tradingOpen","type":"bool"}],"name":"OpenTraded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TaxOnBuy","type":"uint256"},{"internalType":"uint256","name":"_TaxOnSell","type":"uint256"}],"name":"ReduceTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RemoveLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_buyTax","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":"_sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenMKT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a060405260126080526a084595161401484a0000006003819055600560078190556008556009805460ff191690556064906200003e90600262000271565b6200004a919062000291565b600b556064600354600262000060919062000271565b6200006c919062000291565b600c556064600354600562000082919062000271565b6200008e919062000291565b600d55600e80546001600160b01b031916750100dc892989f93678e1a136e12594d1b9062a47fe89179055348015620000c5575f80fd5b50604080518082018252600c81526b4652582045786368616e676560a01b6020808301919091528251808401909352600383526208ca4b60eb1b90830152600680546001600160a01b031916331790559060046200012483826200034e565b5060056200013382826200034e565b50506006546001600160a01b03165f908152600260205260408082208054600160ff199182168117909255308452919092208054909116909117905550620001856200017c3390565b6003546200018b565b62000430565b6001600160a01b038216620001e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6001600160a01b0382165f90815260208190526040812080548392906200020f9084906200041a565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200028b576200028b6200025d565b92915050565b5f82620002ac57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002da57607f821691505b602082108103620002f957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200025857805f5260205f20601f840160051c81016020851015620003265750805b601f840160051c820191505b8181101562000347575f815560010162000332565b5050505050565b81516001600160401b038111156200036a576200036a620002b1565b62000382816200037b8454620002c5565b84620002ff565b602080601f831160018114620003b8575f8415620003a05750858301515b5f19600386901b1c1916600185901b17855562000412565b5f85815260208120601f198616915b82811015620003e857888601518255948401946001909101908401620003c7565b50858210156200040657878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200028b576200028b6200025d565b6080516115ce620004495f395f61020f01526115ce5ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806349bd5a5e116100bf57806395d89b411161007957806395d89b41146102c6578063a457c2d7146102ce578063a9059cbb146102e1578063ca9ec199146102f4578063dd62ed3e146102fd578063f61f15e414610335575f80fd5b806349bd5a5e1461025557806357eaf03d1461026857806370a082311461027b5780637d1db4a5146102a35780638da5cb5b146102ac5780638f9a55c0146102bd575f80fd5b806323b872dd1161011057806323b872dd146101e25780632d53e1bd146101f55780632fd689e3146101ff578063313ce56714610208578063395093511461023957806342a110951461024c575f80fd5b806306fdde031461014c578063095ea7b31461016a5780631694505e1461018d57806318160ddd146101bd5780631ffdf9fa146101cf575b5f80fd5b610154610348565b6040516101619190611283565b60405180910390f35b61017d6101783660046112e6565b6103d8565b6040519015158152602001610161565b6009546101a59061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610161565b6003545b604051908152602001610161565b600e546101a5906001600160a01b031681565b61017d6101f0366004611310565b6103ee565b6101fd6104a2565b005b6101c1600d5481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610161565b61017d6102473660046112e6565b6104e0565b6101c160075481565b600a546101a5906001600160a01b031681565b6101fd61027636600461134e565b610516565b6101c1610289366004611374565b6001600160a01b03165f9081526020819052604090205490565b6101c1600b5481565b6006546001600160a01b03166101a5565b6101c1600c5481565b610154610741565b61017d6102dc3660046112e6565b610750565b61017d6102ef3660046112e6565b6107ea565b6101c160085481565b6101c161030b36600461138f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101fd6103433660046113c6565b6107f6565b606060048054610357906113e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610383906113e6565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f6103e43384846108f9565b5060015b92915050565b5f6103fa848484610a1c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104835760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049785336104928685611432565b6108f9565b506001949350505050565b6006546001600160a01b031633146104cc5760405162461bcd60e51b815260040161047a90611445565b600354600b55600354600c55600354600d55565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103e4918590610492908690611469565b6006546001600160a01b031633146105405760405162461bcd60e51b815260040161047a90611445565b60095460ff16156105935760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e67000000000000000000604482015260640161047a565b60098054610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa15801561060c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610630919061147c565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561067b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069f919061147c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070d919061147c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055506009805460ff1916911515919091179055565b606060058054610357906113e6565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156107d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047a565b6107e033856104928685611432565b5060019392505050565b5f6103e4338484610a1c565b6006546001600160a01b031633146108205760405162461bcd60e51b815260040161047a90611445565b60328211156108845760405162461bcd60e51b815260206004820152602a60248201527f4552524f523a204e6577204275792054617820494e56414c494420285f627579604482015269546178203c3d2035302960b01b606482015260840161047a565b60328111156108ea5760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a204e65772053656c6c2054617820494e56414c494420285f736560448201526b6c6c546178203c3d2035302960a01b606482015260840161047a565b600191821b600755901b600855565b6001600160a01b03831661095b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047a565b6001600160a01b0382166109bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a805760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047a565b6001600160a01b038216610ae25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047a565b6006546001600160a01b03848116911614801590610b0e57506006546001600160a01b03838116911614155b15610d715760095460ff16610ba0576006546001600160a01b03848116911614610ba05760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161047a565b600b54811115610bf25760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000604482015260640161047a565b600a546001600160a01b03838116911614610c8c57600c5481610c29846001600160a01b03165f9081526020819052604090205490565b610c339190611469565b10610c8c5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b606482015260840161047a565b305f90815260208190526040902054600b548110610ca95750600b545b600d54600b5490821015908210610cc057600b5491505b808015610cd75750600e54600160a01b900460ff16155b8015610cf15750600a546001600160a01b03868116911614155b8015610d065750600e54600160a81b900460ff165b8015610d2a57506001600160a01b0385165f9081526002602052604090205460ff16155b8015610d4e57506001600160a01b0384165f9081526002602052604090205460ff16155b15610d6e57610d5c826110b5565b478015610d6c57610d6c47611248565b505b50505b6001600160a01b0383165f9081526002602052604081205460ff1680610dae57506001600160a01b0383165f9081526002602052604090205460ff165b80610de05750600a546001600160a01b03858116911614801590610de05750600a546001600160a01b03848116911614155b15610eb6576001600160a01b0384165f9081526020819052604090205482811015610e1d5760405162461bcd60e51b815260040161047a90611497565b610e278382611432565b6001600160a01b038087165f908152602081905260408082209390935590861681529081208054859290610e5c908490611469565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ea891815260200190565b60405180910390a3506110af565b600a546001600160a01b038581169116148015610ee657506009546001600160a01b038481166101009092041614155b15610f0857606460075483610efb91906114dd565b610f0591906114f4565b90505b600a546001600160a01b038481169116148015610f3857506009546001600160a01b038581166101009092041614155b15610f5a57606460085483610f4d91906114dd565b610f5791906114f4565b90505b6001600160a01b0384165f9081526020819052604090205482811015610f925760405162461bcd60e51b815260040161047a90611497565b610f9c8382611432565b6001600160a01b0386165f90815260208190526040902055610fbe8284611432565b6001600160a01b0385165f9081526020819052604081208054909190610fe5908490611469565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110238587611432565b60405190815260200160405180910390a381156110ad57305f9081526020819052604081208054849290611058908490611469565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110a491815260200190565b60405180910390a35b505b50505050565b600e805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110fb576110fb611513565b60200260200101906001600160a01b031690816001600160a01b031681525050600960019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561116c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611190919061147c565b816001815181106111a3576111a3611513565b6001600160a01b0392831660209182029290920101526009546111ce913091610100900416846108f9565b60095460405163791ac94760e01b81526101009091046001600160a01b03169063791ac9479061120a9085905f90869030904290600401611527565b5f604051808303815f87803b158015611221575f80fd5b505af1158015611233573d5f803e3d5ffd5b5050600e805460ff60a01b1916905550505050565b600e546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561127f573d5f803e3d5ffd5b5050565b5f602080835283518060208501525f5b818110156112af57858101830151858201604001528201611293565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112e3575f80fd5b50565b5f80604083850312156112f7575f80fd5b8235611302816112cf565b946020939093013593505050565b5f805f60608486031215611322575f80fd5b833561132d816112cf565b9250602084013561133d816112cf565b929592945050506040919091013590565b5f6020828403121561135e575f80fd5b8135801515811461136d575f80fd5b9392505050565b5f60208284031215611384575f80fd5b813561136d816112cf565b5f80604083850312156113a0575f80fd5b82356113ab816112cf565b915060208301356113bb816112cf565b809150509250929050565b5f80604083850312156113d7575f80fd5b50508035926020909101359150565b600181811c908216806113fa57607f821691505b60208210810361141857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103e8576103e861141e565b6020808252600a90820152694e6f74206f776e65722160b01b604082015260600190565b808201808211156103e8576103e861141e565b5f6020828403121561148c575f80fd5b815161136d816112cf565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b80820281158282048414176103e8576103e861141e565b5f8261150e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156115775784516001600160a01b031683529383019391830191600101611552565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f11b9d881b343ffd2b5d7d7dc893924e59c95602188af5add1da90c9a1a3026c64736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c806349bd5a5e116100bf57806395d89b411161007957806395d89b41146102c6578063a457c2d7146102ce578063a9059cbb146102e1578063ca9ec199146102f4578063dd62ed3e146102fd578063f61f15e414610335575f80fd5b806349bd5a5e1461025557806357eaf03d1461026857806370a082311461027b5780637d1db4a5146102a35780638da5cb5b146102ac5780638f9a55c0146102bd575f80fd5b806323b872dd1161011057806323b872dd146101e25780632d53e1bd146101f55780632fd689e3146101ff578063313ce56714610208578063395093511461023957806342a110951461024c575f80fd5b806306fdde031461014c578063095ea7b31461016a5780631694505e1461018d57806318160ddd146101bd5780631ffdf9fa146101cf575b5f80fd5b610154610348565b6040516101619190611283565b60405180910390f35b61017d6101783660046112e6565b6103d8565b6040519015158152602001610161565b6009546101a59061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610161565b6003545b604051908152602001610161565b600e546101a5906001600160a01b031681565b61017d6101f0366004611310565b6103ee565b6101fd6104a2565b005b6101c1600d5481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000012168152602001610161565b61017d6102473660046112e6565b6104e0565b6101c160075481565b600a546101a5906001600160a01b031681565b6101fd61027636600461134e565b610516565b6101c1610289366004611374565b6001600160a01b03165f9081526020819052604090205490565b6101c1600b5481565b6006546001600160a01b03166101a5565b6101c1600c5481565b610154610741565b61017d6102dc3660046112e6565b610750565b61017d6102ef3660046112e6565b6107ea565b6101c160085481565b6101c161030b36600461138f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101fd6103433660046113c6565b6107f6565b606060048054610357906113e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610383906113e6565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f6103e43384846108f9565b5060015b92915050565b5f6103fa848484610a1c565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104835760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049785336104928685611432565b6108f9565b506001949350505050565b6006546001600160a01b031633146104cc5760405162461bcd60e51b815260040161047a90611445565b600354600b55600354600c55600354600d55565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103e4918590610492908690611469565b6006546001600160a01b031633146105405760405162461bcd60e51b815260040161047a90611445565b60095460ff16156105935760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e67000000000000000000604482015260640161047a565b60098054610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa15801561060c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610630919061147c565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561067b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069f919061147c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070d919061147c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055506009805460ff1916911515919091179055565b606060058054610357906113e6565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156107d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047a565b6107e033856104928685611432565b5060019392505050565b5f6103e4338484610a1c565b6006546001600160a01b031633146108205760405162461bcd60e51b815260040161047a90611445565b60328211156108845760405162461bcd60e51b815260206004820152602a60248201527f4552524f523a204e6577204275792054617820494e56414c494420285f627579604482015269546178203c3d2035302960b01b606482015260840161047a565b60328111156108ea5760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a204e65772053656c6c2054617820494e56414c494420285f736560448201526b6c6c546178203c3d2035302960a01b606482015260840161047a565b600191821b600755901b600855565b6001600160a01b03831661095b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047a565b6001600160a01b0382166109bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a805760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047a565b6001600160a01b038216610ae25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047a565b6006546001600160a01b03848116911614801590610b0e57506006546001600160a01b03838116911614155b15610d715760095460ff16610ba0576006546001600160a01b03848116911614610ba05760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161047a565b600b54811115610bf25760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000604482015260640161047a565b600a546001600160a01b03838116911614610c8c57600c5481610c29846001600160a01b03165f9081526020819052604090205490565b610c339190611469565b10610c8c5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b606482015260840161047a565b305f90815260208190526040902054600b548110610ca95750600b545b600d54600b5490821015908210610cc057600b5491505b808015610cd75750600e54600160a01b900460ff16155b8015610cf15750600a546001600160a01b03868116911614155b8015610d065750600e54600160a81b900460ff165b8015610d2a57506001600160a01b0385165f9081526002602052604090205460ff16155b8015610d4e57506001600160a01b0384165f9081526002602052604090205460ff16155b15610d6e57610d5c826110b5565b478015610d6c57610d6c47611248565b505b50505b6001600160a01b0383165f9081526002602052604081205460ff1680610dae57506001600160a01b0383165f9081526002602052604090205460ff165b80610de05750600a546001600160a01b03858116911614801590610de05750600a546001600160a01b03848116911614155b15610eb6576001600160a01b0384165f9081526020819052604090205482811015610e1d5760405162461bcd60e51b815260040161047a90611497565b610e278382611432565b6001600160a01b038087165f908152602081905260408082209390935590861681529081208054859290610e5c908490611469565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ea891815260200190565b60405180910390a3506110af565b600a546001600160a01b038581169116148015610ee657506009546001600160a01b038481166101009092041614155b15610f0857606460075483610efb91906114dd565b610f0591906114f4565b90505b600a546001600160a01b038481169116148015610f3857506009546001600160a01b038581166101009092041614155b15610f5a57606460085483610f4d91906114dd565b610f5791906114f4565b90505b6001600160a01b0384165f9081526020819052604090205482811015610f925760405162461bcd60e51b815260040161047a90611497565b610f9c8382611432565b6001600160a01b0386165f90815260208190526040902055610fbe8284611432565b6001600160a01b0385165f9081526020819052604081208054909190610fe5908490611469565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110238587611432565b60405190815260200160405180910390a381156110ad57305f9081526020819052604081208054849290611058908490611469565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110a491815260200190565b60405180910390a35b505b50505050565b600e805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110fb576110fb611513565b60200260200101906001600160a01b031690816001600160a01b031681525050600960019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561116c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611190919061147c565b816001815181106111a3576111a3611513565b6001600160a01b0392831660209182029290920101526009546111ce913091610100900416846108f9565b60095460405163791ac94760e01b81526101009091046001600160a01b03169063791ac9479061120a9085905f90869030904290600401611527565b5f604051808303815f87803b158015611221575f80fd5b505af1158015611233573d5f803e3d5ffd5b5050600e805460ff60a01b1916905550505050565b600e546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561127f573d5f803e3d5ffd5b5050565b5f602080835283518060208501525f5b818110156112af57858101830151858201604001528201611293565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112e3575f80fd5b50565b5f80604083850312156112f7575f80fd5b8235611302816112cf565b946020939093013593505050565b5f805f60608486031215611322575f80fd5b833561132d816112cf565b9250602084013561133d816112cf565b929592945050506040919091013590565b5f6020828403121561135e575f80fd5b8135801515811461136d575f80fd5b9392505050565b5f60208284031215611384575f80fd5b813561136d816112cf565b5f80604083850312156113a0575f80fd5b82356113ab816112cf565b915060208301356113bb816112cf565b809150509250929050565b5f80604083850312156113d7575f80fd5b50508035926020909101359150565b600181811c908216806113fa57607f821691505b60208210810361141857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103e8576103e861141e565b6020808252600a90820152694e6f74206f776e65722160b01b604082015260600190565b808201808211156103e8576103e861141e565b5f6020828403121561148c575f80fd5b815161136d816112cf565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b80820281158282048414176103e8576103e861141e565b5f8261150e57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156115775784516001600160a01b031683529383019391830191600101611552565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f11b9d881b343ffd2b5d7d7dc893924e59c95602188af5add1da90c9a1a3026c64736f6c63430008170033

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.