Token OreoSwap

DEX  
 

Overview ERC20

Price
$0.07 @ 0.000036 ETH (+1.59%)
Fully Diluted Market Cap
Total Supply:
4,226,436.342515 OREO

Holders:
3,575 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

Wonder filled DeFi protocol for trading, automated liquidity provision, farming, and more on Arbitrum chain.

Market

Volume (24H):$1,664.52
Market Capitalization:$0.00
Circulating Supply:0.00 OREO
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OREO

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : OREO.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

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

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

  function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;
}

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

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

contract OREO is ERC20Burnable, Ownable {
  using SafeMath for uint256;

  mapping(address => bool) public isExcludedFromFee;
  mapping(address => bool) public isMinter;
  mapping(address => bool) public whiteListedPair;

  uint256 public immutable MAX_SUPPLY;
  uint256 public BUY_FEE = 0;
  uint256 public SELL_FEE = 450;
  uint256 public TREASURY_FEE = 50;

  bool public autoSwap = true;

  uint256 public totalBurned = 0;

  address payable public devAddress;
  IUniswapV2Router02 public uniswapV2Router;

  event TokenRecoverd(address indexed _user, uint256 _amount);
  event FeeUpdated(address indexed _user, uint256 _feeType, uint256 _fee);
  event ToggleV2Pair(address indexed _user, address indexed _pair, bool _flag);
  event AddressExcluded(address indexed _user, address indexed _account, bool _flag);
  event MinterRoleAssigned(address indexed _user, address indexed _account);
  event MinterRoleRevoked(address indexed _user, address indexed _account);
  event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

  constructor(
    uint256 _maxSupply,
    uint256 _initialSupply,
    address router_,
    address payable _dev
  ) public ERC20("OreoSwap", "OREO") {
    require(_initialSupply <= _maxSupply, "OREO: The _initialSupply should not exceed the _maxSupply");

    MAX_SUPPLY = _maxSupply;
    isExcludedFromFee[owner()] = true;
    isExcludedFromFee[address(this)] = true;
    isExcludedFromFee[devAddress] = true;
    devAddress = _dev;

    if (_initialSupply > 0) {
      _mint(_msgSender(), _initialSupply);
    }

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_);

    // address uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
    //   .createPair(address(this), _uniswapV2Router.WETH());

    // whiteListedPair[uniswapV2Pair] = true;

    // emit ToggleV2Pair(_msgSender(), uniswapV2Pair, true);

    uniswapV2Router = _uniswapV2Router;
  }

  modifier onlyDev() {
    require(devAddress == _msgSender() || owner() == _msgSender(), "OREO: You don't have the permission!");
    _;
  }

  modifier hasMinterRole() {
    require(isMinter[_msgSender()], "OREO: You don't have the permission!");
    _;
  }

  /************************************************************************/

  // function setAutoSwap(bool _flag) external onlyDev {
  //   autoSwap = _flag;
  // }

  // /************************************************************************/

  // function swapTokensForEth(uint256 tokenAmount) internal {
  //   // generate the uniswap pair path of token -> weth
  //   address[] memory path = new address[](2);
  //   path[0] = address(this);
  //   path[1] = uniswapV2Router.WETH();

  //   _approve(address(this), address(uniswapV2Router), tokenAmount);
  //   // make the swap
  //   uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
  //     tokenAmount,
  //     0, // accept any amount of ETH
  //     path,
  //     devAddress,
  //     block.timestamp
  //   );
  // }

  /************************************************************************/

  function _burn(address account, uint256 amount) internal override {
    super._burn(account, amount);
    totalBurned = totalBurned.add(amount);
  }

  /************************************************************************/

  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal override {
    require(sender != address(0), "ERC20: transfer from the zero address");
    require(recipient != address(0), "ERC20: transfer to the zero address");

    uint256 burnFee;
    uint256 treasuryFee;

    if (whiteListedPair[sender]) {
      burnFee = BUY_FEE;
    } else if (whiteListedPair[recipient]) {
      burnFee = SELL_FEE;
      treasuryFee = TREASURY_FEE;
    }

    if (
      (isExcludedFromFee[sender] || isExcludedFromFee[recipient]) ||
      (!whiteListedPair[sender] && !whiteListedPair[recipient])
    ) {
      burnFee = 0;
      treasuryFee = 0;
    }

    uint256 burnFeeAmount = amount.mul(burnFee).div(10000);
    uint256 treasuryFeeAmount = amount.mul(treasuryFee).div(10000);

    if (burnFeeAmount > 0) {
      _burn(sender, burnFeeAmount);
      amount = amount.sub(burnFeeAmount);
      // amount = amount - burnFeeAmount;
    }

    if (treasuryFeeAmount > 0) {
      super._transfer(sender, devAddress, treasuryFeeAmount);

      amount = amount.sub(treasuryFeeAmount);
      // amount = amount - treasuryFeeAmount;
    }

    super._transfer(sender, recipient, amount);
  }

  /************************************************************************/

  function updateUniswapV2Router(address newAddress) public onlyDev {
    require(newAddress != address(uniswapV2Router), "OREO: The router already has that address");
    emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
    uniswapV2Router = IUniswapV2Router02(newAddress);
    // address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
    //   .createPair(address(this), uniswapV2Router.WETH());
  }

  /************************************************************************/

  function mint(address _user, uint256 _amount) external hasMinterRole {
    uint256 _totalSupply = totalSupply();
    require(_totalSupply.add(_amount) <= MAX_SUPPLY, "OREO: No more minting allowed!");

    _mint(_user, _amount);
  }

  /**************************************************************************/

  function assignMinterRole(address _account) public onlyOwner {
    isMinter[_account] = true;

    emit MinterRoleAssigned(_msgSender(), _account);
  }

  function revokeMinterRole(address _account) public onlyOwner {
    isMinter[_account] = false;

    emit MinterRoleRevoked(_msgSender(), _account);
  }

  function excludeMultipleAccountsFromFees(address[] calldata _accounts, bool _excluded) external onlyDev {
    for (uint256 i = 0; i < _accounts.length; i++) {
      isExcludedFromFee[_accounts[i]] = _excluded;

      emit AddressExcluded(_msgSender(), _accounts[i], _excluded);
    }
  }

  function enableV2PairFee(address _account, bool _flag) external onlyDev {
    whiteListedPair[_account] = _flag;

    emit ToggleV2Pair(_msgSender(), _account, _flag);
  }

  function updateDevAddress(address payable _dev) external onlyDev {
    isExcludedFromFee[devAddress] = false;
    emit AddressExcluded(_msgSender(), devAddress, false);

    devAddress = _dev;
    isExcludedFromFee[devAddress] = true;

    emit AddressExcluded(_msgSender(), devAddress, true);
  }

  function updateFee(uint256 feeType, uint256 fee) external onlyDev {
    require(fee <= 900, "OREO: The tax Fee cannot exceed 9%");

    // 1 = BUY FEE, 2 = SELL FEE, 3 = TREASURY FEE
    if (feeType == 1) {
      BUY_FEE = fee;
    } else if (feeType == 2) {
      SELL_FEE = fee;
    } else if (feeType == 3) {
      TREASURY_FEE = fee;
    }

    emit FeeUpdated(_msgSender(), feeType, fee);
  }

  function recoverToken(address _token) external onlyDev {
    uint256 tokenBalance = IERC20(_token).balanceOf(address(this));

    require(tokenBalance > 0, "OREO: The contract doen't have tokens to be recovered!");

    IERC20(_token).transfer(devAddress, tokenBalance);

    emit TokenRecoverd(devAddress, tokenBalance);
  }

  /***************************************************************************/
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 3 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../utils/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

