ETH Price: $3,066.12 (+2.71%)
Gas: 7 Gwei

Token

[FCT] FirmaChain Token (FCT)
 

Overview

Max Total Supply

600,000,000 FCT

Holders

12,497 (0.00%)

Total Transfers

-

Market

Price

$0.06 @ 0.000019 ETH (+2.08%)

Onchain Market Cap

$34,668,000.00

Circulating Supply Market Cap

$48,514,560.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

FirmaChain aims to replace all social and legal actions based on existing written documents with a platform that combines electronic document-signatures with blockchain.

Market

Volume (24H):$1,165,430.00
Market Capitalization:$48,514,560.00
Circulating Supply:842,019,838.00 FCT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Upbit
FCT2-KRW$0.0582
0.0000190 Eth
$1,056,813.00
18,162,690.038 FCT2
90.1612%
2
MEXC
FCT2-USDT$0.0542
0.0000177 Eth
$75,319.00
1,390,542.520 FCT2
6.9028%
3
Bithumb
FCT2-KRW$0.0583
0.0000190 Eth
$34,297.00
587,918.863 FCT2
2.9185%
4
Upbit
FCT2-BTC$0.0533
0.0000174 Eth
$158.39
2,970.835 FCT2
0.0147%
5
Poloniex
FCT2-USDT$0.0474
0.0000158 Eth
$18.57
365.769 FCT2
0.0018%
6
Poloniex
FCT2-BTC$0.0494
0.0000160 Eth
$9.99
202.000 FCT2
0.0010%

Contract Source Code Verified (Exact Match)

Contract Name:
FCTV

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-09-12
*/

pragma solidity ^0.4.23;

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

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    c = a * b;
    assert(c / a == b);
    return c;
  }

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

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

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

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

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

}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender)
    public view returns (uint256);

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

  function approve(address spender, uint256 value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @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 MultiOwnable {
    mapping (address => bool) owners;
    address unremovableOwner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    event OwnershipExtended(address indexed host, address indexed guest);
    event OwnershipRemoved(address indexed removedOwner);

    modifier onlyOwner() {
        require(owners[msg.sender]);
        _;
    }

    constructor() public {
        owners[msg.sender] = true;
        unremovableOwner = msg.sender;
    }

    function addOwner(address guest) onlyOwner public {
        require(guest != address(0));
        owners[guest] = true;
        emit OwnershipExtended(msg.sender, guest);
    }

    function removeOwner(address removedOwner) onlyOwner public {
        require(removedOwner != address(0));
        require(unremovableOwner != removedOwner);
        delete owners[removedOwner];
        emit OwnershipRemoved(removedOwner);
    }

    function transferOwnership(address newOwner) onlyOwner public {
        require(newOwner != address(0));
        require(unremovableOwner != msg.sender);
        owners[newOwner] = true;
        delete owners[msg.sender];
        emit OwnershipTransferred(msg.sender, newOwner);
    }

    function isOwner(address addr) public view returns(bool){
        return owners[addr];
    }
}

contract FCTV is StandardToken, MultiOwnable {

    using SafeMath for uint256;

    uint256 public constant TOTAL_CAP = 600000000;

    string public constant name = "[FCT] FirmaChain Token";
    string public constant symbol = "FCT";
    uint256 public constant decimals = 18;

    bool isTransferable = false;

    constructor() public {
        totalSupply_ = TOTAL_CAP.mul(10 ** decimals);
        balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, balances[msg.sender]);
    }

    function unlock() external onlyOwner {
        isTransferable = true;
    }

    function lock() external onlyOwner {
        isTransferable = false;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(isTransferable || owners[msg.sender]);
        return super.transferFrom(_from, _to, _value);
    }

    function transfer(address _to, uint256 _value) public returns (bool) {
        require(isTransferable || owners[msg.sender]);
        return super.transfer(_to, _value);
    }

    // NOTE: _amount of 1 FCT is 10 ** decimals
    function mint(address _to, uint256 _amount) onlyOwner public returns (bool) {
        require(_to != address(0));

        totalSupply_ = totalSupply_.add(_amount);
        balances[_to] = balances[_to].add(_amount);

        emit Mint(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }

    // NOTE: _amount of 1 FCT is 10 ** decimals
    function burn(uint256 _amount) onlyOwner public {
        require(_amount <= balances[msg.sender]);

        totalSupply_ = totalSupply_.sub(_amount);
        balances[msg.sender] = balances[msg.sender].sub(_amount);

        emit Burn(msg.sender, _amount);
        emit Transfer(msg.sender, address(0), _amount);
    }

    event Mint(address indexed _to, uint256 _amount);
    event Burn(address indexed _from, uint256 _amount);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"TOTAL_CAP","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[{"name":"removedOwner","type":"address"}],"name":"removeOwner","outputs":[],"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":"addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_amount","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":false,"inputs":[{"name":"guest","type":"address"}],"name":"addOwner","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":"unlock","outputs":[],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Burn","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":"host","type":"address"},{"indexed":true,"name":"guest","type":"address"}],"name":"OwnershipExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"removedOwner","type":"address"}],"name":"OwnershipRemoved","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"}]

