ETH Price: $1,587.63 (-0.35%)
Gas: 8 Gwei
 

Overview

Max Total Supply

1,000,000,000 BFF

Holders

110 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Fully Diluted Market Cap

$211,390.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BITCOFFEEN® is a structure without middle parties, which is available to anyone who is willing to join. - By integrating modern blockchain technologies, we share the profits from the BITCOFFEEN® trading network with all of you!

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 BFF
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bitcoffeen

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2019-12-31
*/

pragma solidity >=0.4.21 <0.7.0;

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * 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 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 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    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 _a / _b;
  }

  /**
  * @dev Subtracts 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 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}


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

  mapping(address => uint256) internal balances;

  uint256 internal 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(_value <= balances[msg.sender]);
    require(_to != address(0));

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit 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) {
    return balances[_owner];
  }

}


/**
 * @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 Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * 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(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit 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;
    emit 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,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit 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,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue >= oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}


contract Bitcoffeen is StandardToken {
  string public name = 'Bitcoffeen';
  string public symbol = 'BFF';
  uint public decimals = 8;
  uint public INITIAL_SUPPLY = 100000000000000000;

constructor() public {
    totalSupply_ = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

60c0604052600a60808190527f426974636f666665656e0000000000000000000000000000000000000000000060a090815261003e91600391906100bf565b506040805180820190915260038082527f42464600000000000000000000000000000000000000000000000000000000006020909201918252610083916004916100bf565b50600860055567016345785d8a00006006553480156100a157600080fd5b5060065460018190553360009081526020819052604090205561015a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061010057805160ff191683800117855561012d565b8280016001018555821561012d579182015b8281111561012d578251825591602001919060010190610112565b5061013992915061013d565b5090565b61015791905b808211156101395760008155600101610143565b90565b61088f806101696000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063661884631161007157806366188463146101d657806370a082311461020257806395d89b4114610228578063a9059cbb14610230578063d73dd6231461025c578063dd62ed3e14610288576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd146101905780632ff2e9dc146101c6578063313ce567146101ce575b600080fd5b6100c16102b6565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610344565b604080519115158252519081900360200190f35b61017e6103aa565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b038135811691602081013590911690604001356103b0565b61017e610523565b61017e610529565b610162600480360360408110156101ec57600080fd5b506001600160a01b03813516906020013561052f565b61017e6004803603602081101561021857600080fd5b50356001600160a01b031661061e565b6100c1610639565b6101626004803603604081101561024657600080fd5b506001600160a01b038135169060200135610694565b6101626004803603604081101561027257600080fd5b506001600160a01b038135169060200135610771565b61017e6004803603604081101561029e57600080fd5b506001600160a01b038135811691602001351661080a565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561033c5780601f106103115761010080835404028352916020019161033c565b820191906000526020600020905b81548152906001019060200180831161031f57829003601f168201915b505050505081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6001600160a01b0383166000908152602081905260408120548211156103d557600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561040557600080fd5b6001600160a01b03831661041857600080fd5b6001600160a01b038416600090815260208190526040902054610441908363ffffffff61083516565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610476908363ffffffff61084716565b6001600160a01b038085166000908152602081815260408083209490945591871681526002825282812033825290915220546104b8908363ffffffff61083516565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60065481565b60055481565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808310610583573360009081526002602090815260408083206001600160a01b03881684529091528120556105b8565b610593818463ffffffff61083516565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526020819052604090205490565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561033c5780601f106103115761010080835404028352916020019161033c565b336000908152602081905260408120548211156106b057600080fd5b6001600160a01b0383166106c357600080fd5b336000908152602081905260409020546106e3908363ffffffff61083516565b33600090815260208190526040808220929092556001600160a01b03851681522054610715908363ffffffff61084716565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b3360009081526002602090815260408083206001600160a01b03861684529091528120546107a5908363ffffffff61084716565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561084157fe5b50900390565b8181018281101561085457fe5b9291505056fea265627a7a72315820567b840deb81dda6dd612b0b7b2c36950e8d3c55f8920a95470658b5a93172bb64736f6c634300050c0032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063661884631161007157806366188463146101d657806370a082311461020257806395d89b4114610228578063a9059cbb14610230578063d73dd6231461025c578063dd62ed3e14610288576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd146101905780632ff2e9dc146101c6578063313ce567146101ce575b600080fd5b6100c16102b6565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610344565b604080519115158252519081900360200190f35b61017e6103aa565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b038135811691602081013590911690604001356103b0565b61017e610523565b61017e610529565b610162600480360360408110156101ec57600080fd5b506001600160a01b03813516906020013561052f565b61017e6004803603602081101561021857600080fd5b50356001600160a01b031661061e565b6100c1610639565b6101626004803603604081101561024657600080fd5b506001600160a01b038135169060200135610694565b6101626004803603604081101561027257600080fd5b506001600160a01b038135169060200135610771565b61017e6004803603604081101561029e57600080fd5b506001600160a01b038135811691602001351661080a565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561033c5780601f106103115761010080835404028352916020019161033c565b820191906000526020600020905b81548152906001019060200180831161031f57829003601f168201915b505050505081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6001600160a01b0383166000908152602081905260408120548211156103d557600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561040557600080fd5b6001600160a01b03831661041857600080fd5b6001600160a01b038416600090815260208190526040902054610441908363ffffffff61083516565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610476908363ffffffff61084716565b6001600160a01b038085166000908152602081815260408083209490945591871681526002825282812033825290915220546104b8908363ffffffff61083516565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60065481565b60055481565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808310610583573360009081526002602090815260408083206001600160a01b03881684529091528120556105b8565b610593818463ffffffff61083516565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526020819052604090205490565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561033c5780601f106103115761010080835404028352916020019161033c565b336000908152602081905260408120548211156106b057600080fd5b6001600160a01b0383166106c357600080fd5b336000908152602081905260409020546106e3908363ffffffff61083516565b33600090815260208190526040808220929092556001600160a01b03851681522054610715908363ffffffff61084716565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b3360009081526002602090815260408083206001600160a01b03861684529091528120546107a5908363ffffffff61084716565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60008282111561084157fe5b50900390565b8181018281101561085457fe5b9291505056fea265627a7a72315820567b840deb81dda6dd612b0b7b2c36950e8d3c55f8920a95470658b5a93172bb64736f6c634300050c0032

Deployed Bytecode Sourcemap

7737:302:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7737:302:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7779:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7779:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5360:192;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5360:192:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2175:85;;;:::i;:::-;;;;;;;;;;;;;;;;4244:487;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4244:487:0;;;;;;;;;;;;;;;;;:::i;7879:47::-;;;:::i;7850:24::-;;;:::i;7279:447::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7279:447:0;;;;;;;;:::i;2959:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2959:101:0;-1:-1:-1;;;;;2959:101:0;;:::i;7817:28::-;;;:::i;2421:329::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2421:329:0;;;;;;;;:::i;6504:307::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6504:307:0;;;;;;;;:::i;5879:162::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5879:162:0;;;;;;;;;;:::i;7779:33::-;;;;;;;;;;;;;;;-1:-1:-1;;7779:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5360:192::-;5448:10;5427:4;5440:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5440:29:0;;;;;;;;;;;:38;;;5490;;;;;;;5427:4;;5440:29;;5448:10;;5490:38;;;;;;;;-1:-1:-1;5542:4:0;5360:192;;;;:::o;2175:85::-;2242:12;;2175:85;:::o;4244:487::-;-1:-1:-1;;;;;4390:15:0;;4356:4;4390:15;;;;;;;;;;;4380:25;;;4372:34;;;;;;-1:-1:-1;;;;;4431:14:0;;;;;;:7;:14;;;;;;;;4446:10;4431:26;;;;;;;;4421:36;;;4413:45;;;;;;-1:-1:-1;;;;;4473:17:0;;4465:26;;;;;;-1:-1:-1;;;;;4518:15:0;;:8;:15;;;;;;;;;;;:27;;4538:6;4518:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4500:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4568:13;;;;;;;:25;;4586:6;4568:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4552:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4629:14;;;;;:7;:14;;;;;4644:10;4629:26;;;;;;;:38;;4660:6;4629:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4600:14:0;;;;;;;:7;:14;;;;;;;;4615:10;4600:26;;;;;;;;:67;;;;4679:28;;;;;;;;;;;4600:14;;4679:28;;;;;;;;;;;-1:-1:-1;4721:4:0;4244:487;;;;;:::o;7879:47::-;;;;:::o;7850:24::-;;;;:::o;7279:447::-;7433:10;7390:4;7425:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7425:29:0;;;;;;;;;;7465:28;;;7461:169;;7512:10;7536:1;7504:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7504:29:0;;;;;;;;;:33;7461:169;;;7592:30;:8;7605:16;7592:30;:12;:30;:::i;:::-;7568:10;7560:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7560:29:0;;;;;;;;;:62;7461:169;7650:10;7672:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7641:61:0;;7672:29;;;;;;;;;;;7641:61;;;;;;;;;7650:10;7641:61;;;;;;;;;;;-1:-1:-1;7716:4:0;;7279:447;-1:-1:-1;;;7279:447:0:o;2959:101::-;-1:-1:-1;;;;;3038:16:0;3015:7;3038:16;;;;;;;;;;;;2959:101::o;7817:28::-;;;;;;;;;;;;;;;-1:-1:-1;;7817:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2421:329;2524:10;2484:4;2515:20;;;;;;;;;;;2505:30;;;2497:39;;;;;;-1:-1:-1;;;;;2551:17:0;;2543:26;;;;;;2610:10;2601:8;:20;;;;;;;;;;;:32;;2626:6;2601:32;:24;:32;:::i;:::-;2587:10;2578:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2656:13:0;;;;;;:25;;2674:6;2656:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2640:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2693:33;;;;;;;2640:13;;2702:10;;2693:33;;;;;;;;;;-1:-1:-1;2740:4:0;2421:329;;;;:::o;6504:307::-;6675:10;6610:4;6667:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6667:29:0;;;;;;;;;;:46;;6701:11;6667:46;:33;:46;:::i;:::-;6634:10;6626:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6626:29:0;;;;;;;;;;;;:88;;;6726:61;;;;;;6626:29;;6726:61;;;;;;;;;;;-1:-1:-1;6801:4:0;6504:307;;;;:::o;5879:162::-;-1:-1:-1;;;;;6010:15:0;;;5984:7;6010:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5879:162::o;1535:119::-;1595:7;1624:2;1618;:8;;1611:16;;;;-1:-1:-1;1641:7:0;;;1535:119::o;1721:132::-;1803:7;;;1824;;;;1817:15;;;;1721:132;;;;:::o

Swarm Source

bzzr://567b840deb81dda6dd612b0b7b2c36950e8d3c55f8920a95470658b5a93172bb
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.