ETH Price: $3,167.09 (-7.53%)

Token

COSS Fee Token (CFT)
 

Overview

Max Total Supply

60,000,000 CFT

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CFT

Value
$0.00
0x58dc6798af199b6a1a85f47de3f88f4406b365a1
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:
CFT

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-29
*/

pragma solidity ^0.4.24;
// produced by the Solididy File Flattener (c) David Appleton 2018
// contact : [email protected]
// released under Apache 2.0 licence
// input  /home/dave/Documents/Play/CFT/contracts/cft.sol
// flattened :  Sunday, 25-Nov-18 23:13:02 UTC
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring '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;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

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

    return c;
  }

  /**
  * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

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

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) internal _balances;

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

  uint256 private _totalSupply;

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

  /**
  * @dev Gets the balance of the specified address.
  * @param owner The address to query 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];
  }

  /**
   * @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 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) {
    _transfer(msg.sender, 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) {
    require(spender != address(0));

    _allowed[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

  /**
   * @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 <= _allowed[from][msg.sender]);

    _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
    _transfer(from, to, value);
    return true;
  }

  /**
   * @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 increaseAllowance(
    address spender,
    uint256 addedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _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 decreaseAllowance(
    address spender,
    uint256 subtractedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].sub(subtractedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
  * @dev Transfer token for a specified addresses
  * @param from The address to transfer from.
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  */
  function _transfer(address from, address to, uint256 value) internal {
    require(value <= _balances[from]);
    require(to != address(0));

    _balances[from] = _balances[from].sub(value);
    _balances[to] = _balances[to].add(value);
    emit Transfer(from, to, value);
  }

  /**
   * @dev Internal function that mints an amount of the token and assigns it to
   * an account. This encapsulates the modification of balances such that the
   * proper events are emitted.
   * @param account The account that will receive the created tokens.
   * @param value The amount that will be created.
   */
  function _mint(address account, uint256 value) internal {
    require(account != 0);
    _totalSupply = _totalSupply.add(value);
    _balances[account] = _balances[account].add(value);
    emit Transfer(address(0), account, value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burn(address account, uint256 value) internal {
    require(account != 0);
    require(value <= _balances[account]);

    _totalSupply = _totalSupply.sub(value);
    _balances[account] = _balances[account].sub(value);
    emit Transfer(account, address(0), value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal burn function.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burnFrom(address account, uint256 value) internal {
    require(value <= _allowed[account][msg.sender]);

    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
      value);
    _burn(account, value);
  }
}

contract CFT is ERC20  {

    string public name = "COSS Fee Token";
    string public symbol = "CFT";
    uint8 public decimals = 18;
    address private owner = msg.sender;

    event Burn(address burner, uint value);

    constructor() public {
        uint startAmount = 240000000 * 1e18;
        _mint(0x82B638831c2Da53aFA29750C544002d4f8a085be,startAmount);
    }

    function burn(uint256 _value) public returns (bool) {
        _burn(msg.sender, _value);
        emit Burn(msg.sender, _value);
        return true;
    }


    function sendBatchCS(address[] _recipients, uint[] _values) external returns (bool) {
        require(_recipients.length == _values.length, "Inconsistent data lengths");
        uint senderBalance = _balances[msg.sender];
        for (uint i = 0; i < _values.length; i++) {
            uint value = _values[i];
            address to = _recipients[i];
            require(senderBalance >= value,"Insufficient Balance");
            if (msg.sender != _recipients[i])  {      
                senderBalance = senderBalance - value;
                _balances[to] += value;
            }
            emit Transfer(msg.sender, to, value);
        }
        _balances[msg.sender] = senderBalance;
        return true;            
    }

    function emergencyERC20drain(ERC20 token, uint value) public {
        require(msg.sender == owner, "Unauthorised");
        require(token.transfer(owner,value),"Transfer fail");
    }
}

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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"value","type":"uint256"}],"name":"emergencyERC20drain","outputs":[],"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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"sendBatchCS","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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"},{"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"}]