60806040526004805460a060020a60ff021916905534801561002057600080fd5b50336000818152600360205260409020805460ff1916600117905560048054600160a060020a03191690911790556100716323c34600670de0b6b3a7640000640100000000610e0f6100c282021704565b600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36100f1565b60008215156100d3575060006100eb565b508181028183828115156100e357fe5b04146100eb57fe5b92915050565b610e84806101006000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302548866811461011657806306fdde031461013d578063095ea7b3146101c7578063173825d9146101ff57806318160ddd1461022257806323b872dd146102375780632f54bf6e14610261578063313ce5671461028257806340c10f191461029757806342966c68146102bb57806366188463146102d35780637065cb48146102f757806370a082311461031857806395d89b4114610339578063a69df4b51461034e578063a9059cbb14610363578063d73dd62314610387578063dd62ed3e146103ab578063f2fde38b146103d2578063f83d08ba146103f3575b600080fd5b34801561012257600080fd5b5061012b610408565b60408051918252519081900360200190f35b34801561014957600080fd5b50610152610410565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d357600080fd5b506101eb600160a060020a0360043516602435610447565b604080519115158252519081900360200190f35b34801561020b57600080fd5b50610220600160a060020a03600435166104ae565b005b34801561022e57600080fd5b5061012b610545565b34801561024357600080fd5b506101eb600160a060020a036004358116906024351660443561054b565b34801561026d57600080fd5b506101eb600160a060020a03600435166105a4565b34801561028e57600080fd5b5061012b6105c2565b3480156102a357600080fd5b506101eb600160a060020a03600435166024356105c7565b3480156102c757600080fd5b506102206004356106c1565b3480156102df57600080fd5b506101eb600160a060020a03600435166024356107a1565b34801561030357600080fd5b50610220600160a060020a0360043516610891565b34801561032457600080fd5b5061012b600160a060020a0360043516610911565b34801561034557600080fd5b5061015261092c565b34801561035a57600080fd5b50610220610963565b34801561036f57600080fd5b506101eb600160a060020a03600435166024356109b8565b34801561039357600080fd5b506101eb600160a060020a0360043516602435610a0f565b3480156103b757600080fd5b5061012b600160a060020a0360043581169060243516610aa8565b3480156103de57600080fd5b50610220600160a060020a0360043516610ad3565b3480156103ff57600080fd5b50610220610b7e565b6323c3460081565b60408051808201909152601681527f5b4643545d204669726d61436861696e20546f6b656e00000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526003602052604090205460ff1615156104cc57600080fd5b600160a060020a03811615156104e157600080fd5b600454600160a060020a03828116911614156104fc57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19169055517f86d076ecf250a6d90a67a7c75317f44709d5001395ecf1df6d9dad5278f1e6819190a250565b60015490565b60045460009074010000000000000000000000000000000000000000900460ff168061058657503360009081526003602052604090205460ff165b151561059157600080fd5b61059c848484610bbc565b949350505050565b600160a060020a031660009081526003602052604090205460ff1690565b601281565b3360009081526003602052604081205460ff1615156105e557600080fd5b600160a060020a03831615156105fa57600080fd5b60015461060d908363ffffffff610d2116565b600155600160a060020a038316600090815260208190526040902054610639908363ffffffff610d2116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610e398339815191529181900360200190a350600192915050565b3360009081526003602052604090205460ff1615156106df57600080fd5b336000908152602081905260409020548111156106fb57600080fd5b60015461070e908263ffffffff610d2e16565b60015533600090815260208190526040902054610731908263ffffffff610d2e16565b3360008181526020818152604091829020939093558051848152905191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592918290030190a26040805182815290516000913391600080516020610e398339815191529181900360200190a350565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107f657336000908152600260209081526040808320600160a060020a038816845290915281205561082b565b610806818463ffffffff610d2e16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526003602052604090205460ff1615156108af57600080fd5b600160a060020a03811615156108c457600080fd5b600160a060020a038116600081815260036020526040808220805460ff191660011790555133917f1d95aed2b82ae4cbdcccc214bb64bc277a20e8490d69a59d7f426c67fe46c61d91a350565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4643540000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604090205460ff16151561098157600080fd5b6004805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60045460009074010000000000000000000000000000000000000000900460ff16806109f357503360009081526003602052604090205460ff165b15156109fe57600080fd5b610a088383610d40565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a43908363ffffffff610d2116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b3360009081526003602052604090205460ff161515610af157600080fd5b600160a060020a0381161515610b0657600080fd5b600454600160a060020a0316331415610b1e57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19908116600117909155338084528284208054909216909155905190917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b3360009081526003602052604090205460ff161515610b9c57600080fd5b6004805474ff000000000000000000000000000000000000000019169055565b6000600160a060020a0383161515610bd357600080fd5b600160a060020a038416600090815260208190526040902054821115610bf857600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610c2857600080fd5b600160a060020a038416600090815260208190526040902054610c51908363ffffffff610d2e16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c86908363ffffffff610d2116565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610cc8908363ffffffff610d2e16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e39833981519152929181900390910190a35060019392505050565b818101828110156104a857fe5b600082821115610d3a57fe5b50900390565b6000600160a060020a0383161515610d5757600080fd5b33600090815260208190526040902054821115610d7357600080fd5b33600090815260208190526040902054610d93908363ffffffff610d2e16565b3360009081526020819052604080822092909255600160a060020a03851681522054610dc5908363ffffffff610d2116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e398339815191529281900390910190a350600192915050565b6000821515610e20575060006104a8565b50818102818382811515610e3057fe5b04146104a857fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582059b517ce150e7744a8be399b1749e15efa4032752bd2c142a8b24bbbfef2aff30029

