ETH Price: $3,043.73 (+2.72%)
Gas: 2 Gwei

Token

BitRewards Token (BIT)
 

Overview

Max Total Supply

544,070,955.583746171534 BIT

Holders

12,535 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
640 BIT

Value
$0.00
0x2d07d53c82978fdce1dae5d5dee38923f520dd63
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cashback & loyalty points in cryptocurrency.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BITToken

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-08
*/

pragma solidity ^0.4.13;

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

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));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract BITVesting is Ownable {

    BITToken public token;
    uint256 public releaseDate;

    function BITVesting (
        BITToken _token,
        address _beneficiary,
        uint256 _releaseDate
        ) public {

        token = _token;
        releaseDate = _releaseDate;
        owner = _beneficiary;
    }

    /* After vesting period, this function transfers all available tokens
     * from it's account to `_recipient` address. This address could either be
     * a wallet or another smart contract. If the transfer was successful, it
     * selfdestructs the contract.
     */
    function claim (
        address _recipient,
        bytes _data
        ) external onlyOwner returns (bool success) {

        require(_recipient != address(0));
        require(block.timestamp > releaseDate);
        uint256 funds = token.balanceOf(this);
        require(token.transfer(_recipient, funds));
        // require(token.transfer(_recipient, funds, _data)); // ERC-20 compatible string
        selfdestruct(msg.sender);
        return true;
    }

    /* From: https://github.com/ethereum/EIPs/issues/223
     *
     * A function for handling token transfers, which is called from the token
     * contract, when a token holder sends tokens. `_from` is the address of the
     * sender of the token, `_value` is the amount of incoming tokens, and
     * `_data` is attached data similar to `msg.data` of Ether transactions.
     * It works by analogy with the fallback function of Ether transactions and
     * returns nothing.
     */
    function tokenFallback(
        address _from,
        uint _value,
        bytes _data
        ) external view {

        require(msg.sender == address(token));
    }
}

contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    emit Unpause();
  }
}

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

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 balance) {
    return balances[_owner];
  }

}

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

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 MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

contract PausableToken is StandardToken, Pausable {

  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }

  function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}

contract BITToken is MintableToken, PausableToken {

    event Vested(address indexed beneficiary, address indexed vestingContract, uint256 releaseDate, uint256 amount);
    event BITTransfer(address indexed _from, address indexed _to, uint256 _value, bytes32 data);

    uint256 public constant decimals = 18;
    string public constant name = "BitRewards Token";
    string public constant symbol = "BIT";

    function BITToken () public MintableToken() {

    }

    function transfer (address _to, uint256 _value, bytes32 _data) public returns(bool res) {
        if (PausableToken.transfer(_to, _value)) {
            emit BITTransfer(msg.sender, _to, _value, _data);
            return true;
        }
    }

    function transferFrom (address _from, address _to, uint256 _value, bytes32 _data) public returns(bool res) {
        if (PausableToken.transferFrom(_from, _to, _value)) {
            emit BITTransfer(_from, _to, _value, _data);
            return true;
        }
    }


    function vest(
        address _beneficiary,
        uint256 _releaseDate,
        uint256 _amount
    )
        public onlyOwner canMint returns (address)
    {
        address vestingContract = new BITVesting(
            this,
            _beneficiary,
            _releaseDate
        );
        assert (vestingContract != 0x0);
        require(mint(vestingContract, _amount));
        emit Vested(_beneficiary, address(vestingContract), _releaseDate, _amount);
        return vestingContract;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_releaseDate","type":"uint256"},{"name":"_amount","type":"uint256"}],"name":"vest","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes32"}],"name":"transferFrom","outputs":[{"name":"res","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes32"}],"name":"transfer","outputs":[{"name":"res","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","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":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":true,"name":"vestingContract","type":"address"},{"indexed":false,"name":"releaseDate","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Vested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes32"}],"name":"BITTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"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"}]