60c0604052600e60808190527f434f53532046656520546f6b656e00000000000000000000000000000000000060a0908152620000409160039190620001cb565b506040805180820190915260038082527f434654000000000000000000000000000000000000000000000000000000000060209092019182526200008791600491620001cb565b5060058054601260ff199091161761010060a860020a0319166101003302179055348015620000b557600080fd5b506ac685fa11e01ec6f0000000620000eb7382b638831c2da53afa29750c544002d4f8a085be82640100000000620000f2810204565b5062000270565b600160a060020a03821615156200010857600080fd5b60025462000125908264010000000062000b37620001b182021704565b600255600160a060020a0382166000908152602081905260409020546200015b908264010000000062000b37620001b182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620001c457600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020e57805160ff19168380011785556200023e565b828001600101855582156200023e579182015b828111156200023e57825182559160200191906001019062000221565b506200024c92915062000250565b5090565b6200026d91905b808211156200024c576000815560010162000257565b90565b610c4a80620002806000396000f3006080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd578063313ce567146101e7578063395093511461021257806342966c6814610236578063543d4c161461024e57806370a082311461027457806395d89b41146102955780639c1d9790146102aa578063a457c2d7146102d6578063a9059cbb146102fa578063dd62ed3e1461031e575b600080fd5b3480156100e057600080fd5b506100e9610345565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a03600435166024356103d3565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab610451565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a0360043581169060243516604435610457565b3480156101f357600080fd5b506101fc6104f4565b6040805160ff9092168252519081900360200190f35b34801561021e57600080fd5b50610182600160a060020a03600435166024356104fd565b34801561024257600080fd5b506101826004356105ad565b34801561025a57600080fd5b50610272600160a060020a03600435166024356105fc565b005b34801561028057600080fd5b506101ab600160a060020a036004351661075d565b3480156102a157600080fd5b506100e9610778565b3480156102b657600080fd5b5061018260246004803582810192908201359181359182019101356107d3565b3480156102e257600080fd5b50610182600160a060020a03600435166024356109a2565b34801561030657600080fd5b50610182600160a060020a03600435166024356109ed565b34801561032a57600080fd5b506101ab600160a060020a0360043581169060243516610a03565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103cb5780601f106103a0576101008083540402835291602001916103cb565b820191906000526020600020905b8154815290600101906020018083116103ae57829003601f168201915b505050505081565b6000600160a060020a03831615156103ea57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561048757600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020546104bb908363ffffffff610a2e16565b600160a060020a03851660009081526001602090815260408083203384529091529020556104ea848484610a45565b5060019392505050565b60055460ff1681565b6000600160a060020a038316151561051457600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610548908363ffffffff610b3716565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006105b93383610b50565b604080513381526020810184905281517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929181900390910190a1506001919050565b6005546101009004600160a060020a03163314610663576040805160e560020a62461bcd02815260206004820152600c60248201527f556e617574686f72697365640000000000000000000000000000000000000000604482015290519081900360640190fd5b600554604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152610100909204600160a060020a0390811660048401526024830184905290519084169163a9059cbb9160448083019260209291908290030181600087803b1580156106d757600080fd5b505af11580156106eb573d6000803e3d6000fd5b505050506040513d602081101561070157600080fd5b50511515610759576040805160e560020a62461bcd02815260206004820152600d60248201527f5472616e73666572206661696c00000000000000000000000000000000000000604482015290519081900360640190fd5b5050565b600160a060020a031660009081526020819052604090205490565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103cb5780601f106103a0576101008083540402835291602001916103cb565b600080808080878614610830576040805160e560020a62461bcd02815260206004820152601960248201527f496e636f6e73697374656e742064617461206c656e6774687300000000000000604482015290519081900360640190fd5b33600090815260208190526040812054945092505b858310156109815786868481811061085957fe5b905060200201359150888884818110151561087057fe5b90506020020135600160a060020a031690508184101515156108dc576040805160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e742042616c616e6365000000000000000000000000604482015290519081900360640190fd5b8888848181106108e857fe5b90506020020135600160a060020a0316600160a060020a031633600160a060020a031614151561093657600160a060020a038116600090815260208190526040902080548301905592819003925b604080518381529051600160a060020a0383169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600190920191610845565b50503360009081526020819052604090209190915550600195945050505050565b6000600160a060020a03831615156109b957600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610548908363ffffffff610a2e16565b60006109fa338484610a45565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60008083831115610a3e57600080fd5b5050900390565b600160a060020a038316600090815260208190526040902054811115610a6a57600080fd5b600160a060020a0382161515610a7f57600080fd5b600160a060020a038316600090815260208190526040902054610aa8908263ffffffff610a2e16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610add908263ffffffff610b3716565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610b4957600080fd5b9392505050565b600160a060020a0382161515610b6557600080fd5b600160a060020a038216600090815260208190526040902054811115610b8a57600080fd5b600254610b9d908263ffffffff610a2e16565b600255600160a060020a038216600090815260208190526040902054610bc9908263ffffffff610a2e16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505600a165627a7a72305820b3e0831e348a661bef17fa9b0a384c27427b1cf2d284b549a643228a1fbd22ed0029

Deployed Bytecode

