ETH Price: $2,985.84 (-0.54%)
Gas: 4 Gwei

Token

DrinkChain (Drink)
 

Overview

Max Total Supply

999,999,999 Drink

Holders

6,721

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00007294 Drink

Value
$0.00
0xd23c9c2752f1040eb09655b81d9e3dfb74eacf3f
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:
AdvancedToken

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity 0.4.16;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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

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

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

  mapping(address => uint256) balances;

  /**
  * @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 > 0 && _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 constant returns (uint256 balance) {
    return balances[_owner];
  }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value > 0 && _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 constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }
}

/**
 * @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() {
    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) onlyOwner public {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


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

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

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

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

/**
 * @title Pausable token
 *
 * @dev StandardToken modified with pausable transfers.
 **/

contract PausableToken is StandardToken, Pausable {
  mapping (address => bool) public frozenAccount;
  event FrozenFunds(address target, bool frozen);

  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    require(!frozenAccount[msg.sender]);
    return super.transfer(_to, _value);
  }

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

  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }
  
  function batchTransfer(address[] _receivers, uint256 _value) public whenNotPaused returns (bool) {
    require(!frozenAccount[msg.sender]);
    uint cnt = _receivers.length;
    uint256 amount = uint256(cnt).mul(_value);
    require(cnt > 0 && cnt <= 121);
    require(_value > 0 && balances[msg.sender] >= amount);
    
    balances[msg.sender] = balances[msg.sender].sub(amount);
    for (uint i = 0; i < cnt; i++) {
        require (_receivers[i] != 0x0);
        balances[_receivers[i]] = balances[_receivers[i]].add(_value);
        Transfer(msg.sender, _receivers[i], _value);
    }
    return true;
  }
  
  function freezeAccount(address target, bool freeze) onlyOwner public {
    frozenAccount[target] = freeze;
    FrozenFunds(target, freeze);
  }
  
  function batchFreeze(address[] addresses, bool freeze) onlyOwner public {
    for (uint i = 0; i < addresses.length; i++) {
        frozenAccount[addresses[i]] = freeze;
        FrozenFunds(addresses[i], freeze);
    }
  }
}

/**
 * @title Advanced Token
 *
 * @dev Implementation of Advanced Token based on the basic standard token.
 */
contract AdvancedToken is PausableToken {
    /**
    * Public variables of the token
    * The following variables are OPTIONAL vanities. One does not have to include them.
    * They allow one to customise the token contract & in no way influences the core functionality.
    * Some wallets/interfaces might not even bother to look at this information.
    */
    string public name = "DrinkChain";
    string public symbol = "Drink";
    string public version = '2.0.0';
    uint8 public decimals = 18;

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     */
    function AdvancedToken() {
      totalSupply = 999999999 * (10**(uint256(decimals)));
      balances[msg.sender] = totalSupply;    // Give the creator all initial tokens
    }

    function () external payable {
        //if ether is sent to this address, send it back.
        revert();
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_receivers","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"freeze","type":"bool"}],"name":"batchFreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

