ETH Price: $2,112.63 (+1.24%)

Token

Dentix (DNTX)
 

Overview

Max Total Supply

548,194.5615511 DNTX

Holders

74

Transfers

-
0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
DNTXToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-02-02
*/

pragma solidity ^0.4.18;

/** 
 * DENTIX GLOBAL LIMITED
 * https://dentix.io
 */

// ==== Open Zeppelin library ===

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  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 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 SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

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

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
  function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
    assert(token.transfer(to, value));
  }

  function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
    assert(token.transferFrom(from, to, value));
  }

  function safeApprove(ERC20 token, address spender, uint256 value) internal {
    assert(token.approve(spender, value));
  }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


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


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


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

/**
 * @title Contracts that should not own Contracts
 * @author Remco Bloemen <remco@2π.com>
 * @dev Should contracts (anything Ownable) end up being owned by this contract, it allows the owner
 * of this contract to reclaim ownership of the contracts.
 */
contract HasNoContracts is Ownable {

  /**
   * @dev Reclaim ownership of Ownable contracts
   * @param contractAddr The address of the Ownable to be reclaimed.
   */
  function reclaimContract(address contractAddr) external onlyOwner {
    Ownable contractInst = Ownable(contractAddr);
    contractInst.transferOwnership(owner);
  }
}

/**
 * @title Contracts that should be able to recover tokens
 * @author SylTi
 * @dev This allow a contract to recover any ERC20 token received in a contract by transferring the balance to the contract owner.
 * This will prevent any accidental loss of tokens.
 */
contract CanReclaimToken is Ownable {
  using SafeERC20 for ERC20Basic;

  /**
   * @dev Reclaim all ERC20Basic compatible tokens
   * @param token ERC20Basic The address of the token contract
   */
  function reclaimToken(ERC20Basic token) external onlyOwner {
    uint256 balance = token.balanceOf(this);
    token.safeTransfer(owner, balance);
  }

}

/**
 * @title Contracts that should not own Tokens
 * @author Remco Bloemen <remco@2π.com>
 * @dev This blocks incoming ERC23 tokens to prevent accidental loss of tokens.
 * Should tokens (any ERC20Basic compatible) end up in the contract, it allows the
 * owner to reclaim the tokens.
 */
contract HasNoTokens is CanReclaimToken {

 /**
  * @dev Reject all ERC23 compatible tokens
  * @param from_ address The address that is transferring the tokens
  * @param value_ uint256 the amount of the specified token
  * @param data_ Bytes The data passed from the caller.
  */
  function tokenFallback(address from_, uint256 value_, bytes data_) pure external {
    from_;
    value_;
    data_;
    revert();
  }

}

/**
 * @title Destructible
 * @dev Base contract that can be destroyed by owner. All funds in contract will be sent to the owner.
 */
contract Destructible is Ownable {

  function Destructible() public payable { }

  /**
   * @dev Transfers the current balance to the owner and terminates the contract.
   */
  function destroy() onlyOwner public {
    selfdestruct(owner);
  }

  function destroyAndSend(address _recipient) onlyOwner public {
    selfdestruct(_recipient);
  }
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

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

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

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

}

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

  /**
   * 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
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  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);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */

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

  bool public mintingFinished = false;


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

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

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

/**
 * @title TokenVesting
 * @dev A token holder contract that can release its token balance gradually like a
 * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
 * owner.
 */