Deployed Bytecode

0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302548866811461011657806306fdde031461013d578063095ea7b3146101c7578063173825d9146101ff57806318160ddd1461022257806323b872dd146102375780632f54bf6e14610261578063313ce5671461028257806340c10f191461029757806342966c68146102bb57806366188463146102d35780637065cb48146102f757806370a082311461031857806395d89b4114610339578063a69df4b51461034e578063a9059cbb14610363578063d73dd62314610387578063dd62ed3e146103ab578063f2fde38b146103d2578063f83d08ba146103f3575b600080fd5b34801561012257600080fd5b5061012b610408565b60408051918252519081900360200190f35b34801561014957600080fd5b50610152610410565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018c578181015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101d357600080fd5b506101eb600160a060020a0360043516602435610447565b604080519115158252519081900360200190f35b34801561020b57600080fd5b50610220600160a060020a03600435166104ae565b005b34801561022e57600080fd5b5061012b610545565b34801561024357600080fd5b506101eb600160a060020a036004358116906024351660443561054b565b34801561026d57600080fd5b506101eb600160a060020a03600435166105a4565b34801561028e57600080fd5b5061012b6105c2565b3480156102a357600080fd5b506101eb600160a060020a03600435166024356105c7565b3480156102c757600080fd5b506102206004356106c1565b3480156102df57600080fd5b506101eb600160a060020a03600435166024356107a1565b34801561030357600080fd5b50610220600160a060020a0360043516610891565b34801561032457600080fd5b5061012b600160a060020a0360043516610911565b34801561034557600080fd5b5061015261092c565b34801561035a57600080fd5b50610220610963565b34801561036f57600080fd5b506101eb600160a060020a03600435166024356109b8565b34801561039357600080fd5b506101eb600160a060020a0360043516602435610a0f565b3480156103b757600080fd5b5061012b600160a060020a0360043581169060243516610aa8565b3480156103de57600080fd5b50610220600160a060020a0360043516610ad3565b3480156103ff57600080fd5b50610220610b7e565b6323c3460081565b60408051808201909152601681527f5b4643545d204669726d61436861696e20546f6b656e00000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b3360009081526003602052604090205460ff1615156104cc57600080fd5b600160a060020a03811615156104e157600080fd5b600454600160a060020a03828116911614156104fc57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19169055517f86d076ecf250a6d90a67a7c75317f44709d5001395ecf1df6d9dad5278f1e6819190a250565b60015490565b60045460009074010000000000000000000000000000000000000000900460ff168061058657503360009081526003602052604090205460ff165b151561059157600080fd5b61059c848484610bbc565b949350505050565b600160a060020a031660009081526003602052604090205460ff1690565b601281565b3360009081526003602052604081205460ff1615156105e557600080fd5b600160a060020a03831615156105fa57600080fd5b60015461060d908363ffffffff610d2116565b600155600160a060020a038316600090815260208190526040902054610639908363ffffffff610d2116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610e398339815191529181900360200190a350600192915050565b3360009081526003602052604090205460ff1615156106df57600080fd5b336000908152602081905260409020548111156106fb57600080fd5b60015461070e908263ffffffff610d2e16565b60015533600090815260208190526040902054610731908263ffffffff610d2e16565b3360008181526020818152604091829020939093558051848152905191927fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592918290030190a26040805182815290516000913391600080516020610e398339815191529181900360200190a350565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107f657336000908152600260209081526040808320600160a060020a038816845290915281205561082b565b610806818463ffffffff610d2e16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526003602052604090205460ff1615156108af57600080fd5b600160a060020a03811615156108c457600080fd5b600160a060020a038116600081815260036020526040808220805460ff191660011790555133917f1d95aed2b82ae4cbdcccc214bb64bc277a20e8490d69a59d7f426c67fe46c61d91a350565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4643540000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526003602052604090205460ff16151561098157600080fd5b6004805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60045460009074010000000000000000000000000000000000000000900460ff16806109f357503360009081526003602052604090205460ff165b15156109fe57600080fd5b610a088383610d40565b9392505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610a43908363ffffffff610d2116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b3360009081526003602052604090205460ff161515610af157600080fd5b600160a060020a0381161515610b0657600080fd5b600454600160a060020a0316331415610b1e57600080fd5b600160a060020a038116600081815260036020526040808220805460ff19908116600117909155338084528284208054909216909155905190917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a350565b3360009081526003602052604090205460ff161515610b9c57600080fd5b6004805474ff000000000000000000000000000000000000000019169055565b6000600160a060020a0383161515610bd357600080fd5b600160a060020a038416600090815260208190526040902054821115610bf857600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610c2857600080fd5b600160a060020a038416600090815260208190526040902054610c51908363ffffffff610d2e16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c86908363ffffffff610d2116565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610cc8908363ffffffff610d2e16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e39833981519152929181900390910190a35060019392505050565b818101828110156104a857fe5b600082821115610d3a57fe5b50900390565b6000600160a060020a0383161515610d5757600080fd5b33600090815260208190526040902054821115610d7357600080fd5b33600090815260208190526040902054610d93908363ffffffff610d2e16565b3360009081526020819052604080822092909255600160a060020a03851681522054610dc5908363ffffffff610d2116565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e398339815191529281900390910190a350600192915050565b6000821515610e20575060006104a8565b50818102818382811515610e3057fe5b04146104a857fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582059b517ce150e7744a8be399b1749e15efa4032752bd2c142a8b24bbbfef2aff30029

