ETH Price: $2,289.94 (-5.36%)

Token

BFAICOIN (BFAI)
 

Overview

Max Total Supply

42,000,000 BFAI

Holders

4,993

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
90 BFAI

Value
$0.00
0x4ddc0f77ff30cdb4b8e6a32b15f1c2463018b14e
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:
TAI

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-10-26
*/

pragma solidity ^0.4.18;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
  * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }

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

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

 
/*
Full name BFAI.

*/
contract TAI is StandardToken, Ownable {
    // Constants
    string  public constant name = "BFAICOIN";
    string  public constant symbol = "BFAI";
    uint8   public constant decimals = 18;
    uint256 public constant INITIAL_SUPPLY      = 42000000 * (10 ** uint256(decimals));

    uint public amountRaised;
    uint256 public buyPrice = 50000;
    bool public crowdsaleClosed;

    function TAI() public {
      totalSupply_ = INITIAL_SUPPLY;
      balances[msg.sender] = INITIAL_SUPPLY;
      Transfer(0x0, msg.sender, INITIAL_SUPPLY);
    }

    function _transfer(address _from, address _to, uint _value) internal {     
        require (balances[_from] >= _value);               // Check if the sender has enough
        require (balances[_to] + _value > balances[_to]); // Check for overflows
   
        balances[_from] = balances[_from].sub(_value);                         // Subtract from the sender
        balances[_to] = balances[_to].add(_value);                            // Add the same to the recipient
         
        Transfer(_from, _to, _value);
    }

    function setPrices(bool closebuy, uint256 newBuyPrice) onlyOwner public {
        crowdsaleClosed = closebuy;
        buyPrice = newBuyPrice;
    }

    function () external payable {
        require(!crowdsaleClosed);
        uint amount = msg.value ;               // calculates the amount
        amountRaised = amountRaised.add(amount);
        _transfer(owner, msg.sender, amount.mul(buyPrice)); 
    }

    //Retrieve the ETH, set the parameter to 0, and retrieve it all, or retrieve the specified number of eth.
    function safeWithdrawal(uint _value ) onlyOwner public {
       if (_value == 0) 
           owner.transfer(address(this).balance);
       else
           owner.transfer(_value);
    }

    /* Batch token transfer. Used by contract creator to distribute initial tokens to holders */
    function batchTransfer(address[] _recipients, uint[] _values) onlyOwner public returns (bool) {
        require( _recipients.length > 0 && _recipients.length == _values.length);

        uint total = 0;
        for(uint i = 0; i < _values.length; i++){
            total = total.add(_values[i]);
        }
        require(total <= balances[msg.sender]);

        for(uint j = 0; j < _recipients.length; j++){
            balances[_recipients[j]] = balances[_recipients[j]].add(_values[j]);
            Transfer(msg.sender, _recipients[j], _values[j]);
        }

        balances[msg.sender] = balances[msg.sender].sub(total);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"safeWithdrawal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"amountRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"closebuy","type":"bool"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

608060405261c35060055534801561001657600080fd5b5060038054600160a060020a031916339081179091556a22bdd88fed9efc6a000000600181905560008281526020818152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3610ece806100916000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016c578063095ea7b3146101f657806318160ddd1461022e57806323b872dd146102555780632ff2e9dc1461027f578063313ce567146102945780635f56b6fe146102bf57806366188463146102d957806370a08231146102fd5780637b3e5e7b1461031e5780638620410b1461033357806388d695b2146103485780638da5cb5b146103d657806395d89b4114610407578063a9059cbb1461041c578063ccb07cef14610440578063d6bc1b3914610455578063d73dd62314610472578063dd62ed3e14610496578063f2fde38b146104bd575b60065460009060ff161561012457600080fd5b50600454349061013a908263ffffffff6104de16565b60045560035460055461016991600160a060020a031690339061016490859063ffffffff6104f816565b610523565b50005b34801561017857600080fd5b50610181610614565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bb5781810151838201526020016101a3565b50505050905090810190601f1680156101e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020257600080fd5b5061021a600160a060020a036004351660243561064b565b604080519115158252519081900360200190f35b34801561023a57600080fd5b506102436106b1565b60408051918252519081900360200190f35b34801561026157600080fd5b5061021a600160a060020a03600435811690602435166044356106b7565b34801561028b57600080fd5b5061024361081c565b3480156102a057600080fd5b506102a961082b565b6040805160ff9092168252519081900360200190f35b3480156102cb57600080fd5b506102d7600435610830565b005b3480156102e557600080fd5b5061021a600160a060020a03600435166024356108cd565b34801561030957600080fd5b50610243600160a060020a03600435166109bd565b34801561032a57600080fd5b506102436109d8565b34801561033f57600080fd5b506102436109de565b34801561035457600080fd5b506040805160206004803580820135838102808601850190965280855261021a95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506109e49650505050505050565b3480156103e257600080fd5b506103eb610bcb565b60408051600160a060020a039092168252519081900360200190f35b34801561041357600080fd5b50610181610bda565b34801561042857600080fd5b5061021a600160a060020a0360043516602435610c11565b34801561044c57600080fd5b5061021a610ce0565b34801561046157600080fd5b506102d76004351515602435610ce9565b34801561047e57600080fd5b5061021a600160a060020a0360043516602435610d17565b3480156104a257600080fd5b50610243600160a060020a0360043581169060243516610db0565b3480156104c957600080fd5b506102d7600160a060020a0360043516610ddb565b6000828201838110156104ed57fe5b8091505b5092915050565b60008083151561050b57600091506104f1565b5082820282848281151561051b57fe5b04146104ed57fe5b600160a060020a03831660009081526020819052604090205481111561054857600080fd5b600160a060020a0382166000908152602081905260409020548181011161056e57600080fd5b600160a060020a038316600090815260208190526040902054610597908263ffffffff610e7016565b600160a060020a0380851660009081526020819052604080822093909355908416815220546105cc908263ffffffff6104de16565b600160a060020a03808416600081815260208181526040918290209490945580518581529051919392871692600080516020610e8383398151915292918290030190a3505050565b60408051808201909152600881527f42464149434f494e000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a03831615156106ce57600080fd5b600160a060020a0384166000908152602081905260409020548211156106f357600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561072357600080fd5b600160a060020a03841660009081526020819052604090205461074c908363ffffffff610e7016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610781908363ffffffff6104de16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546107c3908363ffffffff610e7016565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e83833981519152929181900390910190a35060019392505050565b6a22bdd88fed9efc6a00000081565b601281565b600354600160a060020a0316331461084757600080fd5b80151561088e57600354604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610888573d6000803e3d6000fd5b506108ca565b600354604051600160a060020a039091169082156108fc029083906000818181858888f193505050501580156108c8573d6000803e3d6000fd5b505b50565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561092257336000908152600260209081526040808320600160a060020a0388168452909152812055610957565b610932818463ffffffff610e7016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60045481565b60055481565b600354600090819081908190600160a060020a03163314610a0457600080fd5b60008651118015610a16575084518651145b1515610a2157600080fd5b60009250600091505b8451821015610a6857610a5b8583815181101515610a4457fe5b60209081029091010151849063ffffffff6104de16565b9250600190910190610a2a565b33600090815260208190526040902054831115610a8457600080fd5b5060005b8551811015610b8f57610aec8582815181101515610aa257fe5b906020019060200201516000808985815181101515610abd57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff6104de16565b6000808884815181101515610afd57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558551869082908110610b2e57fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020610e838339815191528784815181101515610b6857fe5b906020019060200201516040518082815260200191505060405180910390a3600101610a88565b33600090815260208190526040902054610baf908463ffffffff610e7016565b3360009081526020819052604090205550600195945050505050565b600354600160a060020a031681565b60408051808201909152600481527f4246414900000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610c2857600080fd5b33600090815260208190526040902054821115610c4457600080fd5b33600090815260208190526040902054610c64908363ffffffff610e7016565b3360009081526020819052604080822092909255600160a060020a03851681522054610c96908363ffffffff6104de16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e838339815191529281900390910190a350600192915050565b60065460ff1681565b600354600160a060020a03163314610d0057600080fd5b6006805460ff191692151592909217909155600555565b336000908152600260209081526040808320600160a060020a0386168452909152812054610d4b908363ffffffff6104de16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610df257600080fd5b600160a060020a0381161515610e0757600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610e7c57fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582068a60b2dadf2688c9dbeb34d35962d67b5e26a243c364799442d877ff48c4a0a0029

Deployed Bytecode

0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461016c578063095ea7b3146101f657806318160ddd1461022e57806323b872dd146102555780632ff2e9dc1461027f578063313ce567146102945780635f56b6fe146102bf57806366188463146102d957806370a08231146102fd5780637b3e5e7b1461031e5780638620410b1461033357806388d695b2146103485780638da5cb5b146103d657806395d89b4114610407578063a9059cbb1461041c578063ccb07cef14610440578063d6bc1b3914610455578063d73dd62314610472578063dd62ed3e14610496578063f2fde38b146104bd575b60065460009060ff161561012457600080fd5b50600454349061013a908263ffffffff6104de16565b60045560035460055461016991600160a060020a031690339061016490859063ffffffff6104f816565b610523565b50005b34801561017857600080fd5b50610181610614565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bb5781810151838201526020016101a3565b50505050905090810190601f1680156101e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020257600080fd5b5061021a600160a060020a036004351660243561064b565b604080519115158252519081900360200190f35b34801561023a57600080fd5b506102436106b1565b60408051918252519081900360200190f35b34801561026157600080fd5b5061021a600160a060020a03600435811690602435166044356106b7565b34801561028b57600080fd5b5061024361081c565b3480156102a057600080fd5b506102a961082b565b6040805160ff9092168252519081900360200190f35b3480156102cb57600080fd5b506102d7600435610830565b005b3480156102e557600080fd5b5061021a600160a060020a03600435166024356108cd565b34801561030957600080fd5b50610243600160a060020a03600435166109bd565b34801561032a57600080fd5b506102436109d8565b34801561033f57600080fd5b506102436109de565b34801561035457600080fd5b506040805160206004803580820135838102808601850190965280855261021a95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506109e49650505050505050565b3480156103e257600080fd5b506103eb610bcb565b60408051600160a060020a039092168252519081900360200190f35b34801561041357600080fd5b50610181610bda565b34801561042857600080fd5b5061021a600160a060020a0360043516602435610c11565b34801561044c57600080fd5b5061021a610ce0565b34801561046157600080fd5b506102d76004351515602435610ce9565b34801561047e57600080fd5b5061021a600160a060020a0360043516602435610d17565b3480156104a257600080fd5b50610243600160a060020a0360043581169060243516610db0565b3480156104c957600080fd5b506102d7600160a060020a0360043516610ddb565b6000828201838110156104ed57fe5b8091505b5092915050565b60008083151561050b57600091506104f1565b5082820282848281151561051b57fe5b04146104ed57fe5b600160a060020a03831660009081526020819052604090205481111561054857600080fd5b600160a060020a0382166000908152602081905260409020548181011161056e57600080fd5b600160a060020a038316600090815260208190526040902054610597908263ffffffff610e7016565b600160a060020a0380851660009081526020819052604080822093909355908416815220546105cc908263ffffffff6104de16565b600160a060020a03808416600081815260208181526040918290209490945580518581529051919392871692600080516020610e8383398151915292918290030190a3505050565b60408051808201909152600881527f42464149434f494e000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a03831615156106ce57600080fd5b600160a060020a0384166000908152602081905260409020548211156106f357600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561072357600080fd5b600160a060020a03841660009081526020819052604090205461074c908363ffffffff610e7016565b600160a060020a038086166000908152602081905260408082209390935590851681522054610781908363ffffffff6104de16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546107c3908363ffffffff610e7016565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e83833981519152929181900390910190a35060019392505050565b6a22bdd88fed9efc6a00000081565b601281565b600354600160a060020a0316331461084757600080fd5b80151561088e57600354604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610888573d6000803e3d6000fd5b506108ca565b600354604051600160a060020a039091169082156108fc029083906000818181858888f193505050501580156108c8573d6000803e3d6000fd5b505b50565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561092257336000908152600260209081526040808320600160a060020a0388168452909152812055610957565b610932818463ffffffff610e7016565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60045481565b60055481565b600354600090819081908190600160a060020a03163314610a0457600080fd5b60008651118015610a16575084518651145b1515610a2157600080fd5b60009250600091505b8451821015610a6857610a5b8583815181101515610a4457fe5b60209081029091010151849063ffffffff6104de16565b9250600190910190610a2a565b33600090815260208190526040902054831115610a8457600080fd5b5060005b8551811015610b8f57610aec8582815181101515610aa257fe5b906020019060200201516000808985815181101515610abd57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff6104de16565b6000808884815181101515610afd57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558551869082908110610b2e57fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020610e838339815191528784815181101515610b6857fe5b906020019060200201516040518082815260200191505060405180910390a3600101610a88565b33600090815260208190526040902054610baf908463ffffffff610e7016565b3360009081526020819052604090205550600195945050505050565b600354600160a060020a031681565b60408051808201909152600481527f4246414900000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610c2857600080fd5b33600090815260208190526040902054821115610c4457600080fd5b33600090815260208190526040902054610c64908363ffffffff610e7016565b3360009081526020819052604080822092909255600160a060020a03851681522054610c96908363ffffffff6104de16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e838339815191529281900390910190a350600192915050565b60065460ff1681565b600354600160a060020a03163314610d0057600080fd5b6006805460ff191692151592909217909155600555565b336000908152600260209081526040808320600160a060020a0386168452909152812054610d4b908363ffffffff6104de16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610df257600080fd5b600160a060020a0381161515610e0757600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610e7c57fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582068a60b2dadf2688c9dbeb34d35962d67b5e26a243c364799442d877ff48c4a0a0029

Swarm Source

bzzr://68a60b2dadf2688c9dbeb34d35962d67b5e26a243c364799442d877ff48c4a0a
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.