60806040526003805460a060020a61ffff021916905534801561002157600080fd5b5060038054600160a060020a03191633600160a060020a031617905561167c8061004c6000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a5780632546de1014610254578063313ce567146102975780633f4ba83a146102ac578063401e3367146102c357806340c10f19146102f057806357cfeeee146103145780635c975abb1461033b578063661884631461035057806370a08231146103745780637d64bcb4146103955780638456cb59146103aa5780638da5cb5b146103bf57806395d89b41146103d4578063a9059cbb146103e9578063d73dd6231461040d578063dd62ed3e14610431578063f2fde38b14610458575b600080fd5b34801561013857600080fd5b50610141610479565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a61049a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a03600435166024356104d1565b34801561020f57600080fd5b5061021861050e565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a0360043581169060243516604435610514565b34801561026057600080fd5b5061027b600160a060020a0360043516602435604435610553565b60408051600160a060020a039092168252519081900360200190f35b3480156102a357600080fd5b50610218610669565b3480156102b857600080fd5b506102c161066e565b005b3480156102cf57600080fd5b50610141600160a060020a03600435811690602435166044356064356106fd565b3480156102fc57600080fd5b50610141600160a060020a0360043516602435610765565b34801561032057600080fd5b50610141600160a060020a0360043516602435604435610884565b34801561034757600080fd5b506101416108e9565b34801561035c57600080fd5b50610141600160a060020a036004351660243561090b565b34801561038057600080fd5b50610218600160a060020a0360043516610941565b3480156103a157600080fd5b5061014161095c565b3480156103b657600080fd5b506102c1610a10565b3480156103cb57600080fd5b5061027b610ab6565b3480156103e057600080fd5b5061016a610ac5565b3480156103f557600080fd5b50610141600160a060020a0360043516602435610afc565b34801561041957600080fd5b50610141600160a060020a0360043516602435610b32565b34801561043d57600080fd5b50610218600160a060020a0360043581169060243516610b68565b34801561046457600080fd5b506102c1600160a060020a0360043516610b93565b60035474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152601081527f4269745265776172647320546f6b656e00000000000000000000000000000000602082015281565b6003546000907501000000000000000000000000000000000000000000900460ff16156104fd57600080fd5b6105078383610c37565b9392505050565b60015490565b6003546000907501000000000000000000000000000000000000000000900460ff161561054057600080fd5b61054b848484610ca1565b949350505050565b600354600090819033600160a060020a0390811691161461057357600080fd5b60035474010000000000000000000000000000000000000000900460ff161561059b57600080fd5b3085856105a66110da565b600160a060020a039384168152919092166020820152604080820192909252905190819003606001906000f0801580156105e4573d6000803e3d6000fd5b509050600160a060020a03811615156105f957fe5b6106038184610765565b151561060e57600080fd5b80600160a060020a031685600160a060020a03167f6d06f0a463d80b43fe6cd0b79c61bb2790cfe898790e69828f25e6e12886e1788686604051808381526020018281526020019250505060405180910390a3949350505050565b601281565b60035433600160a060020a0390811691161461068957600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615156106b357600080fd5b6003805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600061070a858585610514565b1561054b5760408051848152602081018490528151600160a060020a0380881693908916927f3c1060a8ab07951b1bc641f8b8e35ab86329feac6e4565aac49ba3a168b9a1bb929081900390910190a3506001949350505050565b60035460009033600160a060020a0390811691161461078357600080fd5b60035474010000000000000000000000000000000000000000900460ff16156107ab57600080fd5b6001546107be908363ffffffff610e2116565b600155600160a060020a0383166000908152602081905260409020546107ea908363ffffffff610e2116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60006108908484610afc565b156105075760408051848152602081018490528151600160a060020a038088169333909116927f3c1060a8ab07951b1bc641f8b8e35ab86329feac6e4565aac49ba3a168b9a1bb929081900390910190a3506001610507565b6003547501000000000000000000000000000000000000000000900460ff1681565b6003546000907501000000000000000000000000000000000000000000900460ff161561093757600080fd5b6105078383610e34565b600160a060020a031660009081526020819052604090205490565b60035460009033600160a060020a0390811691161461097a57600080fd5b60035474010000000000000000000000000000000000000000900460ff16156109a257600080fd5b600380547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60035433600160a060020a03908116911614610a2b57600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615610a5457600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4249540000000000000000000000000000000000000000000000000000000000602082015281565b6003546000907501000000000000000000000000000000000000000000900460ff1615610b2857600080fd5b6105078383610f2d565b6003546000907501000000000000000000000000000000000000000000900460ff1615610b5e57600080fd5b6105078383611026565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610bae57600080fd5b600160a060020a0381161515610bc357600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380547fffffffffffffffffffffffff000000000000000000000000000000000000000016600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6000600160a060020a0383161515610cb857600080fd5b600160a060020a038416600090815260208190526040902054821115610cdd57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610d1057600080fd5b600160a060020a038416600090815260208190526040902054610d39908363ffffffff6110c816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610d6e908363ffffffff610e2116565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610db4908363ffffffff6110c816565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b81810182811015610e2e57fe5b92915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610e9157600160a060020a033381166000908152600260209081526040808320938816835292905290812055610ec8565b610ea1818463ffffffff6110c816565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b6000600160a060020a0383161515610f4457600080fd5b600160a060020a033316600090815260208190526040902054821115610f6957600080fd5b600160a060020a033316600090815260208190526040902054610f92908363ffffffff6110c816565b600160a060020a033381166000908152602081905260408082209390935590851681522054610fc7908363ffffffff610e2116565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461105e908363ffffffff610e2116565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b6000828211156110d457fe5b50900390565b604051610566806110eb833901905600608060405234801561001057600080fd5b506040516060806105668339810160409081528151602083015191909201516000805460018054600160a060020a0319908116600160a060020a0397881617909155600293909355821633851617909116929091169190911781556104eb90819061007b90396000f3006080604052600436106100775763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416638da5cb5b811461007c578063b9e3e2db146100ba578063bb1757cf146100e1578063c0ee0b8a1461012f578063f2fde38b1461016f578063fc0c546a1461019d575b600080fd5b34801561008857600080fd5b506100916101b2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156100c657600080fd5b506100cf6101ce565b60408051918252519081900360200190f35b3480156100ed57600080fd5b5061011b6004803573ffffffffffffffffffffffffffffffffffffffff1690602480359081019101356101d4565b604080519115158252519081900360200190f35b34801561013b57600080fd5b5061016d6004803573ffffffffffffffffffffffffffffffffffffffff1690602480359160443591820191013561039e565b005b34801561017b57600080fd5b5061016d73ffffffffffffffffffffffffffffffffffffffff600435166103cc565b3480156101a957600080fd5b506100916104a3565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b6000805481903373ffffffffffffffffffffffffffffffffffffffff9081169116146101ff57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8516151561022157600080fd5b600254421161022f57600080fd5b600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff3081166004830152915191909216916370a082319160248083019260209291908290030181600087803b1580156102a457600080fd5b505af11580156102b8573d6000803e3d6000fd5b505050506040513d60208110156102ce57600080fd5b5051600154604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff898116600483015260248201859052915193945091169163a9059cbb916044808201926020929091908290030181600087803b15801561034e57600080fd5b505af1158015610362573d6000803e3d6000fd5b505050506040513d602081101561037857600080fd5b5051151561038557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16ff5b6001543373ffffffffffffffffffffffffffffffffffffffff9081169116146103c657600080fd5b50505050565b6000543373ffffffffffffffffffffffffffffffffffffffff9081169116146103f457600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116151561041657600080fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a72305820f9afa7de34899dbc3e9ce8e61527265d111ff06a5a65c5d8853e881ee5b84c050029a165627a7a72305820d42bcb4abea6440399547213e48a534406fdabe67c1bba9fc4903f314e0fe9d90029

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a5780632546de1014610254578063313ce567146102975780633f4ba83a146102ac578063401e3367146102c357806340c10f19146102f057806357cfeeee146103145780635c975abb1461033b578063661884631461035057806370a08231146103745780637d64bcb4146103955780638456cb59146103aa5780638da5cb5b146103bf57806395d89b41146103d4578063a9059cbb146103e9578063d73dd6231461040d578063dd62ed3e14610431578063f2fde38b14610458575b600080fd5b34801561013857600080fd5b50610141610479565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a61049a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a03600435166024356104d1565b34801561020f57600080fd5b5061021861050e565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a0360043581169060243516604435610514565b34801561026057600080fd5b5061027b600160a060020a0360043516602435604435610553565b60408051600160a060020a039092168252519081900360200190f35b3480156102a357600080fd5b50610218610669565b3480156102b857600080fd5b506102c161066e565b005b3480156102cf57600080fd5b50610141600160a060020a03600435811690602435166044356064356106fd565b3480156102fc57600080fd5b50610141600160a060020a0360043516602435610765565b34801561032057600080fd5b50610141600160a060020a0360043516602435604435610884565b34801561034757600080fd5b506101416108e9565b34801561035c57600080fd5b50610141600160a060020a036004351660243561090b565b34801561038057600080fd5b50610218600160a060020a0360043516610941565b3480156103a157600080fd5b5061014161095c565b3480156103b657600080fd5b506102c1610a10565b3480156103cb57600080fd5b5061027b610ab6565b3480156103e057600080fd5b5061016a610ac5565b3480156103f557600080fd5b50610141600160a060020a0360043516602435610afc565b34801561041957600080fd5b50610141600160a060020a0360043516602435610b32565b34801561043d57600080fd5b50610218600160a060020a0360043581169060243516610b68565b34801561046457600080fd5b506102c1600160a060020a0360043516610b93565b60035474010000000000000000000000000000000000000000900460ff1681565b60408051808201909152601081527f4269745265776172647320546f6b656e00000000000000000000000000000000602082015281565b6003546000907501000000000000000000000000000000000000000000900460ff16156104fd57600080fd5b6105078383610c37565b9392505050565b60015490565b6003546000907501000000000000000000000000000000000000000000900460ff161561054057600080fd5b61054b848484610ca1565b949350505050565b600354600090819033600160a060020a0390811691161461057357600080fd5b60035474010000000000000000000000000000000000000000900460ff161561059b57600080fd5b3085856105a66110da565b600160a060020a039384168152919092166020820152604080820192909252905190819003606001906000f0801580156105e4573d6000803e3d6000fd5b509050600160a060020a03811615156105f957fe5b6106038184610765565b151561060e57600080fd5b80600160a060020a031685600160a060020a03167f6d06f0a463d80b43fe6cd0b79c61bb2790cfe898790e69828f25e6e12886e1788686604051808381526020018281526020019250505060405180910390a3949350505050565b601281565b60035433600160a060020a0390811691161461068957600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615156106b357600080fd5b6003805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600061070a858585610514565b1561054b5760408051848152602081018490528151600160a060020a0380881693908916927f3c1060a8ab07951b1bc641f8b8e35ab86329feac6e4565aac49ba3a168b9a1bb929081900390910190a3506001949350505050565b60035460009033600160a060020a0390811691161461078357600080fd5b60035474010000000000000000000000000000000000000000900460ff16156107ab57600080fd5b6001546107be908363ffffffff610e2116565b600155600160a060020a0383166000908152602081905260409020546107ea908363ffffffff610e2116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60006108908484610afc565b156105075760408051848152602081018490528151600160a060020a038088169333909116927f3c1060a8ab07951b1bc641f8b8e35ab86329feac6e4565aac49ba3a168b9a1bb929081900390910190a3506001610507565b6003547501000000000000000000000000000000000000000000900460ff1681565b6003546000907501000000000000000000000000000000000000000000900460ff161561093757600080fd5b6105078383610e34565b600160a060020a031660009081526020819052604090205490565b60035460009033600160a060020a0390811691161461097a57600080fd5b60035474010000000000000000000000000000000000000000900460ff16156109a257600080fd5b600380547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60035433600160a060020a03908116911614610a2b57600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615610a5457600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4249540000000000000000000000000000000000000000000000000000000000602082015281565b6003546000907501000000000000000000000000000000000000000000900460ff1615610b2857600080fd5b6105078383610f2d565b6003546000907501000000000000000000000000000000000000000000900460ff1615610b5e57600080fd5b6105078383611026565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610bae57600080fd5b600160a060020a0381161515610bc357600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380547fffffffffffffffffffffffff000000000000000000000000000000000000000016600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6000600160a060020a0383161515610cb857600080fd5b600160a060020a038416600090815260208190526040902054821115610cdd57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610d1057600080fd5b600160a060020a038416600090815260208190526040902054610d39908363ffffffff6110c816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610d6e908363ffffffff610e2116565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610db4908363ffffffff6110c816565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b81810182811015610e2e57fe5b92915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610e9157600160a060020a033381166000908152600260209081526040808320938816835292905290812055610ec8565b610ea1818463ffffffff6110c816565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b6000600160a060020a0383161515610f4457600080fd5b600160a060020a033316600090815260208190526040902054821115610f6957600080fd5b600160a060020a033316600090815260208190526040902054610f92908363ffffffff6110c816565b600160a060020a033381166000908152602081905260408082209390935590851681522054610fc7908363ffffffff610e2116565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461105e908363ffffffff610e2116565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b6000828211156110d457fe5b50900390565b604051610566806110eb833901905600608060405234801561001057600080fd5b506040516060806105668339810160409081528151602083015191909201516000805460018054600160a060020a0319908116600160a060020a0397881617909155600293909355821633851617909116929091169190911781556104eb90819061007b90396000f3006080604052600436106100775763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416638da5cb5b811461007c578063b9e3e2db146100ba578063bb1757cf146100e1578063c0ee0b8a1461012f578063f2fde38b1461016f578063fc0c546a1461019d575b600080fd5b34801561008857600080fd5b506100916101b2565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156100c657600080fd5b506100cf6101ce565b60408051918252519081900360200190f35b3480156100ed57600080fd5b5061011b6004803573ffffffffffffffffffffffffffffffffffffffff1690602480359081019101356101d4565b604080519115158252519081900360200190f35b34801561013b57600080fd5b5061016d6004803573ffffffffffffffffffffffffffffffffffffffff1690602480359160443591820191013561039e565b005b34801561017b57600080fd5b5061016d73ffffffffffffffffffffffffffffffffffffffff600435166103cc565b3480156101a957600080fd5b506100916104a3565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b6000805481903373ffffffffffffffffffffffffffffffffffffffff9081169116146101ff57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8516151561022157600080fd5b600254421161022f57600080fd5b600154604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff3081166004830152915191909216916370a082319160248083019260209291908290030181600087803b1580156102a457600080fd5b505af11580156102b8573d6000803e3d6000fd5b505050506040513d60208110156102ce57600080fd5b5051600154604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff898116600483015260248201859052915193945091169163a9059cbb916044808201926020929091908290030181600087803b15801561034e57600080fd5b505af1158015610362573d6000803e3d6000fd5b505050506040513d602081101561037857600080fd5b5051151561038557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16ff5b6001543373ffffffffffffffffffffffffffffffffffffffff9081169116146103c657600080fd5b50505050565b6000543373ffffffffffffffffffffffffffffffffffffffff9081169116146103f457600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116151561041657600080fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a72305820f9afa7de34899dbc3e9ce8e61527265d111ff06a5a65c5d8853e881ee5b84c050029a165627a7a72305820d42bcb4abea6440399547213e48a534406fdabe67c1bba9fc4903f314e0fe9d90029

Swarm Source

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