606060409081526003805460a060020a60ff02191690558051908101604052600a81527f4472696e6b436861696e00000000000000000000000000000000000000000000602082015260059080516200005d9291602001906200015a565b5060408051908101604052600581527f4472696e6b00000000000000000000000000000000000000000000000000000060208201526006908051620000a79291602001906200015a565b5060408051908101604052600581527f322e302e3000000000000000000000000000000000000000000000000000000060208201526007908051620000f19291602001906200015a565b506008805460ff1916601217905534156200010b57600080fd5b5b5b60038054600160a060020a03191633600160a060020a03161790555b60085460ff16600a0a633b9ac9ff02600081815533600160a060020a03168152600160205260409020555b62000204565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b5b50620001dc929150620001e0565b5090565b6200020191905b80821115620001dc5760008155600101620001e7565b5090565b90565b6111af80620002146000396000f300606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010c578063095ea7b31461019757806318160ddd146101cd57806323b872dd146101f2578063313ce5671461022e5780633f4ba83a1461025757806354fd4d501461026c5780635c975abb146102f757806370a082311461031e57806383f12fec1461034f5780638456cb59146103b45780638da5cb5b146103c957806395d89b41146103f8578063a9059cbb14610483578063ae13efe0146104b9578063b414d4b61461050e578063dd62ed3e14610541578063e724529c14610578578063f2fde38b1461059e575b5b600080fd5b005b341561011757600080fd5b61011f6105bf565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c5780820151818401525b602001610143565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a257600080fd5b6101b9600160a060020a036004351660243561065d565b604051901515815260200160405180910390f35b34156101d857600080fd5b6101e061068b565b60405190815260200160405180910390f35b34156101fd57600080fd5b6101b9600160a060020a0360043581169060243516604435610691565b604051901515815260200160405180910390f35b341561023957600080fd5b6102416106e7565b60405160ff909116815260200160405180910390f35b341561026257600080fd5b61010a6106f0565b005b341561027757600080fd5b61011f610772565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c5780820151818401525b602001610143565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030257600080fd5b6101b9610810565b604051901515815260200160405180910390f35b341561032957600080fd5b6101e0600160a060020a0360043516610820565b60405190815260200160405180910390f35b341561035a57600080fd5b6101b96004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650509335935061083f92505050565b604051901515815260200160405180910390f35b34156103bf57600080fd5b61010a610a51565b005b34156103d457600080fd5b6103dc610ad8565b604051600160a060020a03909116815260200160405180910390f35b341561040357600080fd5b61011f610ae7565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c5780820151818401525b602001610143565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048e57600080fd5b6101b9600160a060020a0360043516602435610b85565b604051901515815260200160405180910390f35b34156104c457600080fd5b61010a6004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650505050913515159150610bd99050565b005b341561051957600080fd5b6101b9600160a060020a0360043516610cb2565b604051901515815260200160405180910390f35b341561054c57600080fd5b6101e0600160a060020a0360043581169060243516610cc7565b60405190815260200160405180910390f35b341561058357600080fd5b61010a600160a060020a03600435166024351515610cf4565b005b34156105a957600080fd5b61010a600160a060020a0360043516610d82565b005b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b505050505081565b60035460009060a060020a900460ff161561067757600080fd5b6106818383610e1b565b90505b5b92915050565b60005481565b60035460009060a060020a900460ff16156106ab57600080fd5b600160a060020a03841660009081526004602052604090205460ff16156106d157600080fd5b6106dc848484610e88565b90505b5b9392505050565b60085460ff1681565b60035433600160a060020a0390811691161461070b57600080fd5b60035460a060020a900460ff16151561072357600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b505050505081565b60035460a060020a900460ff1681565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009081908190819060a060020a900460ff161561085f57600080fd5b600160a060020a03331660009081526004602052604090205460ff161561088557600080fd5b85519250610899838663ffffffff61101916565b91506000831180156108ac575060798311155b15156108b757600080fd5b6000851180156108e05750600160a060020a033316600090815260016020526040902054829010155b15156108eb57600080fd5b600160a060020a033316600090815260016020526040902054610914908363ffffffff61104816565b600160a060020a03331660009081526001602052604081209190915590505b82811015610a425785818151811061094757fe5b90602001906020020151600160a060020a0316151561096557600080fd5b6109a9856001600089858151811061097957fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff61105f16565b600160008884815181106109b957fe5b90602001906020020151600160a060020a031681526020810191909152604001600020558581815181106109e957fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405190815260200160405180910390a35b600101610933565b600193505b5b50505092915050565b60035433600160a060020a03908116911614610a6c57600080fd5b60035460a060020a900460ff1615610a8357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b505050505081565b60035460009060a060020a900460ff1615610b9f57600080fd5b600160a060020a03331660009081526004602052604090205460ff1615610bc557600080fd5b6106818383611079565b90505b5b92915050565b60035460009033600160a060020a03908116911614610bf757600080fd5b5060005b8251811015610cab578160046000858481518110610c1557fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff19169115159190911790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5838281518110610c7457fe5b9060200190602002015183604051600160a060020a039092168252151560208201526040908101905180910390a15b600101610bfb565b5b5b505050565b60046020526000908152604090205460ff1681565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610d0f57600080fd5b600160a060020a03821660009081526004602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60035433600160a060020a03908116911614610d9d57600080fd5b600160a060020a0381161515610db257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6000600160a060020a0383161515610e9f57600080fd5b600082118015610ec75750600160a060020a0384166000908152600160205260409020548211155b1515610ed257600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610f0557600080fd5b600160a060020a038416600090815260016020526040902054610f2e908363ffffffff61104816565b600160a060020a038086166000908152600160205260408082209390935590851681522054610f63908363ffffffff61105f16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610fab908363ffffffff61104816565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b6000828202831580611035575082848281151561103257fe5b04145b151561103d57fe5b8091505b5092915050565b60008282111561105457fe5b508082035b92915050565b60008282018381101561103d57fe5b8091505b5092915050565b6000600160a060020a038316151561109057600080fd5b6000821180156110b85750600160a060020a0333166000908152600160205260409020548211155b15156110c357600080fd5b600160a060020a0333166000908152600160205260409020546110ec908363ffffffff61104816565b600160a060020a033381166000908152600160205260408082209390935590851681522054611121908363ffffffff61105f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a72305820593ec9d7a67114f7fcbd3acaf1a03797aabd5ab121f60d139fa45282bf39a9950029

Deployed Bytecode

