ETH Price: $2,661.42 (+9.17%)
Gas: 3 Gwei

Token

AYUMI Token (AYUMI)
 

Overview

Max Total Supply

100,910,534,690,282.6014636987 AYUMI

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 10 Decimals)

Balance
5,000,000,000.91 AYUMI

Value
$0.00
0xaa421fb358364d67779b9630880731371597eba5
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:
AYUMIToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AYUMI1.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 {
    mapping(address => bool) private _owners;
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owners[_msgSender()], "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;
  uint8 public _decimals;
  string public _symbol;
  string public _name;
  address public _marketingAddress = 0x199Deb2bFC5f67FDae22f38297CBdBb2f1cD31F4;
  address public _masterWallet = 0x6976Fe2557aA92F8C2201203c3262999fba5bC04;
  address public _treasuryWallet = 0x6976Fe2557aA92F8C2201203c3262999fba5bC04;
  address public _uniswapV3Router = 0xE592427A0AEce92De3Edee1F18E0157C05861564;
  address public burnAddress = 0x000000000000000000000000000000000000dEaD;
  uint256 public _burnRate = 1;

  constructor() {
    _name = 'AYUMI Token';
    _symbol = 'AYUMI';
    _decimals = 10;
    _totalSupply = 10 ** 12 * 10**10;
    _balances[_masterWallet] = _totalSupply;

    emit Transfer(address(0), _masterWallet, _totalSupply);
  }

  /**
   * @dev Returns the erc token owner.
   */
  function getOwner() external view returns (address) {
    return owner();
  }

  /**
   * @dev Returns the token decimals.
   */
  function decimals() external view returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the token symbol.
   */
  function symbol() external view returns (string memory) {
    return _symbol;
  }

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

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

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

  /**
   * @dev See {ERC20-transfer}.
   *
   * Requirements:
   *
   * - `recipient` cannot be the zero address.
   * - the caller must have a balance of at least `amount`.
   */
  function transfer(address recipient, uint256 amount)
    external
    override
    returns (bool)
  {
    uint256 _marketingFee = amount.mul(6).div(100);
    uint256 _treasuryFee = 0;
    uint256 _burnFee = amount.div(100);
    uint256 _txnFee;

    if (_msgSender() == _uniswapV3Router || recipient == _uniswapV3Router) _treasuryFee = amount.mul(2).div(100);

    _balances[_marketingAddress] = _balances[_marketingAddress] + _marketingFee;
    _balances[_treasuryWallet] = _balances[_treasuryWallet] + _treasuryFee;
    _burn(_msgSender(), _burnFee);

    _txnFee = _marketingFee + _treasuryFee + _burnFee;

    _transfer(_msgSender(), recipient, amount, _txnFee);
    return true;
  }

  /**
   * @dev See {ERC20-allowance}.
   */
  function allowance(address owner, address spender)
    external
    view
    override
    returns (uint256)
  {
    return _allowances[owner][spender];
  }

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

  /**
   * @dev See {ERC20-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
  ) external override returns (bool) {

    uint256 _marketingFee = amount.mul(6).div(100);
    uint256 _treasuryFee = 0;
    uint256 _burnFee = amount.div(100);
    uint256 _txnFee;

    if (sender == _uniswapV3Router || recipient == _uniswapV3Router) _treasuryFee = amount.mul(2).div(100);

    _balances[_marketingAddress] = _balances[_marketingAddress] + _marketingFee;
    _balances[_treasuryWallet] = _balances[_treasuryWallet] + _treasuryFee;
    _burn(sender, _burnFee);

    _txnFee = _marketingFee + _treasuryFee + _burnFee;
    
    _transfer(sender, recipient, amount.add(_txnFee), _txnFee);
    _approve(
      sender,
      _msgSender(),
      _allowances[sender][_msgSender()].sub(
        amount.add(_txnFee),
        '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 {ERC20-approve}.
   *
   * Emits an {Approval} event indicating the updated allowance.
   *
   * Requirements:
   *
   * - `spender` cannot be the zero address.
   */
  function increaseAllowance(address spender, uint256 addedValue)
    public
    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 {ERC20-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
    returns (bool)
  {
    _approve(
      _msgSender(),
      spender,
      _allowances[_msgSender()][spender].sub(
        subtractedValue,
        'ERC20: decreased allowance below zero'
      )
    );
    return true;
  }

  /**
   * @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 =
      _allowances[account][_msgSender()].sub(
        amount,
        'ERC20: burn amount exceeds allowance'
      );

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

  /**
   * @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, 
    uint256 txnFee
  ) internal {
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');
    
    _balances[sender] = _balances[sender].sub(
      amount,
      'ERC20: transfer amount exceeds balance'
    );

    _balances[recipient] = _balances[recipient].add(amount - txnFee);
    emit Transfer(sender, recipient, amount - txnFee);
  }

  /**
   * @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 {
    require(account != address(0), 'ERC20: burn from the zero address');
    
    _totalSupply = _totalSupply.sub(amount);
    _balances[burnAddress] = _balances[burnAddress] + amount;
    emit Transfer(account, burnAddress, amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
   *
   * This is 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 {
    require(owner != address(0), 'ERC20: approve from the zero address');
    require(spender != address(0), 'ERC20: approve to the zero address');

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

  function mint(uint256 _mintamount) external onlyOwner {
    require(_mintamount > 0, "Should be more than zero");
    uint256 mintamount = _mintamount * 10 ** 10;
    _totalSupply += mintamount;
    _balances[msg.sender] += mintamount;

    emit Transfer(address(0), msg.sender, mintamount);
  }

  function setMarketingAddress(address account) external onlyOwner {
      require(account != address(0), "Cannot be zero address");
      _marketingAddress = account;
  }

  function setTreasuryAddress(address account) external onlyOwner {
      require(account != address(0), "Cannot be zero address");
      _treasuryWallet = account;
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_masterWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV3Router","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintamount","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273199deb2bfc5f67fdae22f38297cbdbb2f1cd31f4600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736976fe2557aa92f8c2201203c3262999fba5bc04600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736976fe2557aa92f8c2201203c3262999fba5bc04600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e592427a0aece92de3edee1f18e0157c05861564600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d55348015620001ad57600080fd5b506001600080620001c3620003f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200023462000228620003f760201b60201c565b620003ff60201b60201c565b6040518060400160405280600b81526020017f4159554d4920546f6b656e00000000000000000000000000000000000000000081525060079080519060200190620002819291906200051c565b506040518060400160405280600581526020017f4159554d4900000000000000000000000000000000000000000000000000000081525060069080519060200190620002cf9291906200051c565b50600a600560006101000a81548160ff021916908360ff16021790555069021e19e0c9bab240000060048190555060045460026000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600454604051620003e99190620005dd565b60405180910390a362000669565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200052a9062000604565b90600052602060002090601f0160209004810192826200054e57600085556200059a565b82601f106200056957805160ff19168380011785556200059a565b828001600101855582156200059a579182015b82811115620005995782518255916020019190600101906200057c565b5b509050620005a99190620005ad565b5090565b5b80821115620005c8576000816000905550600101620005ae565b5090565b620005d781620005fa565b82525050565b6000602082019050620005f46000830184620005cc565b92915050565b6000819050919050565b600060028204905060018216806200061d57607f821691505b602082108114156200063457620006336200063a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c1380620006796000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a0712d68116100a2578063caac793411610071578063caac793414610510578063d28d88521461052e578063dd62ed3e1461054c578063f2fde38b1461057c576101cf565b8063a0712d6814610476578063a457c2d714610492578063a9059cbb146104c2578063b09f1266146104f2576101cf565b8063893d20e8116100de578063893d20e8146104005780638da5cb5b1461041e578063906e9dd01461043c57806395d89b4114610458576101cf565b8063715018a6146103bc57806379138df1146103c657806379cc6790146103e4576101cf565b806332424aa3116101715780634320bcf11161014b5780634320bcf1146103345780636605bfda1461035257806370a082311461036e57806370d5ae051461039e576101cf565b806332424aa3146102ca57806339509351146102e857806342966c6814610318576101cf565b80631e2a50ab116101ad5780631e2a50ab1461024057806323b872dd1461025e578063269d1faa1461028e578063313ce567146102ac576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610222575b600080fd5b6101dc610598565b6040516101e991906124bd565b60405180910390f35b61020c6004803603810190610207919061226a565b61062a565b60405161021991906124a2565b60405180910390f35b61022a610648565b60405161023791906125ff565b60405180910390f35b610248610652565b6040516102559190612487565b60405180910390f35b61027860048036038101906102739190612217565b610678565b60405161028591906124a2565b60405180910390f35b610296610a5e565b6040516102a39190612487565b60405180910390f35b6102b4610a84565b6040516102c1919061261a565b60405180910390f35b6102d2610a9b565b6040516102df919061261a565b60405180910390f35b61030260048036038101906102fd919061226a565b610aae565b60405161030f91906124a2565b60405180910390f35b610332600480360381019061032d91906122aa565b610b61565b005b61033c610b75565b6040516103499190612487565b60405180910390f35b61036c600480360381019061036791906121aa565b610b9b565b005b610388600480360381019061038391906121aa565b610ce1565b60405161039591906125ff565b60405180910390f35b6103a6610d2a565b6040516103b39190612487565b60405180910390f35b6103c4610d50565b005b6103ce610dee565b6040516103db91906125ff565b60405180910390f35b6103fe60048036038101906103f9919061226a565b610df4565b005b610408610ec9565b6040516104159190612487565b60405180910390f35b610426610ed8565b6040516104339190612487565b60405180910390f35b610456600480360381019061045191906121aa565b610f02565b005b610460611048565b60405161046d91906124bd565b60405180910390f35b610490600480360381019061048b91906122aa565b6110da565b005b6104ac60048036038101906104a7919061226a565b61129d565b6040516104b991906124a2565b60405180910390f35b6104dc60048036038101906104d7919061226a565b61136a565b6040516104e991906124a2565b60405180910390f35b6104fa61167f565b60405161050791906124bd565b60405180910390f35b61051861170d565b6040516105259190612487565b60405180910390f35b610536611733565b60405161054391906124bd565b60405180910390f35b610566600480360381019061056191906121d7565b6117c1565b60405161057391906125ff565b60405180910390f35b610596600480360381019061059191906121aa565b611848565b005b6060600780546105a7906127ee565b80601f01602080910402602001604051908101604052809291908181526020018280546105d3906127ee565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b600061063e610637611956565b848461195e565b6001905092915050565b6000600454905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106a26064610694600686611b2990919063ffffffff16565b611b3f90919063ffffffff16565b90506000806106bb606486611b3f90919063ffffffff16565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614806107685750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b15610797576107946064610786600289611b2990919063ffffffff16565b611b3f90919063ffffffff16565b92505b8360026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108049190612651565b60026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508260026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108d69190612651565b60026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109458883611b55565b8183856109529190612651565b61095c9190612651565b905061097c8888610976848a611d3d90919063ffffffff16565b84611d53565b610a4f88610988611956565b610a4a61099e858b611d3d90919063ffffffff16565b604051806060016040528060288152602001612b6d60289139600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a00611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b61195e565b60019450505050509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b600560009054906101000a900460ff1681565b6000610b57610abb611956565b84610b528560036000610acc611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3d90919063ffffffff16565b61195e565b6001905092915050565b610b72610b6c611956565b82611b55565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ba6611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061257f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c949061253f565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d5b611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd99061257f565b60405180910390fd5b610dec600061204d565b565b600d5481565b6000610ea682604051806060016040528060248152602001612b9560249139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e5c611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b9050610eba83610eb4611956565b8361195e565b610ec48383611b55565b505050565b6000610ed3610ed8565b905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610f0d611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061257f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061253f565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060068054611057906127ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611083906127ee565b80156110d05780601f106110a5576101008083540402835291602001916110d0565b820191906000526020600020905b8154815290600101906020018083116110b357829003601f168201915b5050505050905090565b6000806110e5611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061257f565b60405180910390fd5b600081116111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a69061255f565b60405180910390fd5b60006402540be400826111c291906126d8565b905080600460008282546111d69190612651565b9250508190555080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461122c9190612651565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161129191906125ff565b60405180910390a35050565b60006113606112aa611956565b8461135b85604051806060016040528060258152602001612bb960259139600360006112d4611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b61195e565b6001905092915050565b6000806113946064611386600686611b2990919063ffffffff16565b611b3f90919063ffffffff16565b90506000806113ad606486611b3f90919063ffffffff16565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113f2611956565b73ffffffffffffffffffffffffffffffffffffffff1614806114615750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b156114905761148d606461147f600289611b2990919063ffffffff16565b611b3f90919063ffffffff16565b92505b8360026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114fd9190612651565b60026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508260026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cf9190612651565b60026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061164561163f611956565b83611b55565b8183856116529190612651565b61165c9190612651565b9050611671611669611956565b888884611d53565b600194505050505092915050565b6006805461168c906127ee565b80601f01602080910402602001604051908101604052809291908181526020018280546116b8906127ee565b80156117055780601f106116da57610100808354040283529160200191611705565b820191906000526020600020905b8154815290600101906020018083116116e857829003601f168201915b505050505081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60078054611740906127ee565b80601f016020809104026020016040519081016040528092919081815260200182805461176c906127ee565b80156117b95780601f1061178e576101008083540402835291602001916117b9565b820191906000526020600020905b81548152906001019060200180831161179c57829003601f168201915b505050505081565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080611853611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061257f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611941906124ff565b60405180910390fd5b6119538161204d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c5906125df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a359061251f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b1c91906125ff565b60405180910390a3505050565b60008183611b3791906126d8565b905092915050565b60008183611b4d91906126a7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc9061259f565b60405180910390fd5b611bda8160045461216a90919063ffffffff16565b6004819055508060026000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c4d9190612651565b60026000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d3191906125ff565b60405180910390a35050565b60008183611d4b9190612651565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba906125bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a906124df565b60405180910390fd5b611e9f82604051806060016040528060268152602001612b4760269139600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f3f8183611ef19190612732565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3d90919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8385611fdd9190612732565b604051611fea91906125ff565b60405180910390a350505050565b6000838311158290612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203791906124bd565b60405180910390fd5b5082840390509392505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836121789190612732565b905092915050565b60008135905061218f81612b18565b92915050565b6000813590506121a481612b2f565b92915050565b6000602082840312156121c0576121bf6128ad565b5b60006121ce84828501612180565b91505092915050565b600080604083850312156121ee576121ed6128ad565b5b60006121fc85828601612180565b925050602061220d85828601612180565b9150509250929050565b6000806000606084860312156122305761222f6128ad565b5b600061223e86828701612180565b935050602061224f86828701612180565b925050604061226086828701612195565b9150509250925092565b60008060408385031215612281576122806128ad565b5b600061228f85828601612180565b92505060206122a085828601612195565b9150509250929050565b6000602082840312156122c0576122bf6128ad565b5b60006122ce84828501612195565b91505092915050565b6122e081612766565b82525050565b6122ef81612778565b82525050565b600061230082612635565b61230a8185612640565b935061231a8185602086016127bb565b612323816128b2565b840191505092915050565b600061233b602383612640565b9150612346826128c3565b604082019050919050565b600061235e602683612640565b915061236982612912565b604082019050919050565b6000612381602283612640565b915061238c82612961565b604082019050919050565b60006123a4601683612640565b91506123af826129b0565b602082019050919050565b60006123c7601883612640565b91506123d2826129d9565b602082019050919050565b60006123ea602083612640565b91506123f582612a02565b602082019050919050565b600061240d602183612640565b915061241882612a2b565b604082019050919050565b6000612430602583612640565b915061243b82612a7a565b604082019050919050565b6000612453602483612640565b915061245e82612ac9565b604082019050919050565b612472816127a4565b82525050565b612481816127ae565b82525050565b600060208201905061249c60008301846122d7565b92915050565b60006020820190506124b760008301846122e6565b92915050565b600060208201905081810360008301526124d781846122f5565b905092915050565b600060208201905081810360008301526124f88161232e565b9050919050565b6000602082019050818103600083015261251881612351565b9050919050565b6000602082019050818103600083015261253881612374565b9050919050565b6000602082019050818103600083015261255881612397565b9050919050565b60006020820190508181036000830152612578816123ba565b9050919050565b60006020820190508181036000830152612598816123dd565b9050919050565b600060208201905081810360008301526125b881612400565b9050919050565b600060208201905081810360008301526125d881612423565b9050919050565b600060208201905081810360008301526125f881612446565b9050919050565b60006020820190506126146000830184612469565b92915050565b600060208201905061262f6000830184612478565b92915050565b600081519050919050565b600082825260208201905092915050565b600061265c826127a4565b9150612667836127a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561269c5761269b612820565b5b828201905092915050565b60006126b2826127a4565b91506126bd836127a4565b9250826126cd576126cc61284f565b5b828204905092915050565b60006126e3826127a4565b91506126ee836127a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561272757612726612820565b5b828202905092915050565b600061273d826127a4565b9150612748836127a4565b92508282101561275b5761275a612820565b5b828203905092915050565b600061277182612784565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156127d95780820151818401526020810190506127be565b838111156127e8576000848401525b50505050565b6000600282049050600182168061280657607f821691505b6020821081141561281a5761281961287e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206265207a65726f206164647265737300000000000000000000600082015250565b7f53686f756c64206265206d6f7265207468616e207a65726f0000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b612b2181612766565b8114612b2c57600080fd5b50565b612b38816127a4565b8114612b4357600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f51f12aa2d7a0c270eb303ba298d79ec3e66ccaf47d4b5b0e8f74dfc27d45d1564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063a0712d68116100a2578063caac793411610071578063caac793414610510578063d28d88521461052e578063dd62ed3e1461054c578063f2fde38b1461057c576101cf565b8063a0712d6814610476578063a457c2d714610492578063a9059cbb146104c2578063b09f1266146104f2576101cf565b8063893d20e8116100de578063893d20e8146104005780638da5cb5b1461041e578063906e9dd01461043c57806395d89b4114610458576101cf565b8063715018a6146103bc57806379138df1146103c657806379cc6790146103e4576101cf565b806332424aa3116101715780634320bcf11161014b5780634320bcf1146103345780636605bfda1461035257806370a082311461036e57806370d5ae051461039e576101cf565b806332424aa3146102ca57806339509351146102e857806342966c6814610318576101cf565b80631e2a50ab116101ad5780631e2a50ab1461024057806323b872dd1461025e578063269d1faa1461028e578063313ce567146102ac576101cf565b806306fdde03146101d4578063095ea7b3146101f257806318160ddd14610222575b600080fd5b6101dc610598565b6040516101e991906124bd565b60405180910390f35b61020c6004803603810190610207919061226a565b61062a565b60405161021991906124a2565b60405180910390f35b61022a610648565b60405161023791906125ff565b60405180910390f35b610248610652565b6040516102559190612487565b60405180910390f35b61027860048036038101906102739190612217565b610678565b60405161028591906124a2565b60405180910390f35b610296610a5e565b6040516102a39190612487565b60405180910390f35b6102b4610a84565b6040516102c1919061261a565b60405180910390f35b6102d2610a9b565b6040516102df919061261a565b60405180910390f35b61030260048036038101906102fd919061226a565b610aae565b60405161030f91906124a2565b60405180910390f35b610332600480360381019061032d91906122aa565b610b61565b005b61033c610b75565b6040516103499190612487565b60405180910390f35b61036c600480360381019061036791906121aa565b610b9b565b005b610388600480360381019061038391906121aa565b610ce1565b60405161039591906125ff565b60405180910390f35b6103a6610d2a565b6040516103b39190612487565b60405180910390f35b6103c4610d50565b005b6103ce610dee565b6040516103db91906125ff565b60405180910390f35b6103fe60048036038101906103f9919061226a565b610df4565b005b610408610ec9565b6040516104159190612487565b60405180910390f35b610426610ed8565b6040516104339190612487565b60405180910390f35b610456600480360381019061045191906121aa565b610f02565b005b610460611048565b60405161046d91906124bd565b60405180910390f35b610490600480360381019061048b91906122aa565b6110da565b005b6104ac60048036038101906104a7919061226a565b61129d565b6040516104b991906124a2565b60405180910390f35b6104dc60048036038101906104d7919061226a565b61136a565b6040516104e991906124a2565b60405180910390f35b6104fa61167f565b60405161050791906124bd565b60405180910390f35b61051861170d565b6040516105259190612487565b60405180910390f35b610536611733565b60405161054391906124bd565b60405180910390f35b610566600480360381019061056191906121d7565b6117c1565b60405161057391906125ff565b60405180910390f35b610596600480360381019061059191906121aa565b611848565b005b6060600780546105a7906127ee565b80601f01602080910402602001604051908101604052809291908181526020018280546105d3906127ee565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b600061063e610637611956565b848461195e565b6001905092915050565b6000600454905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106a26064610694600686611b2990919063ffffffff16565b611b3f90919063ffffffff16565b90506000806106bb606486611b3f90919063ffffffff16565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614806107685750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b15610797576107946064610786600289611b2990919063ffffffff16565b611b3f90919063ffffffff16565b92505b8360026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108049190612651565b60026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508260026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108d69190612651565b60026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109458883611b55565b8183856109529190612651565b61095c9190612651565b905061097c8888610976848a611d3d90919063ffffffff16565b84611d53565b610a4f88610988611956565b610a4a61099e858b611d3d90919063ffffffff16565b604051806060016040528060288152602001612b6d60289139600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a00611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b61195e565b60019450505050509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900460ff16905090565b600560009054906101000a900460ff1681565b6000610b57610abb611956565b84610b528560036000610acc611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3d90919063ffffffff16565b61195e565b6001905092915050565b610b72610b6c611956565b82611b55565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ba6611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061257f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c949061253f565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d5b611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd99061257f565b60405180910390fd5b610dec600061204d565b565b600d5481565b6000610ea682604051806060016040528060248152602001612b9560249139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e5c611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b9050610eba83610eb4611956565b8361195e565b610ec48383611b55565b505050565b6000610ed3610ed8565b905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610f0d611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061257f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061253f565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060068054611057906127ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611083906127ee565b80156110d05780601f106110a5576101008083540402835291602001916110d0565b820191906000526020600020905b8154815290600101906020018083116110b357829003601f168201915b5050505050905090565b6000806110e5611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061257f565b60405180910390fd5b600081116111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a69061255f565b60405180910390fd5b60006402540be400826111c291906126d8565b905080600460008282546111d69190612651565b9250508190555080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461122c9190612651565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161129191906125ff565b60405180910390a35050565b60006113606112aa611956565b8461135b85604051806060016040528060258152602001612bb960259139600360006112d4611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b61195e565b6001905092915050565b6000806113946064611386600686611b2990919063ffffffff16565b611b3f90919063ffffffff16565b90506000806113ad606486611b3f90919063ffffffff16565b90506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113f2611956565b73ffffffffffffffffffffffffffffffffffffffff1614806114615750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b156114905761148d606461147f600289611b2990919063ffffffff16565b611b3f90919063ffffffff16565b92505b8360026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114fd9190612651565b60026000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508260026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cf9190612651565b60026000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061164561163f611956565b83611b55565b8183856116529190612651565b61165c9190612651565b9050611671611669611956565b888884611d53565b600194505050505092915050565b6006805461168c906127ee565b80601f01602080910402602001604051908101604052809291908181526020018280546116b8906127ee565b80156117055780601f106116da57610100808354040283529160200191611705565b820191906000526020600020905b8154815290600101906020018083116116e857829003601f168201915b505050505081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60078054611740906127ee565b80601f016020809104026020016040519081016040528092919081815260200182805461176c906127ee565b80156117b95780601f1061178e576101008083540402835291602001916117b9565b820191906000526020600020905b81548152906001019060200180831161179c57829003601f168201915b505050505081565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080611853611956565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d19061257f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611941906124ff565b60405180910390fd5b6119538161204d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c5906125df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a359061251f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b1c91906125ff565b60405180910390a3505050565b60008183611b3791906126d8565b905092915050565b60008183611b4d91906126a7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbc9061259f565b60405180910390fd5b611bda8160045461216a90919063ffffffff16565b6004819055508060026000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c4d9190612651565b60026000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d3191906125ff565b60405180910390a35050565b60008183611d4b9190612651565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba906125bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a906124df565b60405180910390fd5b611e9f82604051806060016040528060268152602001612b4760269139600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ff89092919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f3f8183611ef19190612732565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3d90919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8385611fdd9190612732565b604051611fea91906125ff565b60405180910390a350505050565b6000838311158290612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203791906124bd565b60405180910390fd5b5082840390509392505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836121789190612732565b905092915050565b60008135905061218f81612b18565b92915050565b6000813590506121a481612b2f565b92915050565b6000602082840312156121c0576121bf6128ad565b5b60006121ce84828501612180565b91505092915050565b600080604083850312156121ee576121ed6128ad565b5b60006121fc85828601612180565b925050602061220d85828601612180565b9150509250929050565b6000806000606084860312156122305761222f6128ad565b5b600061223e86828701612180565b935050602061224f86828701612180565b925050604061226086828701612195565b9150509250925092565b60008060408385031215612281576122806128ad565b5b600061228f85828601612180565b92505060206122a085828601612195565b9150509250929050565b6000602082840312156122c0576122bf6128ad565b5b60006122ce84828501612195565b91505092915050565b6122e081612766565b82525050565b6122ef81612778565b82525050565b600061230082612635565b61230a8185612640565b935061231a8185602086016127bb565b612323816128b2565b840191505092915050565b600061233b602383612640565b9150612346826128c3565b604082019050919050565b600061235e602683612640565b915061236982612912565b604082019050919050565b6000612381602283612640565b915061238c82612961565b604082019050919050565b60006123a4601683612640565b91506123af826129b0565b602082019050919050565b60006123c7601883612640565b91506123d2826129d9565b602082019050919050565b60006123ea602083612640565b91506123f582612a02565b602082019050919050565b600061240d602183612640565b915061241882612a2b565b604082019050919050565b6000612430602583612640565b915061243b82612a7a565b604082019050919050565b6000612453602483612640565b915061245e82612ac9565b604082019050919050565b612472816127a4565b82525050565b612481816127ae565b82525050565b600060208201905061249c60008301846122d7565b92915050565b60006020820190506124b760008301846122e6565b92915050565b600060208201905081810360008301526124d781846122f5565b905092915050565b600060208201905081810360008301526124f88161232e565b9050919050565b6000602082019050818103600083015261251881612351565b9050919050565b6000602082019050818103600083015261253881612374565b9050919050565b6000602082019050818103600083015261255881612397565b9050919050565b60006020820190508181036000830152612578816123ba565b9050919050565b60006020820190508181036000830152612598816123dd565b9050919050565b600060208201905081810360008301526125b881612400565b9050919050565b600060208201905081810360008301526125d881612423565b9050919050565b600060208201905081810360008301526125f881612446565b9050919050565b60006020820190506126146000830184612469565b92915050565b600060208201905061262f6000830184612478565b92915050565b600081519050919050565b600082825260208201905092915050565b600061265c826127a4565b9150612667836127a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561269c5761269b612820565b5b828201905092915050565b60006126b2826127a4565b91506126bd836127a4565b9250826126cd576126cc61284f565b5b828204905092915050565b60006126e3826127a4565b91506126ee836127a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561272757612726612820565b5b828202905092915050565b600061273d826127a4565b9150612748836127a4565b92508282101561275b5761275a612820565b5b828203905092915050565b600061277182612784565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156127d95780820151818401526020810190506127be565b838111156127e8576000848401525b50505050565b6000600282049050600182168061280657607f821691505b6020821081141561281a5761281961287e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206265207a65726f206164647265737300000000000000000000600082015250565b7f53686f756c64206265206d6f7265207468616e207a65726f0000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b612b2181612766565b8114612b2c57600080fd5b50565b612b38816127a4565b8114612b4357600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f51f12aa2d7a0c270eb303ba298d79ec3e66ccaf47d4b5b0e8f74dfc27d45d1564736f6c63430008070033

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.