ETH Price: $3,403.62 (-2.00%)
Gas: 6 Gwei

Token

CryptoControl (CCIO)
 

Overview

Max Total Supply

34,699,350 CCIO

Holders

17,563

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
500 CCIO

Value
$0.00
0xec759c0d0aa76749d90baab01888fb393bd485eb
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:
CryptoControlToken

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-03-06
*/

pragma solidity ^0.5.1;

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

contract Ownable {
  address public owner;


  event OwnershipRenounced(address indexed previousOwner);
  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

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

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

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

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

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() public onlyOwner whenNotPaused {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() public onlyOwner whenPaused {
    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) internal balances;

    uint256 internal totalSupply_;

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

    /**
     * @dev Transfer token for a specified address
     * @param _to The address to transfer to.
     * @param _value The amount to be transferred.
     */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_value <= balances[msg.sender]);
        require(_to != address(0));

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param _owner The address to query the the balance of.
     * @return An uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address _owner) public view returns (uint256) {
        return balances[_owner];
    }
}

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

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }


    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }


    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender)
        public view returns (uint256) {
        return allowed[_owner][_spender];
    }


    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint256 _addedValue)
        public returns (bool) {
        allowed[msg.sender][_spender] = (allowed[msg.sender][_spender].add(_addedValue));
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }


    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint256 _subtractedValue)
        public returns (bool) {
        uint256 oldValue = allowed[msg.sender][_spender];

        if (_subtractedValue >= oldValue) allowed[msg.sender][_spender] = 0;
        else allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);

        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