0x606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010c578063095ea7b31461019757806318160ddd146101cd57806323b872dd146101f2578063313ce5671461022e5780633f4ba83a1461025757806354fd4d501461026c5780635c975abb146102f757806370a082311461031e57806383f12fec1461034f5780638456cb59146103b45780638da5cb5b146103c957806395d89b41146103f8578063a9059cbb14610483578063ae13efe0146104b9578063b414d4b61461050e578063dd62ed3e14610541578063e724529c14610578578063f2fde38b1461059e575b5b600080fd5b005b341561011757600080fd5b61011f6105bf565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c5780820151818401525b602001610143565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a257600080fd5b6101b9600160a060020a036004351660243561065d565b604051901515815260200160405180910390f35b34156101d857600080fd5b6101e061068b565b60405190815260200160405180910390f35b34156101fd57600080fd5b6101b9600160a060020a0360043581169060243516604435610691565b604051901515815260200160405180910390f35b341561023957600080fd5b6102416106e7565b60405160ff909116815260200160405180910390f35b341561026257600080fd5b61010a6106f0565b005b341561027757600080fd5b61011f610772565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c5780820151818401525b602001610143565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030257600080fd5b6101b9610810565b604051901515815260200160405180910390f35b341561032957600080fd5b6101e0600160a060020a0360043516610820565b60405190815260200160405180910390f35b341561035a57600080fd5b6101b96004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650509335935061083f92505050565b604051901515815260200160405180910390f35b34156103bf57600080fd5b61010a610a51565b005b34156103d457600080fd5b6103dc610ad8565b604051600160a060020a03909116815260200160405180910390f35b341561040357600080fd5b61011f610ae7565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561015c5780820151818401525b602001610143565b50505050905090810190601f1680156101895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048e57600080fd5b6101b9600160a060020a0360043516602435610b85565b604051901515815260200160405180910390f35b34156104c457600080fd5b61010a6004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650505050913515159150610bd99050565b005b341561051957600080fd5b6101b9600160a060020a0360043516610cb2565b604051901515815260200160405180910390f35b341561054c57600080fd5b6101e0600160a060020a0360043581169060243516610cc7565b60405190815260200160405180910390f35b341561058357600080fd5b61010a600160a060020a03600435166024351515610cf4565b005b34156105a957600080fd5b61010a600160a060020a0360043516610d82565b005b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b505050505081565b60035460009060a060020a900460ff161561067757600080fd5b6106818383610e1b565b90505b5b92915050565b60005481565b60035460009060a060020a900460ff16156106ab57600080fd5b600160a060020a03841660009081526004602052604090205460ff16156106d157600080fd5b6106dc848484610e88565b90505b5b9392505050565b60085460ff1681565b60035433600160a060020a0390811691161461070b57600080fd5b60035460a060020a900460ff16151561072357600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b505050505081565b60035460a060020a900460ff1681565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009081908190819060a060020a900460ff161561085f57600080fd5b600160a060020a03331660009081526004602052604090205460ff161561088557600080fd5b85519250610899838663ffffffff61101916565b91506000831180156108ac575060798311155b15156108b757600080fd5b6000851180156108e05750600160a060020a033316600090815260016020526040902054829010155b15156108eb57600080fd5b600160a060020a033316600090815260016020526040902054610914908363ffffffff61104816565b600160a060020a03331660009081526001602052604081209190915590505b82811015610a425785818151811061094757fe5b90602001906020020151600160a060020a0316151561096557600080fd5b6109a9856001600089858151811061097957fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff61105f16565b600160008884815181106109b957fe5b90602001906020020151600160a060020a031681526020810191909152604001600020558581815181106109e957fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405190815260200160405180910390a35b600101610933565b600193505b5b50505092915050565b60035433600160a060020a03908116911614610a6c57600080fd5b60035460a060020a900460ff1615610a8357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b505050505081565b60035460009060a060020a900460ff1615610b9f57600080fd5b600160a060020a03331660009081526004602052604090205460ff1615610bc557600080fd5b6106818383611079565b90505b5b92915050565b60035460009033600160a060020a03908116911614610bf757600080fd5b5060005b8251811015610cab578160046000858481518110610c1557fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff19169115159190911790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5838281518110610c7457fe5b9060200190602002015183604051600160a060020a039092168252151560208201526040908101905180910390a15b600101610bfb565b5b5b505050565b60046020526000908152604090205460ff1681565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610d0f57600080fd5b600160a060020a03821660009081526004602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60035433600160a060020a03908116911614610d9d57600080fd5b600160a060020a0381161515610db257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6000600160a060020a0383161515610e9f57600080fd5b600082118015610ec75750600160a060020a0384166000908152600160205260409020548211155b1515610ed257600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610f0557600080fd5b600160a060020a038416600090815260016020526040902054610f2e908363ffffffff61104816565b600160a060020a038086166000908152600160205260408082209390935590851681522054610f63908363ffffffff61105f16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610fab908363ffffffff61104816565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b6000828202831580611035575082848281151561103257fe5b04145b151561103d57fe5b8091505b5092915050565b60008282111561105457fe5b508082035b92915050565b60008282018381101561103d57fe5b8091505b5092915050565b6000600160a060020a038316151561109057600080fd5b6000821180156110b85750600160a060020a0333166000908152600160205260409020548211155b15156110c357600080fd5b600160a060020a0333166000908152600160205260409020546110ec908363ffffffff61104816565b600160a060020a033381166000908152600160205260408082209390935590851681522054611121908363ffffffff61105f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a72305820593ec9d7a67114f7fcbd3acaf1a03797aabd5ab121f60d139fa45282bf39a9950029

Swarm Source

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