File 5 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

File 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 7 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"internalType":"address payable","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"AddressExcluded","type":"event"},{"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":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_feeType","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"MinterRoleAssigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"MinterRoleRevoked","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":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_pair","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"ToggleV2Pair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TokenRecoverd","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BUY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_FEE","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":"assignMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"enableV2PairFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_dev","type":"address"}],"name":"updateDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeType","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListedPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a0604052600060098190556101c2600a556032600b55600c805460ff19166001179055600d553480156200003357600080fd5b506040516200276738038062002767833981810160405260808110156200005957600080fd5b50805160208083015160408085015160609095015181518083018352600881526704f72656f537761760c41b818601908152835180850190945260048452634f52454f60e01b9584019590955280519596939593949193909291620000c29160039190620003e4565b508051620000d8906004906020840190620003e4565b50506005805460ff19166012179055506000620000f462000256565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350838311156200018b5760405162461bcd60e51b81526004018080602001828103825260398152602001806200272e6039913960400191505060405180910390fd5b6080849052600160066000620001a06200025a565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600e80548316855292909320805490941690921790925581549083166001600160a01b031990911617905582156200022c576200022c6200022562000256565b846200026e565b50600f80546001600160a01b0319166001600160a01b039290921691909117905550620004809050565b3390565b60055461010090046001600160a01b031690565b6001600160a01b038216620002ca576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002d8600083836200037d565b620002f4816002546200038260201b6200177c1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620003279183906200177c62000382821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620003dd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200042757805160ff191683800117855562000457565b8280016001018555821562000457579182015b82811115620004575782518255916020019190600101906200043a565b506200046592915062000469565b5090565b5b808211156200046557600081556001016200046a565b60805161228e620004a0600039806109e65280610ad7525061228e6000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a08231116101255780639be65a60116100ad578063b366d6131161007c578063b366d61314610634578063c492f0461461065a578063d89135cd146106cc578063dd62ed3e146106d4578063f2fde38b146107025761021c565b80639be65a6014610590578063a457c2d7146105b6578063a9059cbb146105e2578063aa271e1a1461060e5761021c565b806385033762116100f457806385033762146105245780638ce1a4831461054a5780638da5cb5b14610552578063953920941461055a57806395d89b41146105885761021c565b806370a08231146104c2578063715018a6146104e857806377004851146104f057806379cc6790146104f85761021c565b806332cb6b0c116101a857806342966c681161017757806342966c681461042b5780634773a6a9146104485780635342acb41461045057806365b8dbc01461047657806369e2f0fb1461049c5761021c565b806332cb6b0c146103c357806339509351146103cb5780633ad10ef6146103f757806340c10f19146103ff5761021c565b806323b872dd116101ef57806323b872dd1461031c5780632740c1971461035257806327b9bb9c14610377578063284628131461037f578063313ce567146103a55761021c565b806306fdde0314610221578063095ea7b31461029e5780631694505e146102de57806318160ddd14610302575b600080fd5b610229610728565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356107be565b604080519115158252519081900360200190f35b6102e66107dc565b604080516001600160a01b039092168252519081900360200190f35b61030a6107eb565b60408051918252519081900360200190f35b6102ca6004803603606081101561033257600080fd5b506001600160a01b038135811691602081013590911690604001356107f1565b6103756004803603604081101561036857600080fd5b5080359060200135610878565b005b61030a6109c0565b6102ca6004803603602081101561039557600080fd5b50356001600160a01b03166109c6565b6103ad6109db565b6040805160ff9092168252519081900360200190f35b61030a6109e4565b6102ca600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610a08565b6102e6610a56565b6103756004803603604081101561041557600080fd5b506001600160a01b038135169060200135610a65565b6103756004803603602081101561044157600080fd5b5035610b62565b61030a610b76565b6102ca6004803603602081101561046657600080fd5b50356001600160a01b0316610b7c565b6103756004803603602081101561048c57600080fd5b50356001600160a01b0316610b91565b610375600480360360208110156104b257600080fd5b50356001600160a01b0316610cb9565b61030a600480360360208110156104d857600080fd5b50356001600160a01b0316610d7b565b610375610d96565b6102ca610e48565b6103756004803603604081101561050e57600080fd5b506001600160a01b038135169060200135610e51565b6103756004803603602081101561053a57600080fd5b50356001600160a01b0316610ea6565b61030a61101f565b6102e6611025565b6103756004803603604081101561057057600080fd5b506001600160a01b0381351690602001351515611039565b610229611129565b610375600480360360208110156105a657600080fd5b50356001600160a01b031661118a565b6102ca600480360360408110156105cc57600080fd5b506001600160a01b038135169060200135611389565b6102ca600480360360408110156105f857600080fd5b506001600160a01b0381351690602001356113f1565b6102ca6004803603602081101561062457600080fd5b50356001600160a01b0316611405565b6103756004803603602081101561064a57600080fd5b50356001600160a01b031661141a565b6103756004803603604081101561067057600080fd5b81019060208101813564010000000081111561068b57600080fd5b82018360208201111561069d57600080fd5b803590602001918460208302840111640100000000831117156106bf57600080fd5b91935091503515156114df565b61030a61163d565b61030a600480360360408110156106ea57600080fd5b506001600160a01b0381358116916020013516611643565b6103756004803603602081101561071857600080fd5b50356001600160a01b031661166e565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b45780601f10610789576101008083540402835291602001916107b4565b820191906000526020600020905b81548152906001019060200180831161079757829003601f168201915b5050505050905090565b60006107d26107cb6117dd565b84846117e1565b5060015b92915050565b600f546001600160a01b031681565b60025490565b60006107fe8484846118cd565b61086e8461080a6117dd565b6108698560405180606001604052806028815260200161215e602891396001600160a01b038a166000908152600160205260408120906108486117dd565b6001600160a01b031681526020810191909152604001600020549190611acb565b6117e1565b5060019392505050565b6108806117dd565b600e546001600160a01b03908116911614806108bb575061089f6117dd565b6001600160a01b03166108b0611025565b6001600160a01b0316145b6108f65760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b6103848111156109375760405162461bcd60e51b81526004018080602001828103825260228152602001806120c16022913960400191505060405180910390fd5b816001141561094a57600981905561096c565b816002141561095d57600a81905561096c565b816003141561096c57600b8190555b6109746117dd565b6001600160a01b03167fcf5b6c438b64611d8ee0722509d7ad5149d4f779f0b29bc845152f0d89e42e198383604051808381526020018281526020019250505060405180910390a25050565b60095481565b60086020526000908152604090205460ff1681565b60055460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006107d2610a156117dd565b846108698560016000610a266117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061177c565b600e546001600160a01b031681565b60076000610a716117dd565b6001600160a01b0316815260208101919091526040016000205460ff16610ac95760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b6000610ad36107eb565b90507f0000000000000000000000000000000000000000000000000000000000000000610b00828461177c565b1115610b53576040805162461bcd60e51b815260206004820152601e60248201527f4f52454f3a204e6f206d6f7265206d696e74696e6720616c6c6f776564210000604482015290519081900360640190fd5b610b5d8383611b62565b505050565b610b73610b6d6117dd565b82611c52565b50565b600a5481565b60066020526000908152604090205460ff1681565b610b996117dd565b600e546001600160a01b0390811691161480610bd45750610bb86117dd565b6001600160a01b0316610bc9611025565b6001600160a01b0316145b610c0f5760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b600f546001600160a01b0382811691161415610c5c5760405162461bcd60e51b81526004018080602001828103825260298152602001806120086029913960400191505060405180910390fd5b600f546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610cc16117dd565b6001600160a01b0316610cd2611025565b6001600160a01b031614610d1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612186833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600760205260409020805460ff19169055610d436117dd565b6001600160a01b03167f73dc04f997208e28ceeffcd1317c714ef242da548c360f2f65be1f3e5e5777bb60405160405180910390a350565b6001600160a01b031660009081526020819052604090205490565b610d9e6117dd565b6001600160a01b0316610daf611025565b6001600160a01b031614610df8576040805162461bcd60e51b81526020600482018190526024820152600080516020612186833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600c5460ff1681565b6000610e88826040518060600160405280602481526020016121a660249139610e8186610e7c6117dd565b611643565b9190611acb565b9050610e9c83610e966117dd565b836117e1565b610b5d8383611c52565b610eae6117dd565b600e546001600160a01b0390811691161480610ee95750610ecd6117dd565b6001600160a01b0316610ede611025565b6001600160a01b0316145b610f245760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b600e80546001600160a01b039081166000908152600660205260409020805460ff19169055905416610f546117dd565b604080516000815290516001600160a01b0392909216917fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f9181900360200190a3600e80546001600160a01b0319166001600160a01b038381169190911780835581166000908152600660205260409020805460ff19166001179055905416610fdb6117dd565b604080516001815290516001600160a01b0392909216917fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f9181900360200190a350565b600b5481565b60055461010090046001600160a01b031690565b6110416117dd565b600e546001600160a01b039081169116148061107c57506110606117dd565b6001600160a01b0316611071611025565b6001600160a01b0316145b6110b75760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b6001600160a01b0382166000818152600860205260409020805460ff19168315151790556110e36117dd565b6001600160a01b03167f1b0acd114abe3e45107dfd0d7da1fcae9eacf8c21eaf12480c6e9acf4fa212e08360405180821515815260200191505060405180910390a35050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b45780601f10610789576101008083540402835291602001916107b4565b6111926117dd565b600e546001600160a01b03908116911614806111cd57506111b16117dd565b6001600160a01b03166111c2611025565b6001600160a01b0316145b6112085760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561125757600080fd5b505afa15801561126b573d6000803e3d6000fd5b505050506040513d602081101561128157600080fd5b50519050806112c15760405162461bcd60e51b81526004018080602001828103825260368152602001806120e36036913960400191505060405180910390fd5b600e546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b505050506040513d602081101561134157600080fd5b5050600e546040805183815290516001600160a01b03909216917f33446578f932f930c093f8ca9b7d449e2af5ac4b70bf78c6927a88da0d3383369181900360200190a25050565b60006107d26113966117dd565b846108698560405180606001604052806025815260200161223460259139600160006113c06117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611acb565b60006107d26113fe6117dd565b84846118cd565b60076020526000908152604090205460ff1681565b6114226117dd565b6001600160a01b0316611433611025565b6001600160a01b03161461147c576040805162461bcd60e51b81526020600482018190526024820152600080516020612186833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600760205260409020805460ff191660011790556114a76117dd565b6001600160a01b03167f3d897ffa5fd59890ed4634aba2661baba4671f396e0050bbe8cc6549a4f14c4460405160405180910390a350565b6114e76117dd565b600e546001600160a01b039081169116148061152257506115066117dd565b6001600160a01b0316611517611025565b6001600160a01b0316145b61155d5760405162461bcd60e51b81526004018080602001828103825260248152602001806121196024913960400191505060405180910390fd5b60005b8281101561163757816006600086868581811061157957fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508383828181106115cc57fe5b905060200201356001600160a01b03166001600160a01b03166115ed6117dd565b6001600160a01b03167fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f8460405180821515815260200191505060405180910390a3600101611560565b50505050565b600d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116766117dd565b6001600160a01b0316611687611025565b6001600160a01b0316146116d0576040805162461bcd60e51b81526020600482018190526024820152600080516020612186833981519152604482015290519081900360640190fd5b6001600160a01b0381166117155760405162461bcd60e51b81526004018080602001828103825260268152602001806120536026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156117d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166118265760405162461bcd60e51b81526004018080602001828103825260248152602001806122106024913960400191505060405180910390fd5b6001600160a01b03821661186b5760405162461bcd60e51b81526004018080602001828103825260228152602001806120796022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119125760405162461bcd60e51b81526004018080602001828103825260258152602001806121eb6025913960400191505060405180910390fd5b6001600160a01b0382166119575760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe56023913960400191505060405180910390fd5b6001600160a01b038316600090815260086020526040812054819060ff16156119845760095491506119ae565b6001600160a01b03841660009081526008602052604090205460ff16156119ae575050600a54600b545b6001600160a01b03851660009081526006602052604090205460ff16806119ed57506001600160a01b03841660009081526006602052604090205460ff165b80611a3557506001600160a01b03851660009081526008602052604090205460ff16158015611a3557506001600160a01b03841660009081526008602052604090205460ff16155b15611a41575060009050805b6000611a59612710611a538686611c70565b90611cc9565b90506000611a6d612710611a538786611c70565b90508115611a8c57611a7f8783611c52565b611a898583611d30565b94505b8015611ab757600e54611aaa9088906001600160a01b031683611d8d565b611ab48582611d30565b94505b611ac2878787611d8d565b50505050505050565b60008184841115611b5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1f578181015183820152602001611b07565b50505050905090810190601f168015611b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611bbd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611bc960008383610b5d565b600254611bd6908261177c565b6002556001600160a01b038216600090815260208190526040902054611bfc908261177c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611c5c8282611ee8565b600d54611c69908261177c565b600d555050565b600082611c7f575060006107d6565b82820282848281611c8c57fe5b04146117d65760405162461bcd60e51b815260040180806020018281038252602181526020018061213d6021913960400191505060405180910390fd5b6000808211611d1f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611d2857fe5b049392505050565b600082821115611d87576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316611dd25760405162461bcd60e51b81526004018080602001828103825260258152602001806121eb6025913960400191505060405180910390fd5b6001600160a01b038216611e175760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe56023913960400191505060405180910390fd5b611e22838383610b5d565b611e5f8160405180606001604052806026815260200161209b602691396001600160a01b0386166000908152602081905260409020549190611acb565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e8e908261177c565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216611f2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806121ca6021913960400191505060405180910390fd5b611f3982600083610b5d565b611f7681604051806060016040528060228152602001612031602291396001600160a01b0385166000908152602081905260409020549190611acb565b6001600160a01b038316600090815260208190526040902055600254611f9c9082611d30565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f52454f3a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f52454f3a2054686520746178204665652063616e6e6f74206578636565642039254f52454f3a2054686520636f6e747261637420646f656e2774206861766520746f6b656e7320746f206265207265636f7665726564214f52454f3a20596f7520646f6e2774206861766520746865207065726d697373696f6e21536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204e85d3c236b511b2f0f043f60da8e09db5ecb04c171652b01a81e00a606b981664736f6c634300060c00334f52454f3a20546865205f696e697469616c537570706c792073686f756c64206e6f742065786365656420746865205f6d6178537570706c790000000000000000000000000000000000000000004a723dc6b40b8a9a000000000000000000000000000000000000000000000000027b46536c66c8e3000000000000000000000000000000f5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6000000000000000000000000f5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6

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

0000000000000000000000000000000000000000004a723dc6b40b8a9a000000000000000000000000000000000000000000000000027b46536c66c8e3000000000000000000000000000000f5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6000000000000000000000000f5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 90000000000000000000000000
Arg [1] : _initialSupply (uint256): 3000000000000000000000000
Arg [2] : router_ (address): 0xf5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6
Arg [3] : _dev (address): 0xf5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000004a723dc6b40b8a9a000000
Arg [1] : 000000000000000000000000000000000000000000027b46536c66c8e3000000
Arg [2] : 000000000000000000000000f5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6
Arg [3] : 000000000000000000000000f5b68d87799d0c6d9ebb5b29e06bbb736d5e89b6


Loading