contract TokenVesting is Ownable {
  using SafeMath for uint256;
  using SafeERC20 for ERC20Basic;

  event Released(uint256 amount);
  event Revoked();

  // beneficiary of tokens after they are released
  address public beneficiary;

  uint256 public cliff;
  uint256 public start;
  uint256 public duration;

  bool public revocable;

  mapping (address => uint256) public released;
  mapping (address => bool) public revoked;

  /**
   * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
   * _beneficiary, gradually in a linear fashion until _start + _duration. By then all
   * of the balance will have vested.
   * @param _beneficiary address of the beneficiary to whom vested tokens are transferred
   * @param _cliff duration in seconds of the cliff in which tokens will begin to vest
   * @param _duration duration in seconds of the period in which the tokens will vest
   * @param _revocable whether the vesting is revocable or not
   */
  function TokenVesting(address _beneficiary, uint256 _start, uint256 _cliff, uint256 _duration, bool _revocable) public {
    require(_beneficiary != address(0));
    require(_cliff <= _duration);

    beneficiary = _beneficiary;
    revocable = _revocable;
    duration = _duration;
    cliff = _start.add(_cliff);
    start = _start;
  }

  /**
   * @notice Transfers vested tokens to beneficiary.
   * @param token ERC20 token which is being vested
   */
  function release(ERC20Basic token) public {
    uint256 unreleased = releasableAmount(token);

    require(unreleased > 0);

    released[token] = released[token].add(unreleased);

    token.safeTransfer(beneficiary, unreleased);

    Released(unreleased);
  }

  /**
   * @notice Allows the owner to revoke the vesting. Tokens already vested
   * remain in the contract, the rest are returned to the owner.
   * @param token ERC20 token which is being vested
   */
  function revoke(ERC20Basic token) public onlyOwner {
    require(revocable);
    require(!revoked[token]);

    uint256 balance = token.balanceOf(this);

    uint256 unreleased = releasableAmount(token);
    uint256 refund = balance.sub(unreleased);

    revoked[token] = true;

    token.safeTransfer(owner, refund);

    Revoked();
  }

  /**
   * @dev Calculates the amount that has already vested but hasn't been released yet.
   * @param token ERC20 token which is being vested
   */
  function releasableAmount(ERC20Basic token) public view returns (uint256) {
    return vestedAmount(token).sub(released[token]);
  }

  /**
   * @dev Calculates the amount that has already vested.
   * @param token ERC20 token which is being vested
   */
  function vestedAmount(ERC20Basic token) public view returns (uint256) {
    uint256 currentBalance = token.balanceOf(this);
    uint256 totalBalance = currentBalance.add(released[token]);

    if (now < cliff) {
      return 0;
    } else if (now >= start.add(duration) || revoked[token]) {
      return totalBalance;
    } else {
      return totalBalance.mul(now.sub(start)).div(duration);
    }
  }
}


// ==== AALM Contracts ===

