ETH Price: $3,096.94 (+0.44%)
Gas: 7 Gwei

Token

GoldGate (BGG)
 

Overview

Max Total Supply

26,000,000 BGG

Holders

4,066

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
15,530 BGG

Value
$0.00
0x2dafa94892ec0a2a4886c2220302ecd7c4cfdf8e
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:
GoldGate

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-11-24
*/

pragma solidity ^0.4.15;

/**
* GoldGate Token Contract
* Copyright © 2017 by GoldGate https://goldgate.io
*/

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

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

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

  mapping(address => uint256) balances;

  /**
  * transfer token for a specified address
  */
  function transfer(address _to, uint256 _value) returns (bool) {
    require(_to != address(0));

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

  /**
  * Gets the balance of the specified address.
  */
  function balanceOf(address _owner) constant returns (uint256 balance) {
    return balances[_owner];
  }

}

/**
 * @title Ownable
 * The Ownable contract has an owner address, and provides basic authorization control
 */
contract Ownable {
  address public owner;


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


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

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


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

}

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

  bool public paused = false;


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

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

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

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

/**
 * @title Ownable
 */
contract GGOwnable is Ownable {

  address public newOwner;

  /**
   * Allows the current owner to transfer control of the contract to an otherOwner.
   */
  function transferOwnership(address otherOwner) onlyOwner {
    require(otherOwner != address(0));      
    newOwner = otherOwner;
  }

  /**
   * Finish ownership transfer.
   */
  function approveOwnership() {
    require(msg.sender == newOwner);
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
    newOwner = address(0);
  }
}


/**
 * @title Moderated
 * Moderator can make transfers from and to any account (including frozen).
 */
contract GGModerated is GGOwnable {

  address public moderator;
  address public newModerator;

  /**
   * Throws if called by any account other than the moderator.
   */
  modifier onlyModerator() {
    require(msg.sender == moderator);
    _;
  }

  /**
   * Throws if called by any account other than the owner or moderator.
   */
  modifier onlyOwnerOrModerator() {
    require((msg.sender == moderator) || (msg.sender == owner));
    _;
  }

  /**
   * Moderator same as owner
   */
  function GGModerated(){
    moderator = msg.sender;
  }

  /**
   * Allows the current moderator to transfer control of the contract to an otherModerator.
   */
  function transferModeratorship(address otherModerator) onlyModerator {
    newModerator = otherModerator;
  }

  /**
   * Complete moderatorship transfer.
   */
  function approveModeratorship() {
    require(msg.sender == newModerator);
    moderator = newModerator;
    newModerator = address(0);
  }

  /**
   * Removes moderator from the contract.
   */
  function removeModeratorship() onlyOwner {
      moderator = address(0);
  }

  function hasModerator() constant returns(bool) {
      return (moderator != address(0));
  }
}

/**
 * @title Pausable
 */
contract GGPausable is Pausable, GGModerated {
  /**
   * called by the owner or moderator to pause, triggers stopped state
   */
  function pause() onlyOwnerOrModerator whenNotPaused {
    paused = true;
    Pause();
  }

  /**
   * called by the owner or moderator to unpause, returns to normal state
   */
  function unpause() onlyOwnerOrModerator whenPaused {
    paused = false;
    Unpause();
  }
}

/**
 * @title Standard ERC20 token
 * Implementation of the basic standard token.
 */
contract StandardToken is ERC20, BasicToken {

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

  /**
   * transfer tokens from one address to another
   */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
    require(_to != address(0));

    var _allowance = allowed[_from][msg.sender];

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

  /**
   * Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   */
  function approve(address _spender, uint256 _value) returns (bool) {
    // to change the approve amount you first have to reduce the addresses`
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

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

  /**
   * function to check the amount of tokens that an owner allowed to a spender.
   */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }
  
  function increaseApproval (address _spender, uint _addedValue) 
    returns (bool success) {
    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) 
    returns (bool success) {
    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 SafeMath
 * 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;
  }
}

