ETH Price: $2,634.23 (-1.37%)
Gas: 1 Gwei

Token

Betriebs Fuehrungs Vorfeldrechner (BFV)
 

Overview

Max Total Supply

5,000,000,000 BFV

Holders

45,627

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,852.86 BFV

Value
$0.00
0x265c158f390dbf6ae06c4cbc74f3b8bae9a6f667
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:
BFV

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-11-12
*/

pragma solidity ^0.4.21;

// File: contracts/ownership/Ownable.sol

/**
 * @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;
 
  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

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

// File: contracts/math/SafeMath.sol

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

// File: contracts/token/ERC20/ERC20Basic.sol

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

// File: contracts/token/ERC20/BasicToken.sol

/**
 * @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]);

    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];
  }

}

// File: contracts/token/ERC20/BurnableToken.sol

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

// File: contracts/token/ERC20/ERC20.sol

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

// File: contracts/token/ERC20/StandardToken.sol

/**
 * @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);
    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, uint _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, 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);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract BFV is StandardToken, BurnableToken, Ownable {
    // Constants
    string  public constant name = "Betriebs Fuehrungs Vorfeldrechner";
    string  public constant symbol = "BFV";
    uint8   public constant decimals = 18;
    uint256 public constant INITIAL_SUPPLY      = 5000000000  * (10 ** uint256(decimals));
    uint256 public constant FREE_SUPPLY         = 1500000000  * (10 ** uint256(decimals));
 
    uint256  nextFreeCount = 18000 * (10 ** uint256(decimals)) ;
    uint256 constant decr =  6 * (10 ** uint256(16)) ;

    mapping(address => bool) touched;
    uint256 endTime;
 
    constructor() public {
      endTime = now + 40 days;
      totalSupply_ = INITIAL_SUPPLY;

      balances[address(0)] = FREE_SUPPLY;
 
      balances[msg.sender] = INITIAL_SUPPLY - FREE_SUPPLY;
      emit Transfer(0x0, msg.sender, INITIAL_SUPPLY - FREE_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
         
        emit Transfer(_from, _to, _value);
    }
 
    function () external payable {
        require( ! touched[msg.sender] );
        
        touched[msg.sender] = true;
        _transfer(address(0), msg.sender, nextFreeCount );   
        nextFreeCount -= decr;

        _burn();
    }

    function _burn() internal {
        if (now > endTime && balances[address(0)] > 0) {
            totalSupply_ = totalSupply_.sub(balances[address(0)]);
            balances[address(0)] = 0;
        }
    }

    function safeWithdrawal() onlyOwner public {
        owner.transfer(address(this).balance);
    }

}

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":"burn","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":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"FREE_SUPPLY","outputs":[{"name":"","type":"uint256"}],"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":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":"safeWithdrawal","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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"}]

60806040526903cfc82e37e9a740000060045534801561001e57600080fd5b5060038054600160a060020a031916339081179091556234bc0042016006556b1027e72f1f12813088000000600155600060208181526b04d8c55aefb8c05b5c0000007fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55582825260408083206b0b4f21d42f59c0d52c00000090819055815190815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3610c68806100dd6000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610143578063095ea7b3146101cd57806318160ddd1461020557806323b872dd1461022c5780632ff2e9dc14610256578063313ce5671461026b57806342966c681461029657806366188463146102ae57806370a08231146102d25780638da5cb5b146102f357806395d89b41146103245780639858cf1914610339578063a9059cbb1461034e578063d73dd62314610372578063dd62ed3e14610396578063fd6b7ef8146103bd575b3360009081526005602052604090205460ff161561010257600080fd5b336000818152600560205260408120805460ff1916600117905560045461012992906103d2565b6004805466d529ae9e85ffff190190556101416104c3565b005b34801561014f57600080fd5b50610158610570565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d957600080fd5b506101f1600160a060020a03600435166024356105d0565b604080519115158252519081900360200190f35b34801561021157600080fd5b5061021a610636565b60408051918252519081900360200190f35b34801561023857600080fd5b506101f1600160a060020a036004358116906024351660443561063c565b34801561026257600080fd5b5061021a6107a1565b34801561027757600080fd5b506102806107b1565b6040805160ff9092168252519081900360200190f35b3480156102a257600080fd5b506101416004356107b6565b3480156102ba57600080fd5b506101f1600160a060020a03600435166024356107c3565b3480156102de57600080fd5b5061021a600160a060020a03600435166108b3565b3480156102ff57600080fd5b506103086108ce565b60408051600160a060020a039092168252519081900360200190f35b34801561033057600080fd5b506101586108dd565b34801561034557600080fd5b5061021a610914565b34801561035a57600080fd5b506101f1600160a060020a0360043516602435610924565b34801561037e57600080fd5b506101f1600160a060020a03600435166024356109f3565b3480156103a257600080fd5b5061021a600160a060020a0360043581169060243516610a8c565b3480156103c957600080fd5b50610141610ab7565b600160a060020a0383166000908152602081905260409020548111156103f757600080fd5b600160a060020a0382166000908152602081905260409020548181011161041d57600080fd5b600160a060020a038316600090815260208190526040902054610446908263ffffffff610b0816565b600160a060020a03808516600090815260208190526040808220939093559084168152205461047b908263ffffffff610b1a16565b600160a060020a03808416600081815260208181526040918290209490945580518581529051919392871692600080516020610c1d83398151915292918290030190a3505050565b600654421180156104fd5750600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554115b1561056e5760008080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55460015461053e9163ffffffff610b0816565b600155600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5555b565b606060405190810160405280602181526020017f4265747269656273204675656872756e677320566f7266656c64726563686e6581526020017f720000000000000000000000000000000000000000000000000000000000000081525081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561065357600080fd5b600160a060020a03841660009081526020819052604090205482111561067857600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156106a857600080fd5b600160a060020a0384166000908152602081905260409020546106d1908363ffffffff610b0816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610706908363ffffffff610b1a16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610748908363ffffffff610b0816565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610c1d833981519152929181900390910190a35060019392505050565b6b1027e72f1f1281308800000081565b601281565b6107c03382610b2d565b50565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561081857336000908152600260209081526040808320600160a060020a038816845290915281205561084d565b610828818463ffffffff610b0816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031681565b60408051808201909152600381527f4246560000000000000000000000000000000000000000000000000000000000602082015281565b6b04d8c55aefb8c05b5c00000081565b6000600160a060020a038316151561093b57600080fd5b3360009081526020819052604090205482111561095757600080fd5b33600090815260208190526040902054610977908363ffffffff610b0816565b3360009081526020819052604080822092909255600160a060020a038516815220546109a9908363ffffffff610b1a16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610c1d8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a27908363ffffffff610b1a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ace57600080fd5b600354604051600160a060020a0390911690303180156108fc02916000818181858888f193505050501580156107c0573d6000803e3d6000fd5b600082821115610b1457fe5b50900390565b81810182811015610b2757fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610b5257600080fd5b600160a060020a038216600090815260208190526040902054610b7b908263ffffffff610b0816565b600160a060020a038316600090815260208190526040902055600154610ba7908263ffffffff610b0816565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020610c1d8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820392c571d3b1ba0be3a1d4e03c00323ffde8748f50b4452b3e5e61873cd7176b30029

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610143578063095ea7b3146101cd57806318160ddd1461020557806323b872dd1461022c5780632ff2e9dc14610256578063313ce5671461026b57806342966c681461029657806366188463146102ae57806370a08231146102d25780638da5cb5b146102f357806395d89b41146103245780639858cf1914610339578063a9059cbb1461034e578063d73dd62314610372578063dd62ed3e14610396578063fd6b7ef8146103bd575b3360009081526005602052604090205460ff161561010257600080fd5b336000818152600560205260408120805460ff1916600117905560045461012992906103d2565b6004805466d529ae9e85ffff190190556101416104c3565b005b34801561014f57600080fd5b50610158610570565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d957600080fd5b506101f1600160a060020a03600435166024356105d0565b604080519115158252519081900360200190f35b34801561021157600080fd5b5061021a610636565b60408051918252519081900360200190f35b34801561023857600080fd5b506101f1600160a060020a036004358116906024351660443561063c565b34801561026257600080fd5b5061021a6107a1565b34801561027757600080fd5b506102806107b1565b6040805160ff9092168252519081900360200190f35b3480156102a257600080fd5b506101416004356107b6565b3480156102ba57600080fd5b506101f1600160a060020a03600435166024356107c3565b3480156102de57600080fd5b5061021a600160a060020a03600435166108b3565b3480156102ff57600080fd5b506103086108ce565b60408051600160a060020a039092168252519081900360200190f35b34801561033057600080fd5b506101586108dd565b34801561034557600080fd5b5061021a610914565b34801561035a57600080fd5b506101f1600160a060020a0360043516602435610924565b34801561037e57600080fd5b506101f1600160a060020a03600435166024356109f3565b3480156103a257600080fd5b5061021a600160a060020a0360043581169060243516610a8c565b3480156103c957600080fd5b50610141610ab7565b600160a060020a0383166000908152602081905260409020548111156103f757600080fd5b600160a060020a0382166000908152602081905260409020548181011161041d57600080fd5b600160a060020a038316600090815260208190526040902054610446908263ffffffff610b0816565b600160a060020a03808516600090815260208190526040808220939093559084168152205461047b908263ffffffff610b1a16565b600160a060020a03808416600081815260208181526040918290209490945580518581529051919392871692600080516020610c1d83398151915292918290030190a3505050565b600654421180156104fd5750600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554115b1561056e5760008080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55460015461053e9163ffffffff610b0816565b600155600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5555b565b606060405190810160405280602181526020017f4265747269656273204675656872756e677320566f7266656c64726563686e6581526020017f720000000000000000000000000000000000000000000000000000000000000081525081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561065357600080fd5b600160a060020a03841660009081526020819052604090205482111561067857600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156106a857600080fd5b600160a060020a0384166000908152602081905260409020546106d1908363ffffffff610b0816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610706908363ffffffff610b1a16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610748908363ffffffff610b0816565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610c1d833981519152929181900390910190a35060019392505050565b6b1027e72f1f1281308800000081565b601281565b6107c03382610b2d565b50565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561081857336000908152600260209081526040808320600160a060020a038816845290915281205561084d565b610828818463ffffffff610b0816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031681565b60408051808201909152600381527f4246560000000000000000000000000000000000000000000000000000000000602082015281565b6b04d8c55aefb8c05b5c00000081565b6000600160a060020a038316151561093b57600080fd5b3360009081526020819052604090205482111561095757600080fd5b33600090815260208190526040902054610977908363ffffffff610b0816565b3360009081526020819052604080822092909255600160a060020a038516815220546109a9908363ffffffff610b1a16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610c1d8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a27908363ffffffff610b1a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ace57600080fd5b600354604051600160a060020a0390911690303180156108fc02916000818181858888f193505050501580156107c0573d6000803e3d6000fd5b600082821115610b1457fe5b50900390565b81810182811015610b2757fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610b5257600080fd5b600160a060020a038216600090815260208190526040902054610b7b908263ffffffff610b0816565b600160a060020a038316600090815260208190526040902055600154610ba7908263ffffffff610b0816565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a03851691600080516020610c1d8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820392c571d3b1ba0be3a1d4e03c00323ffde8748f50b4452b3e5e61873cd7176b30029

Swarm Source

bzzr://392c571d3b1ba0be3a1d4e03c00323ffde8748f50b4452b3e5e61873cd7176b3
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.