0x6080604052600436106100cf5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100d4578063095ea7b31461015e57806318160ddd1461019657806323b872dd146101bd578063313ce567146101e7578063395093511461021257806342966c6814610236578063543d4c161461024e57806370a082311461027457806395d89b41146102955780639c1d9790146102aa578063a457c2d7146102d6578063a9059cbb146102fa578063dd62ed3e1461031e575b600080fd5b3480156100e057600080fd5b506100e9610345565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012357818101518382015260200161010b565b50505050905090810190601f1680156101505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561016a57600080fd5b50610182600160a060020a03600435166024356103d3565b604080519115158252519081900360200190f35b3480156101a257600080fd5b506101ab610451565b60408051918252519081900360200190f35b3480156101c957600080fd5b50610182600160a060020a0360043581169060243516604435610457565b3480156101f357600080fd5b506101fc6104f4565b6040805160ff9092168252519081900360200190f35b34801561021e57600080fd5b50610182600160a060020a03600435166024356104fd565b34801561024257600080fd5b506101826004356105ad565b34801561025a57600080fd5b50610272600160a060020a03600435166024356105fc565b005b34801561028057600080fd5b506101ab600160a060020a036004351661075d565b3480156102a157600080fd5b506100e9610778565b3480156102b657600080fd5b5061018260246004803582810192908201359181359182019101356107d3565b3480156102e257600080fd5b50610182600160a060020a03600435166024356109a2565b34801561030657600080fd5b50610182600160a060020a03600435166024356109ed565b34801561032a57600080fd5b506101ab600160a060020a0360043581169060243516610a03565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103cb5780601f106103a0576101008083540402835291602001916103cb565b820191906000526020600020905b8154815290600101906020018083116103ae57829003601f168201915b505050505081565b6000600160a060020a03831615156103ea57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561048757600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020546104bb908363ffffffff610a2e16565b600160a060020a03851660009081526001602090815260408083203384529091529020556104ea848484610a45565b5060019392505050565b60055460ff1681565b6000600160a060020a038316151561051457600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610548908363ffffffff610b3716565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006105b93383610b50565b604080513381526020810184905281517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929181900390910190a1506001919050565b6005546101009004600160a060020a03163314610663576040805160e560020a62461bcd02815260206004820152600c60248201527f556e617574686f72697365640000000000000000000000000000000000000000604482015290519081900360640190fd5b600554604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152610100909204600160a060020a0390811660048401526024830184905290519084169163a9059cbb9160448083019260209291908290030181600087803b1580156106d757600080fd5b505af11580156106eb573d6000803e3d6000fd5b505050506040513d602081101561070157600080fd5b50511515610759576040805160e560020a62461bcd02815260206004820152600d60248201527f5472616e73666572206661696c00000000000000000000000000000000000000604482015290519081900360640190fd5b5050565b600160a060020a031660009081526020819052604090205490565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103cb5780601f106103a0576101008083540402835291602001916103cb565b600080808080878614610830576040805160e560020a62461bcd02815260206004820152601960248201527f496e636f6e73697374656e742064617461206c656e6774687300000000000000604482015290519081900360640190fd5b33600090815260208190526040812054945092505b858310156109815786868481811061085957fe5b905060200201359150888884818110151561087057fe5b90506020020135600160a060020a031690508184101515156108dc576040805160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e742042616c616e6365000000000000000000000000604482015290519081900360640190fd5b8888848181106108e857fe5b90506020020135600160a060020a0316600160a060020a031633600160a060020a031614151561093657600160a060020a038116600090815260208190526040902080548301905592819003925b604080518381529051600160a060020a0383169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600190920191610845565b50503360009081526020819052604090209190915550600195945050505050565b6000600160a060020a03831615156109b957600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610548908363ffffffff610a2e16565b60006109fa338484610a45565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60008083831115610a3e57600080fd5b5050900390565b600160a060020a038316600090815260208190526040902054811115610a6a57600080fd5b600160a060020a0382161515610a7f57600080fd5b600160a060020a038316600090815260208190526040902054610aa8908263ffffffff610a2e16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610add908263ffffffff610b3716565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610b4957600080fd5b9392505050565b600160a060020a0382161515610b6557600080fd5b600160a060020a038216600090815260208190526040902054811115610b8a57600080fd5b600254610b9d908263ffffffff610a2e16565b600255600160a060020a038216600090815260208190526040902054610bc9908263ffffffff610a2e16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505600a165627a7a72305820b3e0831e348a661bef17fa9b0a384c27427b1cf2d284b549a643228a1fbd22ed0029

Swarm Source

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