/**
 * Pausable token with moderator role and freeze address implementation
 **/
contract ModToken is StandardToken, GGPausable {

  mapping(address => bool) frozen;

  /**
   * check if given address is frozen. Freeze works only if moderator role is active
   */
  function isFrozen(address _addr) constant returns (bool){
      return frozen[_addr] && hasModerator();
  }

  /**
   * Freezes address (no transfer can be made from or to this address).
   */
  function freeze(address _addr) onlyModerator {
      frozen[_addr] = true;
  }

  /**
   * Unfreezes frozen address.
   */
  function unfreeze(address _addr) onlyModerator {
      frozen[_addr] = false;
  }

  /**
   * Declines transfers from/to frozen addresses.
   */
  function transfer(address _to, uint256 _value) whenNotPaused returns (bool) {
    require(!isFrozen(msg.sender));
    require(!isFrozen(_to));
    return super.transfer(_to, _value);
  }

  /**
   * Declines transfers from/to/by frozen addresses.
   */
  function transferFrom(address _from, address _to, uint256 _value) whenNotPaused returns (bool) {
    require(!isFrozen(msg.sender));
    require(!isFrozen(_from));
    require(!isFrozen(_to));
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * Allows moderator to transfer tokens from one address to another.
   */
  function moderatorTransferFrom(address _from, address _to, uint256 _value) onlyModerator returns (bool) {
    balances[_to] = balances[_to].add(_value);
    balances[_from] = balances[_from].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }
}

contract GoldGate is ModToken {
  string public constant version = "1.0.0";
  string public constant name = "GoldGate";
  string public constant symbol = "BGG";
  uint256 public constant decimals = 8;

  function GoldGate(uint256 _initialSupply) {   
    totalSupply = _initialSupply;
    balances[msg.sender] = _initialSupply;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"moderatorTransferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"moderator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"removeModeratorship","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"unfreeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"approveOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"otherModerator","type":"address"}],"name":"transferModeratorship","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"freeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"hasModerator","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"approveModeratorship","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newModerator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"otherOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"}],"payable":false,"type":"constructor"},{"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"}]

60606040526003805460a060020a60ff0219169055341561001f57600080fd5b604051602080611336833981016040528080519150505b5b5b60038054600160a060020a03191633600160a060020a03161790555b60058054600160a060020a03191633600160a060020a03161790555b6000818155600160a060020a03331681526001602052604090208190555b505b6112978061009f6000396000f300606060405236156101725763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610177578063095ea7b3146102025780630dd12d381461023857806318160ddd1461027457806323b872dd14610299578063313ce567146102d557806338743904146102fa5780633f4ba83a1461032957806343c8c30e1461033e57806345c8b1a61461035357806354fd4d50146103745780635c975abb146103ff578063661884631461042657806370a082311461045c578063742c81e41461048d5780638456cb59146104a2578063876ba3cd146104b75780638d1fdf2f146104d85780638da5cb5b146104f957806395d89b4114610528578063a9059cbb146105b3578063aed362c1146105e9578063afb47bb314610610578063c41addb514610625578063d4ee1d9014610654578063d73dd62314610683578063dd62ed3e146106b9578063e5839836146106f0578063f2fde38b14610723575b600080fd5b341561018257600080fd5b61018a610744565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020d57600080fd5b610224600160a060020a036004351660243561077b565b604051901515815260200160405180910390f35b341561024357600080fd5b610224600160a060020a0360043581169060243516604435610822565b604051901515815260200160405180910390f35b341561027f57600080fd5b610287610900565b60405190815260200160405180910390f35b34156102a457600080fd5b610224600160a060020a0360043581169060243516604435610906565b604051901515815260200160405180910390f35b34156102e057600080fd5b61028761096f565b60405190815260200160405180910390f35b341561030557600080fd5b61030d610974565b604051600160a060020a03909116815260200160405180910390f35b341561033457600080fd5b61033c610983565b005b341561034957600080fd5b61033c610a20565b005b341561035e57600080fd5b61033c600160a060020a0360043516610a5c565b005b341561037f57600080fd5b61018a610a9c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561040a57600080fd5b610224610ad3565b604051901515815260200160405180910390f35b341561043157600080fd5b610224600160a060020a0360043516602435610ae3565b604051901515815260200160405180910390f35b341561046757600080fd5b610287600160a060020a0360043516610bdf565b60405190815260200160405180910390f35b341561049857600080fd5b61033c610bfe565b005b34156104ad57600080fd5b61033c610c8d565b005b34156104c257600080fd5b61033c600160a060020a0360043516610d2f565b005b34156104e357600080fd5b61033c600160a060020a0360043516610d77565b005b341561050457600080fd5b61030d610dba565b604051600160a060020a03909116815260200160405180910390f35b341561053357600080fd5b61018a610dc9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105be57600080fd5b610224600160a060020a0360043516602435610e00565b604051901515815260200160405180910390f35b34156105f457600080fd5b610224610e54565b604051901515815260200160405180910390f35b341561061b57600080fd5b61033c610e66565b005b341561063057600080fd5b61030d610eb6565b604051600160a060020a03909116815260200160405180910390f35b341561065f57600080fd5b61030d610ec5565b604051600160a060020a03909116815260200160405180910390f35b341561068e57600080fd5b610224600160a060020a0360043516602435610ed4565b604051901515815260200160405180910390f35b34156106c457600080fd5b610287600160a060020a0360043581169060243516610f79565b60405190815260200160405180910390f35b34156106fb57600080fd5b610224600160a060020a0360043516610fa6565b604051901515815260200160405180910390f35b341561072e57600080fd5b61033c600160a060020a0360043516610fda565b005b60408051908101604052600881527f476f6c6447617465000000000000000000000000000000000000000000000000602082015281565b60008115806107ad5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156107b857600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055460009033600160a060020a0390811691161461084057600080fd5b600160a060020a038316600090815260016020526040902054610869908363ffffffff61103716565b600160a060020a03808516600090815260016020526040808220939093559086168152205461089e908363ffffffff61105116565b600160a060020a038086166000818152600160205260409081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b9392505050565b60005481565b60035460009060a060020a900460ff161561092057600080fd5b61092933610fa6565b1561093357600080fd5b61093c84610fa6565b1561094657600080fd5b61094f83610fa6565b1561095957600080fd5b610964848484611068565b90505b5b9392505050565b600881565b600554600160a060020a031681565b60055433600160a060020a03908116911614806109ae575060035433600160a060020a039081169116145b15156109b957600080fd5b60035460a060020a900460ff1615156109d157600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035433600160a060020a03908116911614610a3b57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff191690555b5b565b60055433600160a060020a03908116911614610a7757600080fd5b600160a060020a0381166000908152600760205260409020805460ff191690555b5b50565b60408051908101604052600581527f312e302e30000000000000000000000000000000000000000000000000000000602082015281565b60035460a060020a900460ff1681565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610b4057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b77565b610b50818463ffffffff61105116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60045433600160a060020a03908116911614610c1957600080fd5b600454600354600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b60055433600160a060020a0390811691161480610cb8575060035433600160a060020a039081169116145b1515610cc357600080fd5b60035460a060020a900460ff1615610cda57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60055433600160a060020a03908116911614610d4a57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60055433600160a060020a03908116911614610d9257600080fd5b600160a060020a0381166000908152600760205260409020805460ff191660011790555b5b50565b600354600160a060020a031681565b60408051908101604052600381527f4247470000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610e1a57600080fd5b610e2333610fa6565b15610e2d57600080fd5b610e3683610fa6565b15610e4057600080fd5b610e4a8383611194565b90505b5b92915050565b600554600160a060020a031615155b90565b60065433600160a060020a03908116911614610e8157600080fd5b600680546005805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b600654600160a060020a031681565b600454600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f0c908363ffffffff61103716565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600160a060020a03811660009081526007602052604081205460ff168015610fd15750610fd1610e54565b5b90505b919050565b60035433600160a060020a03908116911614610ff557600080fd5b600160a060020a038116151561100a57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282018381101561104657fe5b8091505b5092915050565b60008282111561105d57fe5b508082035b92915050565b600080600160a060020a038416151561108057600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546110c6908463ffffffff61105116565b600160a060020a0380871660009081526001602052604080822093909355908616815220546110fb908463ffffffff61103716565b600160a060020a038516600090815260016020526040902055611124818463ffffffff61105116565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156111ab57600080fd5b600160a060020a0333166000908152600160205260409020546111d4908363ffffffff61105116565b600160a060020a033381166000908152600160205260408082209390935590851681522054611209908363ffffffff61103716565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a72305820c0174ba34ccf95f255f16a8c9f6f60c132cd99cbd284aa7fc62d07cf5b62d69b002900000000000000000000000000000000000000000000000000093cafac6a8000

Deployed Bytecode

0x606060405236156101725763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610177578063095ea7b3146102025780630dd12d381461023857806318160ddd1461027457806323b872dd14610299578063313ce567146102d557806338743904146102fa5780633f4ba83a1461032957806343c8c30e1461033e57806345c8b1a61461035357806354fd4d50146103745780635c975abb146103ff578063661884631461042657806370a082311461045c578063742c81e41461048d5780638456cb59146104a2578063876ba3cd146104b75780638d1fdf2f146104d85780638da5cb5b146104f957806395d89b4114610528578063a9059cbb146105b3578063aed362c1146105e9578063afb47bb314610610578063c41addb514610625578063d4ee1d9014610654578063d73dd62314610683578063dd62ed3e146106b9578063e5839836146106f0578063f2fde38b14610723575b600080fd5b341561018257600080fd5b61018a610744565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020d57600080fd5b610224600160a060020a036004351660243561077b565b604051901515815260200160405180910390f35b341561024357600080fd5b610224600160a060020a0360043581169060243516604435610822565b604051901515815260200160405180910390f35b341561027f57600080fd5b610287610900565b60405190815260200160405180910390f35b34156102a457600080fd5b610224600160a060020a0360043581169060243516604435610906565b604051901515815260200160405180910390f35b34156102e057600080fd5b61028761096f565b60405190815260200160405180910390f35b341561030557600080fd5b61030d610974565b604051600160a060020a03909116815260200160405180910390f35b341561033457600080fd5b61033c610983565b005b341561034957600080fd5b61033c610a20565b005b341561035e57600080fd5b61033c600160a060020a0360043516610a5c565b005b341561037f57600080fd5b61018a610a9c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561040a57600080fd5b610224610ad3565b604051901515815260200160405180910390f35b341561043157600080fd5b610224600160a060020a0360043516602435610ae3565b604051901515815260200160405180910390f35b341561046757600080fd5b610287600160a060020a0360043516610bdf565b60405190815260200160405180910390f35b341561049857600080fd5b61033c610bfe565b005b34156104ad57600080fd5b61033c610c8d565b005b34156104c257600080fd5b61033c600160a060020a0360043516610d2f565b005b34156104e357600080fd5b61033c600160a060020a0360043516610d77565b005b341561050457600080fd5b61030d610dba565b604051600160a060020a03909116815260200160405180910390f35b341561053357600080fd5b61018a610dc9565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c75780820151818401525b6020016101ae565b50505050905090810190601f1680156101f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156105be57600080fd5b610224600160a060020a0360043516602435610e00565b604051901515815260200160405180910390f35b34156105f457600080fd5b610224610e54565b604051901515815260200160405180910390f35b341561061b57600080fd5b61033c610e66565b005b341561063057600080fd5b61030d610eb6565b604051600160a060020a03909116815260200160405180910390f35b341561065f57600080fd5b61030d610ec5565b604051600160a060020a03909116815260200160405180910390f35b341561068e57600080fd5b610224600160a060020a0360043516602435610ed4565b604051901515815260200160405180910390f35b34156106c457600080fd5b610287600160a060020a0360043581169060243516610f79565b60405190815260200160405180910390f35b34156106fb57600080fd5b610224600160a060020a0360043516610fa6565b604051901515815260200160405180910390f35b341561072e57600080fd5b61033c600160a060020a0360043516610fda565b005b60408051908101604052600881527f476f6c6447617465000000000000000000000000000000000000000000000000602082015281565b60008115806107ad5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156107b857600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60055460009033600160a060020a0390811691161461084057600080fd5b600160a060020a038316600090815260016020526040902054610869908363ffffffff61103716565b600160a060020a03808516600090815260016020526040808220939093559086168152205461089e908363ffffffff61105116565b600160a060020a038086166000818152600160205260409081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b5b9392505050565b60005481565b60035460009060a060020a900460ff161561092057600080fd5b61092933610fa6565b1561093357600080fd5b61093c84610fa6565b1561094657600080fd5b61094f83610fa6565b1561095957600080fd5b610964848484611068565b90505b5b9392505050565b600881565b600554600160a060020a031681565b60055433600160a060020a03908116911614806109ae575060035433600160a060020a039081169116145b15156109b957600080fd5b60035460a060020a900460ff1615156109d157600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b60035433600160a060020a03908116911614610a3b57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff191690555b5b565b60055433600160a060020a03908116911614610a7757600080fd5b600160a060020a0381166000908152600760205260409020805460ff191690555b5b50565b60408051908101604052600581527f312e302e30000000000000000000000000000000000000000000000000000000602082015281565b60035460a060020a900460ff1681565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610b4057600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b77565b610b50818463ffffffff61105116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60045433600160a060020a03908116911614610c1957600080fd5b600454600354600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600480546003805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b60055433600160a060020a0390811691161480610cb8575060035433600160a060020a039081169116145b1515610cc357600080fd5b60035460a060020a900460ff1615610cda57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b60055433600160a060020a03908116911614610d4a57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60055433600160a060020a03908116911614610d9257600080fd5b600160a060020a0381166000908152600760205260409020805460ff191660011790555b5b50565b600354600160a060020a031681565b60408051908101604052600381527f4247470000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610e1a57600080fd5b610e2333610fa6565b15610e2d57600080fd5b610e3683610fa6565b15610e4057600080fd5b610e4a8383611194565b90505b5b92915050565b600554600160a060020a031615155b90565b60065433600160a060020a03908116911614610e8157600080fd5b600680546005805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b565b600654600160a060020a031681565b600454600160a060020a031681565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f0c908363ffffffff61103716565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b600160a060020a03811660009081526007602052604081205460ff168015610fd15750610fd1610e54565b5b90505b919050565b60035433600160a060020a03908116911614610ff557600080fd5b600160a060020a038116151561100a57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b60008282018381101561104657fe5b8091505b5092915050565b60008282111561105d57fe5b508082035b92915050565b600080600160a060020a038416151561108057600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546110c6908463ffffffff61105116565b600160a060020a0380871660009081526001602052604080822093909355908616815220546110fb908463ffffffff61103716565b600160a060020a038516600090815260016020526040902055611124818463ffffffff61105116565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156111ab57600080fd5b600160a060020a0333166000908152600160205260409020546111d4908363ffffffff61105116565b600160a060020a033381166000908152600160205260408082209390935590851681522054611209908363ffffffff61103716565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a72305820c0174ba34ccf95f255f16a8c9f6f60c132cd99cbd284aa7fc62d07cf5b62d69b0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000093cafac6a8000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 2600000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000093cafac6a8000


Swarm Source

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