contract BurnableToken is StandardToken, Ownable {
    event Burn(address indexed burner, uint256 value);


    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     * @param _who The user whose token should be burned.
     */
    function burn(address _who, uint256 _value) onlyOwner public {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

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

contract MintableToken is StandardToken, Ownable {
    event Mint(address indexed to, uint256 amount);
    event MintFinished();

    bool public mintingFinished = false;


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


    modifier hasMintPermission() {
        require(msg.sender == owner);
        _;
    }


    /**
     * @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)
        public hasMintPermission canMint 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() public onlyOwner canMint returns (bool) {
        mintingFinished = true;
        emit MintFinished();
        return true;
    }
}

contract CappedToken is MintableToken {
    uint256 public cap;


    constructor(uint256 _cap) public {
        require(_cap > 0);
        cap = _cap;
    }


    /**
     * @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) public returns (bool) {
        require(totalSupply_.add(_amount) <= cap);
        return super.mint(_to, _amount);
    }
}

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 CryptoControlToken is BurnableToken, PausableToken, CappedToken {
    address public upgradedAddress;
    bool public deprecated;
    string public contactInformation = "[email protected]";
    string public name = "CryptoControl";
    string public reason;
    string public symbol = "CCIO";
    uint8 public decimals = 8;

    constructor () CappedToken(100000000000000000000) public {}

    // Fix for the ERC20 short address attack.
    modifier onlyPayloadSize(uint size) {
        require(!(msg.data.length < size + 4), "payload too big");
        _;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) public whenNotPaused returns (bool) {
        if (deprecated) return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        else return super.transfer(_to, _value);
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint _value) public whenNotPaused returns (bool) {
        if (deprecated) return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
        else return super.transferFrom(_from, _to, _value);
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function balanceOf(address who) public view returns (uint256) {
        if (deprecated) return UpgradedStandardToken(upgradedAddress).balanceOf(who);
        else return super.balanceOf(who);
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) returns (bool) {
        if (deprecated) return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
        else return super.approve(_spender, _value);
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function allowance(address _owner, address _spender) public view returns (uint remaining) {
        if (deprecated) return StandardToken(upgradedAddress).allowance(_owner, _spender);
        else return super.allowance(_owner, _spender);
    }

    // deprecate current contract in favour of a new one
    function deprecate(address _upgradedAddress, string memory _reason) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        reason = _reason;
        emit Deprecate(_upgradedAddress, _reason);
    }

    // Called when contract is deprecated
    event Deprecate(address newAddress, string reason);
}

contract UpgradedStandardToken is PausableToken {
    // those methods are called by the legacy contract
    // and they must ensure msg.sender to be the contract address
    function transferByLegacy(address from, address to, uint value) public returns (bool);
    function transferFromByLegacy(address sender, address from, address spender, uint value) public returns (bool);
    function approveByLegacy(address from, address spender, uint value) public returns (bool);
}

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":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contactInformation","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"_upgradedAddress","type":"address"},{"name":"_reason","type":"string"}],"name":"deprecate","outputs":[],"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":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_who","type":"address"},{"name":"_value","type":"uint256"}],"name":"burn","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reason","outputs":[{"name":"","type":"string"}],"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":false,"name":"newAddress","type":"address"},{"indexed":false,"name":"reason","type":"string"}],"name":"Deprecate","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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"}]

6003805460a060020a61ffff021916905560c0604052601860808190527f636f6e746163744063727970746f636f6e74726f6c2e696f000000000000000060a090815262000051916006919062000120565b5060408051808201909152600d8082527f43727970746f436f6e74726f6c000000000000000000000000000000000000006020909201918252620000989160079162000120565b506040805180820190915260048082527f4343494f000000000000000000000000000000000000000000000000000000006020909201918252620000df9160099162000120565b50600a805460ff19166008179055348015620000fa57600080fd5b5060038054600160a060020a0319163317905568056bc75e2d63100000600455620001c5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b620001c291905b80821115620001a15760008155600101620001ac565b90565b61194180620001d56000396000f3fe608060405260043610610158577c0100000000000000000000000000000000000000000000000000000000600035046305d2035b811461015d57806306fdde0314610186578063095ea7b3146102105780630e136b191461024957806318160ddd1461025e57806323b872dd1461028557806326976e3f146102c8578063313ce567146102f9578063355274ea1461032457806336f7ab5e146103395780633f4ba83a1461034e57806340c10f19146103655780634402c14a1461039e5780635c975abb14610461578063661884631461047657806370a08231146104af578063715018a6146104e25780637d64bcb4146104f75780638456cb591461050c5780638da5cb5b1461052157806395d89b41146105365780639dc29fac1461054b578063a9059cbb14610584578063d73dd623146105bd578063dd62ed3e146105f6578063e134e33d14610631578063f2fde38b14610646575b600080fd5b34801561016957600080fd5b50610172610679565b604080519115158252519081900360200190f35b34801561019257600080fd5b5061019b61069b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021c57600080fd5b506101726004803603604081101561023357600080fd5b50600160a060020a038135169060200135610729565b34801561025557600080fd5b5061017261086b565b34801561026a57600080fd5b5061027361087b565b60408051918252519081900360200190f35b34801561029157600080fd5b50610172600480360360608110156102a857600080fd5b50600160a060020a03813581169160208101359091169060400135610882565b3480156102d457600080fd5b506102dd610973565b60408051600160a060020a039092168252519081900360200190f35b34801561030557600080fd5b5061030e610982565b6040805160ff9092168252519081900360200190f35b34801561033057600080fd5b5061027361098b565b34801561034557600080fd5b5061019b610991565b34801561035a57600080fd5b506103636109ec565b005b34801561037157600080fd5b506101726004803603604081101561038857600080fd5b50600160a060020a038135169060200135610a64565b3480156103aa57600080fd5b50610363600480360360408110156103c157600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156103ec57600080fd5b8201836020820111156103fe57600080fd5b8035906020019184600183028401116401000000008311171561042057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a9c945050505050565b34801561046d57600080fd5b50610172610bc6565b34801561048257600080fd5b506101726004803603604081101561049957600080fd5b50600160a060020a038135169060200135610bd6565b3480156104bb57600080fd5b50610273600480360360208110156104d257600080fd5b5035600160a060020a0316610bfa565b3480156104ee57600080fd5b50610363610cb9565b34801561050357600080fd5b50610172610d27565b34801561051857600080fd5b50610363610dd0565b34801561052d57600080fd5b506102dd610e4d565b34801561054257600080fd5b5061019b610e5c565b34801561055757600080fd5b506103636004803603604081101561056e57600080fd5b50600160a060020a038135169060200135610eb7565b34801561059057600080fd5b50610172600480360360408110156105a757600080fd5b50600160a060020a038135169060200135610fbd565b3480156105c957600080fd5b50610172600480360360408110156105e057600080fd5b50600160a060020a0381351690602001356110a2565b34801561060257600080fd5b506102736004803603604081101561061957600080fd5b50600160a060020a03813581169160200135166110c6565b34801561063d57600080fd5b5061019b611167565b34801561065257600080fd5b506103636004803603602081101561066957600080fd5b5035600160a060020a03166111c2565b6003547501000000000000000000000000000000000000000000900460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b505050505081565b60006040604436101561079d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f7061796c6f616420746f6f206269670000000000000000000000000000000000604482015290519081900360640190fd5b60055460a060020a900460ff161561085757600554604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152604482018790529151919092169163aee92d339160648083019260209291908290030181600087803b15801561082457600080fd5b505af1158015610838573d6000803e3d6000fd5b505050506040513d602081101561084e57600080fd5b50519150610864565b61086184846111e5565b91505b5092915050565b60055460a060020a900460ff1681565b6001545b90565b60035460009060a060020a900460ff161561089c57600080fd5b60055460a060020a900460ff161561095e57600554604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03878116602483015286811660448301526064820186905291519190921691638b477adb9160848083019260209291908290030181600087803b15801561092b57600080fd5b505af115801561093f573d6000803e3d6000fd5b505050506040513d602081101561095557600080fd5b5051905061096c565b610969848484611209565b90505b9392505050565b600554600160a060020a031681565b600a5460ff1681565b60045481565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b600354600160a060020a03163314610a0357600080fd5b60035460a060020a900460ff161515610a1b57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600454610a7e8360015461122e90919063ffffffff16565b1115610a8957600080fd5b610a93838361123b565b90505b92915050565b600354600160a060020a03163314610ab357600080fd5b6005805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790558051610b0e90600890602084019061185d565b507f104774a0b3ee494077b36fb92388114f60a683ad848e3737197877ad531636e682826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b87578181015183820152602001610b6f565b50505050905090810190601f168015610bb45780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610bf057600080fd5b610a938383611345565b60055460009060a060020a900460ff1615610ca857600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a08231916024808301926020929190829003018186803b158015610c7557600080fd5b505afa158015610c89573d6000803e3d6000fd5b505050506040513d6020811015610c9f57600080fd5b50519050610cb4565b610cb182611434565b90505b919050565b600354600160a060020a03163314610cd057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a03163314610d4157600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615610d6a57600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610de757600080fd5b60035460a060020a900460ff1615610dfe57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b600354600160a060020a03163314610ece57600080fd5b600160a060020a038216600090815260208190526040902054811115610ef357600080fd5b600160a060020a038216600090815260208190526040902054610f1c908263ffffffff61144f16565b600160a060020a038316600090815260208190526040902055600154610f48908263ffffffff61144f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206118f68339815191529181900360200190a35050565b60035460009060a060020a900460ff1615610fd757600080fd5b60055460a060020a900460ff161561109157600554604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0386811660248301526044820186905291519190921691636e18980a9160648083019260209291908290030181600087803b15801561105e57600080fd5b505af1158015611072573d6000803e3d6000fd5b505050506040513d602081101561108857600080fd5b50519050610a96565b61109b8383611461565b9050610a96565b60035460009060a060020a900460ff16156110bc57600080fd5b610a938383611485565b60055460009060a060020a900460ff161561115d57600554604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e916044808301926020929190829003018186803b15801561114957600080fd5b505afa158015611072573d6000803e3d6000fd5b61109b838361151e565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b600354600160a060020a031633146111d957600080fd5b6111e281611549565b50565b60035460009060a060020a900460ff16156111ff57600080fd5b610a9383836115c7565b60035460009060a060020a900460ff161561122357600080fd5b61096984848461162d565b81810182811015610a9657fe5b600354600090600160a060020a0316331461125557600080fd5b6003547501000000000000000000000000000000000000000000900460ff161561127e57600080fd5b600154611291908363ffffffff61122e16565b600155600160a060020a0383166000908152602081905260409020546112bd908363ffffffff61122e16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206118f68339815191529181900360200190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061139957336000908152600260209081526040808320600160a060020a03881684529091528120556113ce565b6113a9818463ffffffff61144f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60008282111561145b57fe5b50900390565b60035460009060a060020a900460ff161561147b57600080fd5b610a938383611790565b336000908152600260209081526040808320600160a060020a03861684529091528120546114b9908363ffffffff61122e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a038116151561155e57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526020819052604081205482111561165257600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561168257600080fd5b600160a060020a038316151561169757600080fd5b600160a060020a0384166000908152602081905260409020546116c0908363ffffffff61144f16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546116f5908363ffffffff61122e16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611737908363ffffffff61144f16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206118f6833981519152929181900390910190a35060019392505050565b336000908152602081905260408120548211156117ac57600080fd5b600160a060020a03831615156117c157600080fd5b336000908152602081905260409020546117e1908363ffffffff61144f16565b3360009081526020819052604080822092909255600160a060020a03851681522054611813908363ffffffff61122e16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206118f68339815191529281900390910190a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061189e57805160ff19168380011785556118cb565b828001600101855582156118cb579182015b828111156118cb5782518255916020019190600101906118b0565b506118d79291506118db565b5090565b61087f91905b808211156118d757600081556001016118e156feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820600474dcaced590ebf3b1ab6aa65e800b93c640ce03414d98a0ca9106d6085820029

Deployed Bytecode

0x608060405260043610610158577c0100000000000000000000000000000000000000000000000000000000600035046305d2035b811461015d57806306fdde0314610186578063095ea7b3146102105780630e136b191461024957806318160ddd1461025e57806323b872dd1461028557806326976e3f146102c8578063313ce567146102f9578063355274ea1461032457806336f7ab5e146103395780633f4ba83a1461034e57806340c10f19146103655780634402c14a1461039e5780635c975abb14610461578063661884631461047657806370a08231146104af578063715018a6146104e25780637d64bcb4146104f75780638456cb591461050c5780638da5cb5b1461052157806395d89b41146105365780639dc29fac1461054b578063a9059cbb14610584578063d73dd623146105bd578063dd62ed3e146105f6578063e134e33d14610631578063f2fde38b14610646575b600080fd5b34801561016957600080fd5b50610172610679565b604080519115158252519081900360200190f35b34801561019257600080fd5b5061019b61069b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021c57600080fd5b506101726004803603604081101561023357600080fd5b50600160a060020a038135169060200135610729565b34801561025557600080fd5b5061017261086b565b34801561026a57600080fd5b5061027361087b565b60408051918252519081900360200190f35b34801561029157600080fd5b50610172600480360360608110156102a857600080fd5b50600160a060020a03813581169160208101359091169060400135610882565b3480156102d457600080fd5b506102dd610973565b60408051600160a060020a039092168252519081900360200190f35b34801561030557600080fd5b5061030e610982565b6040805160ff9092168252519081900360200190f35b34801561033057600080fd5b5061027361098b565b34801561034557600080fd5b5061019b610991565b34801561035a57600080fd5b506103636109ec565b005b34801561037157600080fd5b506101726004803603604081101561038857600080fd5b50600160a060020a038135169060200135610a64565b3480156103aa57600080fd5b50610363600480360360408110156103c157600080fd5b600160a060020a0382351691908101906040810160208201356401000000008111156103ec57600080fd5b8201836020820111156103fe57600080fd5b8035906020019184600183028401116401000000008311171561042057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a9c945050505050565b34801561046d57600080fd5b50610172610bc6565b34801561048257600080fd5b506101726004803603604081101561049957600080fd5b50600160a060020a038135169060200135610bd6565b3480156104bb57600080fd5b50610273600480360360208110156104d257600080fd5b5035600160a060020a0316610bfa565b3480156104ee57600080fd5b50610363610cb9565b34801561050357600080fd5b50610172610d27565b34801561051857600080fd5b50610363610dd0565b34801561052d57600080fd5b506102dd610e4d565b34801561054257600080fd5b5061019b610e5c565b34801561055757600080fd5b506103636004803603604081101561056e57600080fd5b50600160a060020a038135169060200135610eb7565b34801561059057600080fd5b50610172600480360360408110156105a757600080fd5b50600160a060020a038135169060200135610fbd565b3480156105c957600080fd5b50610172600480360360408110156105e057600080fd5b50600160a060020a0381351690602001356110a2565b34801561060257600080fd5b506102736004803603604081101561061957600080fd5b50600160a060020a03813581169160200135166110c6565b34801561063d57600080fd5b5061019b611167565b34801561065257600080fd5b506103636004803603602081101561066957600080fd5b5035600160a060020a03166111c2565b6003547501000000000000000000000000000000000000000000900460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b505050505081565b60006040604436101561079d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f7061796c6f616420746f6f206269670000000000000000000000000000000000604482015290519081900360640190fd5b60055460a060020a900460ff161561085757600554604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152604482018790529151919092169163aee92d339160648083019260209291908290030181600087803b15801561082457600080fd5b505af1158015610838573d6000803e3d6000fd5b505050506040513d602081101561084e57600080fd5b50519150610864565b61086184846111e5565b91505b5092915050565b60055460a060020a900460ff1681565b6001545b90565b60035460009060a060020a900460ff161561089c57600080fd5b60055460a060020a900460ff161561095e57600554604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03878116602483015286811660448301526064820186905291519190921691638b477adb9160848083019260209291908290030181600087803b15801561092b57600080fd5b505af115801561093f573d6000803e3d6000fd5b505050506040513d602081101561095557600080fd5b5051905061096c565b610969848484611209565b90505b9392505050565b600554600160a060020a031681565b600a5460ff1681565b60045481565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b600354600160a060020a03163314610a0357600080fd5b60035460a060020a900460ff161515610a1b57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6000600454610a7e8360015461122e90919063ffffffff16565b1115610a8957600080fd5b610a93838361123b565b90505b92915050565b600354600160a060020a03163314610ab357600080fd5b6005805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790558051610b0e90600890602084019061185d565b507f104774a0b3ee494077b36fb92388114f60a683ad848e3737197877ad531636e682826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b87578181015183820152602001610b6f565b50505050905090810190601f168015610bb45780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff1615610bf057600080fd5b610a938383611345565b60055460009060a060020a900460ff1615610ca857600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a08231916024808301926020929190829003018186803b158015610c7557600080fd5b505afa158015610c89573d6000803e3d6000fd5b505050506040513d6020811015610c9f57600080fd5b50519050610cb4565b610cb182611434565b90505b919050565b600354600160a060020a03163314610cd057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a03163314610d4157600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615610d6a57600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610de757600080fd5b60035460a060020a900460ff1615610dfe57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b600354600160a060020a03163314610ece57600080fd5b600160a060020a038216600090815260208190526040902054811115610ef357600080fd5b600160a060020a038216600090815260208190526040902054610f1c908263ffffffff61144f16565b600160a060020a038316600090815260208190526040902055600154610f48908263ffffffff61144f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206118f68339815191529181900360200190a35050565b60035460009060a060020a900460ff1615610fd757600080fd5b60055460a060020a900460ff161561109157600554604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0386811660248301526044820186905291519190921691636e18980a9160648083019260209291908290030181600087803b15801561105e57600080fd5b505af1158015611072573d6000803e3d6000fd5b505050506040513d602081101561108857600080fd5b50519050610a96565b61109b8383611461565b9050610a96565b60035460009060a060020a900460ff16156110bc57600080fd5b610a938383611485565b60055460009060a060020a900460ff161561115d57600554604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e916044808301926020929190829003018186803b15801561114957600080fd5b505afa158015611072573d6000803e3d6000fd5b61109b838361151e565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107215780601f106106f657610100808354040283529160200191610721565b600354600160a060020a031633146111d957600080fd5b6111e281611549565b50565b60035460009060a060020a900460ff16156111ff57600080fd5b610a9383836115c7565b60035460009060a060020a900460ff161561122357600080fd5b61096984848461162d565b81810182811015610a9657fe5b600354600090600160a060020a0316331461125557600080fd5b6003547501000000000000000000000000000000000000000000900460ff161561127e57600080fd5b600154611291908363ffffffff61122e16565b600155600160a060020a0383166000908152602081905260409020546112bd908363ffffffff61122e16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206118f68339815191529181900360200190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061139957336000908152600260209081526040808320600160a060020a03881684529091528120556113ce565b6113a9818463ffffffff61144f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60008282111561145b57fe5b50900390565b60035460009060a060020a900460ff161561147b57600080fd5b610a938383611790565b336000908152600260209081526040808320600160a060020a03861684529091528120546114b9908363ffffffff61122e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a038116151561155e57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a03831660009081526020819052604081205482111561165257600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561168257600080fd5b600160a060020a038316151561169757600080fd5b600160a060020a0384166000908152602081905260409020546116c0908363ffffffff61144f16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546116f5908363ffffffff61122e16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611737908363ffffffff61144f16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206118f6833981519152929181900390910190a35060019392505050565b336000908152602081905260408120548211156117ac57600080fd5b600160a060020a03831615156117c157600080fd5b336000908152602081905260409020546117e1908363ffffffff61144f16565b3360009081526020819052604080822092909255600160a060020a03851681522054611813908363ffffffff61122e16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206118f68339815191529281900390910190a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061189e57805160ff19168380011785556118cb565b828001600101855582156118cb579182015b828111156118cb5782518255916020019190600101906118b0565b506118d79291506118db565b5090565b61087f91905b808211156118d757600081556001016118e156feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820600474dcaced590ebf3b1ab6aa65e800b93c640ce03414d98a0ca9106d6085820029

Swarm Source

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