contract BurnableToken is StandardToken {
    using SafeMath for uint256;

    event Burn(address indexed from, uint256 amount);
    event BurnRewardIncreased(address indexed from, uint256 value);

    /**
    * @dev Sending ether to contract increases burning reward 
    */
    function() public payable {
        if(msg.value > 0){
            BurnRewardIncreased(msg.sender, msg.value);    
        }
    }

    /**
     * @dev Calculates how much ether one will receive in reward for burning tokens
     * @param _amount of tokens to be burned
     */
    function burnReward(uint256 _amount) public constant returns(uint256){
        return this.balance.mul(_amount).div(totalSupply);
    }

    /**
    * @dev Burns tokens and send reward
    * This is internal function because it DOES NOT check 
    * if _from has allowance to burn tokens.
    * It is intended to be used in transfer() and transferFrom() which do this check.
    * @param _from The address which you want to burn tokens from
    * @param _amount of tokens to be burned
    */
    function burn(address _from, uint256 _amount) internal returns(bool){
        require(balances[_from] >= _amount);
        
        uint256 reward = burnReward(_amount);
        assert(this.balance - reward > 0);

        balances[_from] = balances[_from].sub(_amount);
        totalSupply = totalSupply.sub(_amount);
        //assert(totalSupply >= 0); //Check is not needed because totalSupply.sub(value) will already throw if this condition is not met
        
        _from.transfer(reward);
        Burn(_from, _amount);
        Transfer(_from, address(0), _amount);
        return true;
    }

    /**
    * @dev Transfers or burns tokens
    * Burns tokens transferred to this contract itself or to zero address
    * @param _to The address to transfer to or token contract address to burn.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        if( (_to == address(this)) || (_to == 0) ){
            return burn(msg.sender, _value);
        }else{
            return super.transfer(_to, _value);
        }
    }

    /**
    * @dev Transfer tokens from one address to another 
    * or burns them if _to is this contract or zero address
    * @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 amout of tokens to be transfered
    */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        if( (_to == address(this)) || (_to == 0) ){
            var _allowance = allowed[_from][msg.sender];
            //require (_value <= _allowance); //Check is not needed because _allowance.sub(_value) will already throw if this condition is not met
            allowed[_from][msg.sender] = _allowance.sub(_value);
            return burn(_from, _value);
        }else{
            return super.transferFrom(_from, _to, _value);
        }
    }

}
contract DNTXToken is BurnableToken, MintableToken, HasNoContracts, HasNoTokens {
    string public symbol = 'DNTX';
    string public name = 'Dentix';
    uint8 public constant decimals = 18;

    address founder;    //founder address to allow him transfer tokens while minting
    function init(address _founder) onlyOwner public{
        founder = _founder;
    }

    /**
     * Allow transfer only after crowdsale finished
     */
    modifier canTransfer() {
        require(mintingFinished || msg.sender == founder);
        _;
    }
    
    function transfer(address _to, uint256 _value) canTransfer public returns (bool) {
        return BurnableToken.transfer(_to, _value);
    }

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

Contract Security Audit

Contract ABI

API
[{"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":false,"inputs":[{"name":"token","type":"address"}],"name":"reclaimToken","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":"_founder","type":"address"}],"name":"init","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"contractAddr","type":"address"}],"name":"reclaimContract","outputs":[],"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":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burnReward","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"from_","type":"address"},{"name":"value_","type":"uint256"},{"name":"data_","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"stateMutability":"pure","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"BurnRewardIncreased","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"}]

606060409081526003805460a060020a60ff0219169055805190810160405260048082527f444e54580000000000000000000000000000000000000000000000000000000060208301529080516200005c929160200190620000c8565b5060408051908101604052600681527f44656e746978000000000000000000000000000000000000000000000000000060208201526005908051620000a6929160200190620000c8565b5060038054600160a060020a03191633600160a060020a03161790556200016d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200010b57805160ff19168380011785556200013b565b828001600101855582156200013b579182015b828111156200013b5782518255916020019190600101906200011e565b50620001499291506200014d565b5090565b6200016a91905b8082111562000149576000815560010162000154565b90565b61123a806200017d6000396000f3006060604052600436106101035763ffffffff60e060020a60003504166305d2035b811461014c57806306fdde0314610173578063095ea7b3146101fd57806317ffc3201461021f57806318160ddd1461023e57806319ab453c1461026357806323b872dd146102825780632aed7f3f146102aa578063313ce567146102c957806340c10f19146102f2578063661884631461031457806370a08231146103365780637d64bcb4146103555780638da5cb5b1461036857806395d89b4114610397578063a9059cbb146103aa578063b5e8cf02146103cc578063c0ee0b8a146103e2578063d73dd62314610411578063dd62ed3e14610433578063f2fde38b14610458575b600034111561014a5733600160a060020a03167fce8ffe665687dd502d71b22b34b49459b58c3a2b2b98a9bb483c38e6709ef9e13460405190815260200160405180910390a25b005b341561015757600080fd5b61015f610477565b604051901515815260200160405180910390f35b341561017e57600080fd5b610186610487565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c25780820151838201526020016101aa565b50505050905090810190601f1680156101ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020857600080fd5b61015f600160a060020a0360043516602435610525565b341561022a57600080fd5b61014a600160a060020a0360043516610592565b341561024957600080fd5b610251610648565b60405190815260200160405180910390f35b341561026e57600080fd5b61014a600160a060020a036004351661064e565b341561028d57600080fd5b61015f600160a060020a0360043581169060243516604435610698565b34156102b557600080fd5b61014a600160a060020a03600435166106df565b34156102d457600080fd5b6102dc61076c565b60405160ff909116815260200160405180910390f35b34156102fd57600080fd5b61015f600160a060020a0360043516602435610771565b341561031f57600080fd5b61015f600160a060020a036004351660243561086c565b341561034157600080fd5b610251600160a060020a0360043516610968565b341561036057600080fd5b61015f610983565b341561037357600080fd5b61037b610a0e565b604051600160a060020a03909116815260200160405180910390f35b34156103a257600080fd5b610186610a1d565b34156103b557600080fd5b61015f600160a060020a0360043516602435610a88565b34156103d757600080fd5b610251600435610acd565b34156103ed57600080fd5b61014a60048035600160a060020a0316906024803591604435918201910135610afb565b341561041c57600080fd5b61015f600160a060020a0360043516602435610b00565b341561043e57600080fd5b610251600160a060020a0360043581169060243516610ba4565b341561046357600080fd5b61014a600160a060020a0360043516610bcf565b60035460a060020a900460ff1681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035460009033600160a060020a039081169116146105b057600080fd5b81600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561060757600080fd5b6102c65a03f1151561061857600080fd5b50505060405180516003549092506106449150600160a060020a0384811691168363ffffffff610c6a16565b5050565b60005481565b60035433600160a060020a0390811691161461066957600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460009060a060020a900460ff16806106c1575060065433600160a060020a039081169116145b15156106cc57600080fd5b6106d7848484610cef565b949350505050565b60035460009033600160a060020a039081169116146106fd57600080fd5b506003548190600160a060020a038083169163f2fde38b911660405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b151561075457600080fd5b6102c65a03f1151561076557600080fd5b5050505050565b601281565b60035460009033600160a060020a0390811691161461078f57600080fd5b60035460a060020a900460ff16156107a657600080fd5b6000546107b9908363ffffffff610da116565b6000908155600160a060020a0384168152600160205260409020546107e4908363ffffffff610da116565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660006000805160206111ef8339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108c957600160a060020a033381166000908152600260209081526040808320938816835292905290812055610900565b6108d9818463ffffffff610db016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a039081169116146109a157600080fd5b60035460a060020a900460ff16156109b857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051d5780601f106104f25761010080835404028352916020019161051d565b60035460009060a060020a900460ff1680610ab1575060065433600160a060020a039081169116145b1515610abc57600080fd5b610ac68383610dc2565b9392505050565b6000805461058c90610aef600160a060020a033016318563ffffffff610e0b16565b9063ffffffff610e3616565b600080fd5b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b38908363ffffffff610da116565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610bea57600080fd5b600160a060020a0381161515610bff57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610cc757600080fd5b6102c65a03f11515610cd857600080fd5b505050604051805190501515610cea57fe5b505050565b60008030600160a060020a031684600160a060020a03161480610d195750600160a060020a038416155b15610d8e5750600160a060020a0380851660009081526002602090815260408083203390941683529290522054610d56818463ffffffff610db016565b600160a060020a0380871660009081526002602090815260408083203390941683529290522055610d878584610e4d565b9150610d99565b610d87858585610f95565b509392505050565b600082820183811015610ac657fe5b600082821115610dbc57fe5b50900390565b600030600160a060020a031683600160a060020a03161480610deb5750600160a060020a038316155b15610e0157610dfa3383610e4d565b905061058c565b610dfa8383611105565b600080831515610e1e5760009150610961565b50828202828482811515610e2e57fe5b0414610ac657fe5b6000808284811515610e4457fe5b04949350505050565b600160a060020a038216600090815260016020526040812054819083901015610e7557600080fd5b610e7e83610acd565b90506000600160a060020a0330163182900311610e9757fe5b600160a060020a038416600090815260016020526040902054610ec0908463ffffffff610db016565b600160a060020a03851660009081526001602052604081209190915554610eed908463ffffffff610db016565b600055600160a060020a03841681156108fc0282604051600060405180830381858888f193505050501515610f2157600080fd5b83600160a060020a03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58460405190815260200160405180910390a26000600160a060020a0385166000805160206111ef8339815191528560405190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610fac57600080fd5b600160a060020a038416600090815260016020526040902054821115610fd157600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561100457600080fd5b600160a060020a03841660009081526001602052604090205461102d908363ffffffff610db016565b600160a060020a038086166000908152600160205260408082209390935590851681522054611062908363ffffffff610da116565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546110aa908363ffffffff610db016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206111ef8339815191529085905190815260200160405180910390a35060019392505050565b6000600160a060020a038316151561111c57600080fd5b600160a060020a03331660009081526001602052604090205482111561114157600080fd5b600160a060020a03331660009081526001602052604090205461116a908363ffffffff610db016565b600160a060020a03338116600090815260016020526040808220939093559085168152205461119f908363ffffffff610da116565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206111ef8339815191529085905190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820213e656fe786980c3906e8ff886a2d9dd159d0c9bf4d333a0f4c5ab3d994250a0029

Deployed Bytecode

0x6060604052600436106101035763ffffffff60e060020a60003504166305d2035b811461014c57806306fdde0314610173578063095ea7b3146101fd57806317ffc3201461021f57806318160ddd1461023e57806319ab453c1461026357806323b872dd146102825780632aed7f3f146102aa578063313ce567146102c957806340c10f19146102f2578063661884631461031457806370a08231146103365780637d64bcb4146103555780638da5cb5b1461036857806395d89b4114610397578063a9059cbb146103aa578063b5e8cf02146103cc578063c0ee0b8a146103e2578063d73dd62314610411578063dd62ed3e14610433578063f2fde38b14610458575b600034111561014a5733600160a060020a03167fce8ffe665687dd502d71b22b34b49459b58c3a2b2b98a9bb483c38e6709ef9e13460405190815260200160405180910390a25b005b341561015757600080fd5b61015f610477565b604051901515815260200160405180910390f35b341561017e57600080fd5b610186610487565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c25780820151838201526020016101aa565b50505050905090810190601f1680156101ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020857600080fd5b61015f600160a060020a0360043516602435610525565b341561022a57600080fd5b61014a600160a060020a0360043516610592565b341561024957600080fd5b610251610648565b60405190815260200160405180910390f35b341561026e57600080fd5b61014a600160a060020a036004351661064e565b341561028d57600080fd5b61015f600160a060020a0360043581169060243516604435610698565b34156102b557600080fd5b61014a600160a060020a03600435166106df565b34156102d457600080fd5b6102dc61076c565b60405160ff909116815260200160405180910390f35b34156102fd57600080fd5b61015f600160a060020a0360043516602435610771565b341561031f57600080fd5b61015f600160a060020a036004351660243561086c565b341561034157600080fd5b610251600160a060020a0360043516610968565b341561036057600080fd5b61015f610983565b341561037357600080fd5b61037b610a0e565b604051600160a060020a03909116815260200160405180910390f35b34156103a257600080fd5b610186610a1d565b34156103b557600080fd5b61015f600160a060020a0360043516602435610a88565b34156103d757600080fd5b610251600435610acd565b34156103ed57600080fd5b61014a60048035600160a060020a0316906024803591604435918201910135610afb565b341561041c57600080fd5b61015f600160a060020a0360043516602435610b00565b341561043e57600080fd5b610251600160a060020a0360043581169060243516610ba4565b341561046357600080fd5b61014a600160a060020a0360043516610bcf565b60035460a060020a900460ff1681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035460009033600160a060020a039081169116146105b057600080fd5b81600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561060757600080fd5b6102c65a03f1151561061857600080fd5b50505060405180516003549092506106449150600160a060020a0384811691168363ffffffff610c6a16565b5050565b60005481565b60035433600160a060020a0390811691161461066957600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460009060a060020a900460ff16806106c1575060065433600160a060020a039081169116145b15156106cc57600080fd5b6106d7848484610cef565b949350505050565b60035460009033600160a060020a039081169116146106fd57600080fd5b506003548190600160a060020a038083169163f2fde38b911660405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b151561075457600080fd5b6102c65a03f1151561076557600080fd5b5050505050565b601281565b60035460009033600160a060020a0390811691161461078f57600080fd5b60035460a060020a900460ff16156107a657600080fd5b6000546107b9908363ffffffff610da116565b6000908155600160a060020a0384168152600160205260409020546107e4908363ffffffff610da116565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660006000805160206111ef8339815191528460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108c957600160a060020a033381166000908152600260209081526040808320938816835292905290812055610900565b6108d9818463ffffffff610db016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a039081169116146109a157600080fd5b60035460a060020a900460ff16156109b857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561051d5780601f106104f25761010080835404028352916020019161051d565b60035460009060a060020a900460ff1680610ab1575060065433600160a060020a039081169116145b1515610abc57600080fd5b610ac68383610dc2565b9392505050565b6000805461058c90610aef600160a060020a033016318563ffffffff610e0b16565b9063ffffffff610e3616565b600080fd5b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b38908363ffffffff610da116565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610bea57600080fd5b600160a060020a0381161515610bff57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610cc757600080fd5b6102c65a03f11515610cd857600080fd5b505050604051805190501515610cea57fe5b505050565b60008030600160a060020a031684600160a060020a03161480610d195750600160a060020a038416155b15610d8e5750600160a060020a0380851660009081526002602090815260408083203390941683529290522054610d56818463ffffffff610db016565b600160a060020a0380871660009081526002602090815260408083203390941683529290522055610d878584610e4d565b9150610d99565b610d87858585610f95565b509392505050565b600082820183811015610ac657fe5b600082821115610dbc57fe5b50900390565b600030600160a060020a031683600160a060020a03161480610deb5750600160a060020a038316155b15610e0157610dfa3383610e4d565b905061058c565b610dfa8383611105565b600080831515610e1e5760009150610961565b50828202828482811515610e2e57fe5b0414610ac657fe5b6000808284811515610e4457fe5b04949350505050565b600160a060020a038216600090815260016020526040812054819083901015610e7557600080fd5b610e7e83610acd565b90506000600160a060020a0330163182900311610e9757fe5b600160a060020a038416600090815260016020526040902054610ec0908463ffffffff610db016565b600160a060020a03851660009081526001602052604081209190915554610eed908463ffffffff610db016565b600055600160a060020a03841681156108fc0282604051600060405180830381858888f193505050501515610f2157600080fd5b83600160a060020a03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58460405190815260200160405180910390a26000600160a060020a0385166000805160206111ef8339815191528560405190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610fac57600080fd5b600160a060020a038416600090815260016020526040902054821115610fd157600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561100457600080fd5b600160a060020a03841660009081526001602052604090205461102d908363ffffffff610db016565b600160a060020a038086166000908152600160205260408082209390935590851681522054611062908363ffffffff610da116565b600160a060020a038085166000908152600160209081526040808320949094558783168252600281528382203390931682529190915220546110aa908363ffffffff610db016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206111ef8339815191529085905190815260200160405180910390a35060019392505050565b6000600160a060020a038316151561111c57600080fd5b600160a060020a03331660009081526001602052604090205482111561114157600080fd5b600160a060020a03331660009081526001602052604090205461116a908363ffffffff610db016565b600160a060020a03338116600090815260016020526040808220939093559085168152205461119f908363ffffffff610da116565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206111ef8339815191529085905190815260200160405180910390a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820213e656fe786980c3906e8ff886a2d9dd159d0c9bf4d333a0f4c5ab3d994250a0029

Swarm Source

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