Deployed Bytecode Sourcemap

9055:1996:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9144:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9144:45:0;;;;;;;;;;;;;;;;;;;;9198:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9198:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9198:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5306:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5306:192:0;-1:-1:-1;;;;;5306:192:0;;;;;;;;;;;;;;;;;;;;;;;;;8398:250;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8398:250:0;-1:-1:-1;;;;;8398:250:0;;;;;;;2118:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2118:85:0;;;;9762:208;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9762:208:0;-1:-1:-1;;;;;9762:208:0;;;;;;;;;;;;8954:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8954:94:0;-1:-1:-1;;;;;8954:94:0;;;;;9303:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9303:37:0;;;;10213:337;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10213:337:0;-1:-1:-1;;;;;10213:337:0;;;;;;;10607:327;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10607:327:0;;;;;7234:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7234:440:0;-1:-1:-1;;;;;7234:440:0;;;;;;;8210:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8210:180:0;-1:-1:-1;;;;;8210:180:0;;;;;2902:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2902:101:0;-1:-1:-1;;;;;2902:101:0;;;;;9259:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9259:37:0;;;;9593:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9593:77:0;;;;9978:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9978:178:0;-1:-1:-1;;;;;9978:178:0;;;;;;;6456:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6456:304:0;-1:-1:-1;;;;;6456:304:0;;;;;;;5825:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5825:162:0;-1:-1:-1;;;;;5825:162:0;;;;;;;;;;8656:290;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8656:290:0;-1:-1:-1;;;;;8656:290:0;;;;;9678:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9678:76:0;;;;9144:45;9180:9;9144:45;:::o;9198:54::-;;;;;;;;;;;;;;;;;;;:::o;5306:192::-;5394:10;5373:4;5386:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5386:29:0;;;;;;;;;;;:38;;;5436;;;;;;;5373:4;;5386:29;;5394:10;;5436:38;;;;;;;;-1:-1:-1;5488:4:0;5306:192;;;;;:::o;8398:250::-;8057:10;8050:18;;;;:6;:18;;;;;;;;8042:27;;;;;;;;-1:-1:-1;;;;;8477:26:0;;;;8469:35;;;;;;8523:16;;-1:-1:-1;;;;;8523:32:0;;;:16;;:32;;8515:41;;;;;;-1:-1:-1;;;;;8574:20:0;;;;;;:6;:20;;;;;;8567:27;;-1:-1:-1;;8567:27:0;;;8610:30;;;8574:20;8610:30;8398:250;:::o;2118:85::-;2185:12;;2118:85;:::o;9762:208::-;9869:14;;9844:4;;9869:14;;;;;;:36;;-1:-1:-1;9894:10:0;9887:18;;;;:6;:18;;;;;;;;9869:36;9861:45;;;;;;;;9924:38;9943:5;9950:3;9955:6;9924:18;:38::i;:::-;9917:45;9762:208;-1:-1:-1;;;;9762:208:0:o;8954:94::-;-1:-1:-1;;;;;9028:12:0;9005:4;9028:12;;;:6;:12;;;;;;;;;8954:94::o;9303:37::-;9338:2;9303:37;:::o;10213:337::-;8057:10;10283:4;8050:18;;;:6;:18;;;;;;;;8042:27;;;;;;;;-1:-1:-1;;;;;10308:17:0;;;;10300:26;;;;;;10354:12;;:25;;10371:7;10354:25;:16;:25;:::i;:::-;10339:12;:40;-1:-1:-1;;;;;10406:13:0;;:8;:13;;;;;;;;;;;:26;;10424:7;10406:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10390:13:0;;:8;:13;;;;;;;;;;;;:42;;;;10450:18;;;;;;;10390:13;;10450:18;;;;;;;;;10484:34;;;;;;;;-1:-1:-1;;;;;10484:34:0;;;10501:1;;-1:-1:-1;;;;;;;;;;;10484:34:0;;;;;;;;-1:-1:-1;10538:4:0;10213:337;;;;:::o;10607:327::-;8057:10;8050:18;;;;:6;:18;;;;;;;;8042:27;;;;;;;;10694:10;10685:8;:20;;;;;;;;;;;10674:31;;;10666:40;;;;;;10734:12;;:25;;10751:7;10734:25;:16;:25;:::i;:::-;10719:12;:40;10802:10;10793:8;:20;;;;;;;;;;;:33;;10818:7;10793:33;:24;:33;:::i;:::-;10779:10;10770:8;:20;;;;;;;;;;;;:56;;;;10844:25;;;;;;;10779:10;;10844:25;;;;;;;;;10885:41;;;;;;;;10914:1;;10894:10;;-1:-1:-1;;;;;;;;;;;10885:41:0;;;;;;;;10607:327;:::o;7234:440::-;7382:10;7342:4;7374:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7374:29:0;;;;;;;;;;7414:27;;;7410:168;;;7460:10;7484:1;7452:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7452:29:0;;;;;;;;;:33;7410:168;;;7540:30;:8;7553:16;7540:30;:12;:30;:::i;:::-;7516:10;7508:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7508:29:0;;;;;;;;;:62;7410:168;7598:10;7620:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7589:61:0;;7620:29;;;;;;;;;;;7589:61;;;;;;;;;7598:10;7589:61;;;;;;;;;;;-1:-1:-1;7664:4:0;;7234:440;-1:-1:-1;;;7234:440:0:o;8210:180::-;8057:10;8050:18;;;;:6;:18;;;;;;;;8042:27;;;;;;;;-1:-1:-1;;;;;8279:19:0;;;;8271:28;;;;;;-1:-1:-1;;;;;8310:13:0;;;;;;:6;:13;;;;;;:20;;-1:-1:-1;;8310:20:0;8326:4;8310:20;;;8346:36;8364:10;;8346:36;;;8210:180;:::o;2902:101::-;-1:-1:-1;;;;;2981:16:0;2958:7;2981:16;;;;;;;;;;;;2902:101::o;9259:37::-;;;;;;;;;;;;;;;;;;;:::o;9593:77::-;8057:10;8050:18;;;;:6;:18;;;;;;;;8042:27;;;;;;;;9641:14;:21;;-1:-1:-1;;9641:21:0;;;;;9593:77::o;9978:178::-;10066:14;;10041:4;;10066:14;;;;;;:36;;-1:-1:-1;10091:10:0;10084:18;;;;:6;:18;;;;;;;;10066:36;10058:45;;;;;;;;10121:27;10136:3;10141:6;10121:14;:27::i;:::-;10114:34;9978:178;-1:-1:-1;;;9978:178:0:o;6456:304::-;6624:10;6559:4;6616:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6616:29:0;;;;;;;;;;:46;;6650:11;6616:46;:33;:46;:::i;:::-;6583:10;6575:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6575:29:0;;;;;;;;;;;;:88;;;6675:61;;;;;;6575:29;;6675:61;;;;;;;;;;;-1:-1:-1;6750:4:0;6456:304;;;;:::o;5825:162::-;-1:-1:-1;;;;;5956:15:0;;;5930:7;5956:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5825:162::o;8656:290::-;8057:10;8050:18;;;;:6;:18;;;;;;;;8042:27;;;;;;;;-1:-1:-1;;;;;8737:22:0;;;;8729:31;;;;;;8779:16;;-1:-1:-1;;;;;8779:16:0;8799:10;8779:30;;8771:39;;;;;;-1:-1:-1;;;;;8821:16:0;;;;;;:6;:16;;;;;;:23;;-1:-1:-1;;8821:23:0;;;8840:4;8821:23;;;;8869:10;8862:18;;;;;;8855:25;;;;;;;;8896:42;;8869:10;;8896:42;;;8656:290;:::o;9678:76::-;8057:10;8050:18;;;;:6;:18;;;;;;;;8042:27;;;;;;;;9724:14;:22;;-1:-1:-1;;9724:22:0;;;9678:76::o;4184:487::-;4296:4;-1:-1:-1;;;;;4320:17:0;;;;4312:26;;;;;;-1:-1:-1;;;;;4363:15:0;;:8;:15;;;;;;;;;;;4353:25;;;4345:34;;;;;;-1:-1:-1;;;;;4404:14:0;;;;;;:7;:14;;;;;;;;4419:10;4404:26;;;;;;;;4394:36;;;4386:45;;;;;;-1:-1:-1;;;;;4458:15:0;;:8;:15;;;;;;;;;;;:27;;4478:6;4458:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4440:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4508:13;;;;;;;:25;;4526:6;4508:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4492:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4569:14;;;;;:7;:14;;;;;4584:10;4569:26;;;;;;;:38;;4600:6;4569:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4540:14:0;;;;;;;:7;:14;;;;;;;;4555:10;4540:26;;;;;;;;:67;;;;4619:28;;;;;;;;;;;4540:14;;-1:-1:-1;;;;;;;;;;;4619:28:0;;;;;;;;;;-1:-1:-1;4661:4:0;4184:487;;;;;:::o;1258:127::-;1338:5;;;1357:6;;;;1350:14;;;1078:113;1136:7;1159:6;;;;1152:14;;;;-1:-1:-1;1180:5:0;;;1078:113::o;2364:329::-;2427:4;-1:-1:-1;;;;;2448:17:0;;;;2440:26;;;;;;2500:10;2491:8;:20;;;;;;;;;;;2481:30;;;2473:39;;;;;;2553:10;2544:8;:20;;;;;;;;;;;:32;;2569:6;2544:32;:24;:32;:::i;:::-;2530:10;2521:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2599:13:0;;;;;;:25;;2617:6;2599:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2583:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2636:33;;;;;;;2583:13;;2645:10;;-1:-1:-1;;;;;;;;;;;2636:33:0;;;;;;;;;-1:-1:-1;2683:4:0;2364:329;;;;:::o;213:384::-;271:9;501:6;;497:37;;;-1:-1:-1;525:1:0;518:8;;497:37;-1:-1:-1;546:5:0;;;550:1;546;:5;565;;;;;;;;:10;558:18;;

Swarm Source

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