ETH Price: $2,549.92 (-0.46%)
Gas: 7.57 Gwei

Token

MoBee (MBE)
 

Overview

Max Total Supply

20,000,000 MBE

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
110.6 MBE

Value
$0.00
0xa9ee53660c649be4af8c55027b8f8baa920242b1
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:
MBEToken

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-03-15
*/

pragma solidity ^0.4.19;

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) {
    uint256 c = a / b;
    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;
  }
}

contract Token {
  uint256 public totalSupply;
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  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 Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 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;

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

contract Pausable is Ownable {
    
  uint public constant startPreICO = 1521072000; // 15'th March
  uint public constant endPreICO = startPreICO + 31 days;

  uint public constant startICOStage1 = 1526342400; // 15'th May
  uint public constant endICOStage1 = startICOStage1 + 3 days;

  uint public constant startICOStage2 = 1526688000; // 19'th May
  uint public constant endICOStage2 = startICOStage2 + 5 days;

  uint public constant startICOStage3 = 1527206400; // 25'th May
  uint public constant endICOStage3 = endICOStage2 + 6 days;

  uint public constant startICOStage4 = 1527811200; // 1'st June
  uint public constant endICOStage4 = startICOStage4 + 7 days;

  uint public constant startICOStage5 = 1528502400;
  uint public endICOStage5 = startICOStage5 + 11 days;

  /**
   * @dev modifier to allow actions only when the contract IS not paused
   */
  modifier whenNotPaused() {
    require(now < startPreICO || now > endICOStage5);
    _;
  }

}

contract StandardToken is Token, Pausable {
  using SafeMath for uint256;
  mapping (address => mapping (address => uint256)) internal allowed;

  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 whenNotPaused returns (bool) {
    require(_to != address(0));
    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];
  }

  /**
   * @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 whenNotPaused returns (bool) {
    require(_to != address(0));
    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];
  }

  /**
   * 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 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) public 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 Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is StandardToken {

  event Burn(address indexed burner, uint256 value);

  /**
    * @dev Burns a specific amount of tokens.
    * @param _value The amount of token to be burned.
    */
  function burn(uint256 _value) public {
      require(_value > 0);
      require(_value <= balances[msg.sender]);

      address burner = msg.sender;
      balances[burner] = balances[burner].sub(_value);
      totalSupply = totalSupply.sub(_value);
      Burn(burner, _value);
  }
}

contract MBEToken is BurnableToken {
  string public constant name = "MoBee";
  string public constant symbol = "MBE";
  uint8 public constant decimals = 18;
  address public tokenWallet;
  address public founderWallet;
  address public bountyWallet;
  address public multisig = 0xA74246dC71c0849acCd564976b3093B0B2a522C3;
  uint public currentFundrise = 0;
  uint public raisedEthers = 0;

  uint public constant INITIAL_SUPPLY = 20000000 ether;
  
  uint256 constant THOUSAND = 1000;
  uint256 constant TEN_THOUSAND = 10000;
  uint public tokenRate = THOUSAND.div(9); // tokens per 1 ether ( 1 ETH / 0.009 ETH = 111.11 MBE )
  uint public tokenRate30 = tokenRate.mul(100).div(70); // tokens per 1 ether with 30% discount
  uint public tokenRate20 = tokenRate.mul(100).div(80); // tokens per 1 ether with 20% discount
  uint public tokenRate15 = tokenRate.mul(100).div(85); // tokens per 1 ether with 15% discount
  uint public tokenRate10 = tokenRate.mul(100).div(90); // tokens per 1 ether with 10% discount
  uint public tokenRate5 = tokenRate.mul(100).div(95); // tokens per 1 ether with 5% discount

  /**
    * @dev Constructor that gives msg.sender all of existing tokens.
    */
  function MBEToken(address tokenOwner, address founder, address bounty) public {
    totalSupply = INITIAL_SUPPLY;
    balances[tokenOwner] += INITIAL_SUPPLY / 100 * 85;
    balances[founder] += INITIAL_SUPPLY / 100 * 10;
    balances[bounty] += INITIAL_SUPPLY / 100 * 5;
    tokenWallet = tokenOwner;
    founderWallet = founder;
    bountyWallet = bounty;
    Transfer(0x0, tokenOwner, balances[tokenOwner]);
    Transfer(0x0, founder, balances[founder]);
    Transfer(0x0, bounty, balances[bounty]);
  }
  
  function setupTokenRate(uint newTokenRate) public onlyOwner {
    tokenRate = newTokenRate;
    tokenRate30 = tokenRate.mul(100).div(70); // tokens per 1 ether with 30% discount
    tokenRate20 = tokenRate.mul(100).div(80); // tokens per 1 ether with 20% discount
    tokenRate15 = tokenRate.mul(100).div(85); // tokens per 1 ether with 15% discount
    tokenRate10 = tokenRate.mul(100).div(90); // tokens per 1 ether with 10% discount
    tokenRate5 = tokenRate.mul(100).div(95); // tokens per 1 ether with 5% discount
  }
  
  function setupFinal(uint finalDate) public onlyOwner returns(bool) {
    endICOStage5 = finalDate;
    return true;
  }

  function sellManually(address _to, uint amount) public onlyOwner returns(bool) {
    uint tokens = calcTokens(amount);
    uint256 balance = balanceOf(tokenWallet);
    if (balance < tokens) {
      sendTokens(_to, balance);
    } else {
      sendTokens(_to, tokens);
    }
    return true;
  }

  function () payable public {
    if (!isTokenSale()) revert();
    buyTokens(msg.value);
  }
  
  function isTokenSale() public view returns (bool) {
    if (now >= startPreICO && now < endICOStage5) {
      return true;
    } else {
      return false;
    }
  }

  function buyTokens(uint amount) internal {
    uint tokens = calcTokens(amount);  
    safeSend(tokens);
  }
  
  function calcTokens(uint amount) public view returns(uint) {
    uint rate = extraRate(amount, tokenRate);
    uint tokens = amount.mul(rate);
    if (now >= startPreICO && now < endPreICO) {
      rate = extraRate(amount, tokenRate30);
      tokens = amount.mul(rate);
      return tokens;
    } else if (now >= startICOStage1 && now < endICOStage1) {
      rate = extraRate(amount, tokenRate20);
      tokens = amount.mul(rate);
      return tokens;
    } else if (now >= startICOStage2 && now < endICOStage2) {
      rate = extraRate(amount, tokenRate15);
      tokens = amount.mul(rate);
      return tokens;
    } else if (now >= startICOStage3 && now < endICOStage3) {
      rate = extraRate(amount, tokenRate10);
      tokens = amount.mul(rate);
      return tokens;
    } else if (now >= startICOStage4 && now < endICOStage4) {
      rate = extraRate(amount, tokenRate5);
      tokens = amount.mul(rate);
      return tokens;
    } else if (now >= startICOStage5 && now < endICOStage5) {
      return tokens;
    }
  }

  function extraRate(uint amount, uint rate) public pure returns (uint) {
    return ( ( rate * 10 ** 20 ) / ( 100 - extraDiscount(amount) ) ) / ( 10 ** 18 );
  }

  function extraDiscount(uint amount) public pure returns(uint) {
    if ( 3 ether <= amount && amount <= 5 ether ) {
      return 5;
    } else if ( 5 ether < amount && amount <= 10 ether ) {
      return 7;
    } else if ( 10 ether < amount && amount <= 20 ether ) {
      return 10;
    } else if ( 20 ether < amount ) {
      return 15;
    }
    return 0;
  }

  function safeSend(uint tokens) private {
    uint256 balance = balanceOf(tokenWallet);
    if (balance < tokens) {
      uint toReturn = tokenRate.mul(tokens.sub(balance));
      sendTokens(msg.sender, balance);
      msg.sender.transfer(toReturn);
      multisig.transfer(msg.value.sub(toReturn));
      raisedEthers += msg.value.sub(toReturn);
    } else {
      sendTokens(msg.sender, tokens);
      multisig.transfer(msg.value);
      raisedEthers += msg.value;
    }
  }

  function sendTokens(address _to, uint tokens) private {
    balances[tokenWallet] = balances[tokenWallet].sub(tokens);
    balances[_to] += tokens;
    Transfer(tokenWallet, _to, tokens);
    currentFundrise += tokens;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"amount","type":"uint256"}],"name":"extraDiscount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRate10","outputs":[{"name":"","type":"uint256"}],"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":"startICOStage4","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startICOStage2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startICOStage5","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startICOStage3","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":"endICOStage1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRate15","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endICOStage3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"finalDate","type":"uint256"}],"name":"setupFinal","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"multisig","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRate30","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newTokenRate","type":"uint256"}],"name":"setupTokenRate","outputs":[],"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":true,"inputs":[],"name":"isTokenSale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endPreICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startICOStage1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[{"name":"amount","type":"uint256"},{"name":"rate","type":"uint256"}],"name":"extraRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"founderWallet","outputs":[{"name":"","type":"address"}],"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":"currentFundrise","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startPreICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"amount","type":"uint256"}],"name":"sellManually","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endICOStage5","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRate5","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRate20","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"amount","type":"uint256"}],"name":"calcTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"raisedEthers","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"bountyWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endICOStage2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endICOStage4","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"},{"inputs":[{"name":"tokenOwner","type":"address"},{"name":"founder","type":"address"},{"name":"bounty","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","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"}]

6060604052635b29990060025560088054600160a060020a03191673a74246dc71c0849accd564976b3093b0b2a522c317905560006009818155600a919091556200005c906103e8906401000000006200139d620002bf82021704565b600b81905562000099906046906200008490606464010000000062001379620002d782021704565b906401000000006200139d620002bf82021704565b600c55600b54620000c2906050906200008490606464010000000062001379620002d782021704565b600d55600b54620000eb906055906200008490606464010000000062001379620002d782021704565b600e55600b546200011490605a906200008490606464010000000062001379620002d782021704565b600f55600b546200013d90605f906200008490606464010000000062001379620002d782021704565b60105534156200014c57600080fd5b604051606080620017b883398101604052808051919060200180519190602001805160018054600160a060020a03338116600160a060020a0319928316179092556a108b2a2c2802909400000060009081558783168082526004602052604080832080546a0e0fe3d8bb9bc7b100000001815589861680855282852080546a01a784379d99db42000000019055958716808552828520805469d3c21bcecceda100000001905560058054871685179055600680548716909717909655600780549095169095179093558082529254939550919350909160008051602062001798833981519152915190815260200160405180910390a3600160a060020a0382166000818152600460205260408082205460008051602062001798833981519152915190815260200160405180910390a3600160a060020a0381166000818152600460205260408082205460008051602062001798833981519152915190815260200160405180910390a350505062000305565b6000808284811515620002ce57fe5b04949350505050565b6000828202831580620002f55750828482811515620002f257fe5b04145b1515620002fe57fe5b9392505050565b61148380620003156000396000f30060606040526004361061022f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306caf3e6811461024d57806306fdde03146102755780630827ab43146102ff578063095ea7b3146103125780630ae1fac0146103485780631484e9ad1461035b57806318160ddd1461036e5780631f43f39614610381578063219f72c91461039457806323b872dd146103a75780632ef2edb8146103cf5780632ff2e9dc146103e2578063313ce567146103f5578063317118841461041e57806337fd612814610431578063386892d8146104445780633ce9d22e1461045757806342966c681461046d5780634783c35b1461048357806362848f36146104b257806366188463146104c55780636bce23be146104e757806370a08231146104fd5780637768dec01461051c57806377f3293a1461052f578063889258ea146105425780638da5cb5b1461055557806395d89b41146105685780639ee7fbd91461057b578063a23d3c3514610594578063a9059cbb146105a7578063b8cf2515146105c9578063bc40b52a146105dc578063bf2095a4146105ef578063bff99c6c14610611578063c3d8c09914610624578063ca7b15da14610637578063cbac88161461064a578063d562a1211461065d578063d73dd62314610673578063dad59f3514610695578063dd62ed3e146106a8578063e5760520146106cd578063ebc6a661146106e0578063f0c99750146106f3578063f2fde38b14610706575b610237610725565b151561024257600080fd5b61024b34610750565b005b341561025857600080fd5b61026360043561076a565b60405190815260200160405180910390f35b341561028057600080fd5b610288610814565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102c45780820151838201526020016102ac565b50505050905090810190601f1680156102f15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030a57600080fd5b61026361084b565b341561031d57600080fd5b610334600160a060020a0360043516602435610851565b604051901515815260200160405180910390f35b341561035357600080fd5b6102636108bd565b341561036657600080fd5b6102636108c5565b341561037957600080fd5b6102636108cd565b341561038c57600080fd5b6102636108d3565b341561039f57600080fd5b6102636108db565b34156103b257600080fd5b610334600160a060020a03600435811690602435166044356108e3565b34156103da57600080fd5b610263610a5e565b34156103ed57600080fd5b610263610a66565b341561040057600080fd5b610408610a75565b60405160ff909116815260200160405180910390f35b341561042957600080fd5b610263610a7a565b341561043c57600080fd5b610263610a80565b341561044f57600080fd5b610263610a86565b341561046257600080fd5b610334600435610a8e565b341561047857600080fd5b61024b600435610ab5565b341561048e57600080fd5b610496610b7e565b604051600160a060020a03909116815260200160405180910390f35b34156104bd57600080fd5b610263610b8d565b34156104d057600080fd5b610334600160a060020a0360043516602435610b93565b34156104f257600080fd5b61024b600435610c8d565b341561050857600080fd5b610263600160a060020a0360043516610d4d565b341561052757600080fd5b610334610725565b341561053a57600080fd5b610263610d68565b341561054d57600080fd5b610263610d70565b341561056057600080fd5b610496610d78565b341561057357600080fd5b610288610d87565b341561058657600080fd5b610263600435602435610dbe565b341561059f57600080fd5b610496610dfc565b34156105b257600080fd5b610334600160a060020a0360043516602435610e0b565b34156105d457600080fd5b610263610eff565b34156105e757600080fd5b610263610f05565b34156105fa57600080fd5b610334600160a060020a0360043516602435610f0d565b341561061c57600080fd5b610496610f7e565b341561062f57600080fd5b610263610f8d565b341561064257600080fd5b610263610f93565b341561065557600080fd5b610263610f99565b341561066857600080fd5b610263600435610f9f565b341561067e57600080fd5b610334600160a060020a03600435166024356110cd565b34156106a057600080fd5b610263611171565b34156106b357600080fd5b610263600160a060020a0360043581169060243516611177565b34156106d857600080fd5b6104966111a2565b34156106eb57600080fd5b6102636111b1565b34156106fe57600080fd5b6102636111b9565b341561071157600080fd5b61024b600160a060020a03600435166111c1565b6000635aa9b780421015801561073c575060025442105b156107495750600161074d565b5060005b90565b600061075b82610f9f565b905061076681611220565b5050565b6000816729a2241af62c00001115801561078c5750674563918244f400008211155b156107995750600561080f565b81674563918244f400001080156107b85750678ac7230489e800008211155b156107c55750600761080f565b81678ac7230489e800001080156107e557506801158e460913d000008211155b156107f25750600a61080f565b816801158e460913d00000101561080b5750600f61080f565b5060005b919050565b60408051908101604052600581527f4d6f426565000000000000000000000000000000000000000000000000000000602082015281565b600f5481565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b635b108c8081565b635aff690081565b60005481565b635b1b188081565b635b07520081565b6000635aa9b7804210806108f8575060025442115b151561090357600080fd5b600160a060020a038316151561091857600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561094b57600080fd5b600160a060020a038416600090815260046020526040902054610974908363ffffffff61135116565b600160a060020a0380861660009081526004602052604080822093909355908516815220546109a9908363ffffffff61136316565b600160a060020a038085166000908152600460209081526040808320949094558783168252600381528382203390931682529190915220546109f1908363ffffffff61135116565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b635afe178081565b6a108b2a2c2802909400000081565b601281565b600b5481565b600e5481565b635b0de98081565b60015460009033600160a060020a03908116911614610aac57600080fd5b50600255600190565b6000808211610ac357600080fd5b600160a060020a033316600090815260046020526040902054821115610ae857600080fd5b5033600160a060020a038116600090815260046020526040902054610b0d9083611351565b600160a060020a03821660009081526004602052604081209190915554610b3a908363ffffffff61135116565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600854600160a060020a031681565b600c5481565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610bf057600160a060020a033381166000908152600360209081526040808320938816835292905290812055610c27565b610c00818463ffffffff61135116565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60015433600160a060020a03908116911614610ca857600080fd5b600b819055610ccf6046610cc383606463ffffffff61137916565b9063ffffffff61139d16565b600c55600b54610ced90605090610cc390606463ffffffff61137916565b600d55600b54610d0b90605590610cc390606463ffffffff61137916565b600e55600b54610d2990605a90610cc390606463ffffffff61137916565b600f55600b54610d4790605f90610cc390606463ffffffff61137916565b60105550565b600160a060020a031660009081526004602052604090205490565b635ad2960081565b635afa230081565b600154600160a060020a031681565b60408051908101604052600381527f4d42450000000000000000000000000000000000000000000000000000000000602082015281565b6000670de0b6b3a7640000610dd28461076a565b6064038368056bc75e2d6310000002811515610dea57fe5b04811515610df457fe5b049392505050565b600654600160a060020a031681565b6000635aa9b780421080610e20575060025442115b1515610e2b57600080fd5b600160a060020a0383161515610e4057600080fd5b600160a060020a033316600090815260046020526040902054610e69908363ffffffff61135116565b600160a060020a033381166000908152600460205260408082209390935590851681522054610e9e908363ffffffff61136316565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60095481565b635aa9b78081565b6001546000908190819033600160a060020a03908116911614610f2f57600080fd5b610f3884610f9f565b600554909250610f5090600160a060020a0316610d4d565b905081811015610f6957610f6485826113b4565b610f73565b610f7385836113b4565b506001949350505050565b600554600160a060020a031681565b60025481565b60105481565b600d5481565b6000806000610fb084600b54610dbe565b9150610fc2848363ffffffff61137916565b9050635aa9b7804210158015610fdb5750635ad2960042105b1561100857610fec84600c54610dbe565b9150610ffe848363ffffffff61137916565b90508092506110c6565b635afa2300421015801561101f5750635afe178042105b1561103057610fec84600d54610dbe565b635aff690042101580156110475750635b06008042105b1561105857610fec84600e54610dbe565b635b075200421015801561106f5750635b0de98042105b1561108057610fec84600f54610dbe565b635b108c8042101580156110975750635b19c70042105b156110a857610fec84601054610dbe565b635b1b188042101580156110bd575060025442105b156110c6578092505b5050919050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054611105908363ffffffff61136316565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600754600160a060020a031681565b635b06008081565b635b19c70081565b60015433600160a060020a039081169116146111dc57600080fd5b600160a060020a03811615156111f157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600090819061123a90600160a060020a0316610d4d565b91508282101561130557611266611257848463ffffffff61135116565b600b549063ffffffff61137916565b905061127233836113b4565b600160a060020a03331681156108fc0282604051600060405180830381858888f1935050505015156112a357600080fd5b600854600160a060020a03166108fc6112c2348463ffffffff61135116565b9081150290604051600060405180830381858888f1935050505015156112e757600080fd5b6112f7348263ffffffff61135116565b600a8054909101905561134c565b61130f33846113b4565b600854600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561134357600080fd5b600a8054340190555b505050565b60008282111561135d57fe5b50900390565b60008282018381101561137257fe5b9392505050565b6000828202831580611395575082848281151561139257fe5b04145b151561137257fe5b60008082848115156113ab57fe5b04949350505050565b600554600160a060020a03166000908152600460205260409020546113df908263ffffffff61135116565b60058054600160a060020a039081166000908152600460205260408082209490945585821680825290849020805486019055915491929116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a3600980549091019055505600a165627a7a723058209a545403d172e3b30c576939932fa1eb4e3f94952b9cb801b5abb8b801018db50029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000616e87fc8534fc4729b3b2af788addda0043f9240000000000000000000000007a9ddad11ac2eea86b39a5ff22b772994b8ecfac0000000000000000000000008398e6bb9dff64c20a3b0890cd844888e334f971

Deployed Bytecode

0x60606040526004361061022f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306caf3e6811461024d57806306fdde03146102755780630827ab43146102ff578063095ea7b3146103125780630ae1fac0146103485780631484e9ad1461035b57806318160ddd1461036e5780631f43f39614610381578063219f72c91461039457806323b872dd146103a75780632ef2edb8146103cf5780632ff2e9dc146103e2578063313ce567146103f5578063317118841461041e57806337fd612814610431578063386892d8146104445780633ce9d22e1461045757806342966c681461046d5780634783c35b1461048357806362848f36146104b257806366188463146104c55780636bce23be146104e757806370a08231146104fd5780637768dec01461051c57806377f3293a1461052f578063889258ea146105425780638da5cb5b1461055557806395d89b41146105685780639ee7fbd91461057b578063a23d3c3514610594578063a9059cbb146105a7578063b8cf2515146105c9578063bc40b52a146105dc578063bf2095a4146105ef578063bff99c6c14610611578063c3d8c09914610624578063ca7b15da14610637578063cbac88161461064a578063d562a1211461065d578063d73dd62314610673578063dad59f3514610695578063dd62ed3e146106a8578063e5760520146106cd578063ebc6a661146106e0578063f0c99750146106f3578063f2fde38b14610706575b610237610725565b151561024257600080fd5b61024b34610750565b005b341561025857600080fd5b61026360043561076a565b60405190815260200160405180910390f35b341561028057600080fd5b610288610814565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102c45780820151838201526020016102ac565b50505050905090810190601f1680156102f15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561030a57600080fd5b61026361084b565b341561031d57600080fd5b610334600160a060020a0360043516602435610851565b604051901515815260200160405180910390f35b341561035357600080fd5b6102636108bd565b341561036657600080fd5b6102636108c5565b341561037957600080fd5b6102636108cd565b341561038c57600080fd5b6102636108d3565b341561039f57600080fd5b6102636108db565b34156103b257600080fd5b610334600160a060020a03600435811690602435166044356108e3565b34156103da57600080fd5b610263610a5e565b34156103ed57600080fd5b610263610a66565b341561040057600080fd5b610408610a75565b60405160ff909116815260200160405180910390f35b341561042957600080fd5b610263610a7a565b341561043c57600080fd5b610263610a80565b341561044f57600080fd5b610263610a86565b341561046257600080fd5b610334600435610a8e565b341561047857600080fd5b61024b600435610ab5565b341561048e57600080fd5b610496610b7e565b604051600160a060020a03909116815260200160405180910390f35b34156104bd57600080fd5b610263610b8d565b34156104d057600080fd5b610334600160a060020a0360043516602435610b93565b34156104f257600080fd5b61024b600435610c8d565b341561050857600080fd5b610263600160a060020a0360043516610d4d565b341561052757600080fd5b610334610725565b341561053a57600080fd5b610263610d68565b341561054d57600080fd5b610263610d70565b341561056057600080fd5b610496610d78565b341561057357600080fd5b610288610d87565b341561058657600080fd5b610263600435602435610dbe565b341561059f57600080fd5b610496610dfc565b34156105b257600080fd5b610334600160a060020a0360043516602435610e0b565b34156105d457600080fd5b610263610eff565b34156105e757600080fd5b610263610f05565b34156105fa57600080fd5b610334600160a060020a0360043516602435610f0d565b341561061c57600080fd5b610496610f7e565b341561062f57600080fd5b610263610f8d565b341561064257600080fd5b610263610f93565b341561065557600080fd5b610263610f99565b341561066857600080fd5b610263600435610f9f565b341561067e57600080fd5b610334600160a060020a03600435166024356110cd565b34156106a057600080fd5b610263611171565b34156106b357600080fd5b610263600160a060020a0360043581169060243516611177565b34156106d857600080fd5b6104966111a2565b34156106eb57600080fd5b6102636111b1565b34156106fe57600080fd5b6102636111b9565b341561071157600080fd5b61024b600160a060020a03600435166111c1565b6000635aa9b780421015801561073c575060025442105b156107495750600161074d565b5060005b90565b600061075b82610f9f565b905061076681611220565b5050565b6000816729a2241af62c00001115801561078c5750674563918244f400008211155b156107995750600561080f565b81674563918244f400001080156107b85750678ac7230489e800008211155b156107c55750600761080f565b81678ac7230489e800001080156107e557506801158e460913d000008211155b156107f25750600a61080f565b816801158e460913d00000101561080b5750600f61080f565b5060005b919050565b60408051908101604052600581527f4d6f426565000000000000000000000000000000000000000000000000000000602082015281565b600f5481565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b635b108c8081565b635aff690081565b60005481565b635b1b188081565b635b07520081565b6000635aa9b7804210806108f8575060025442115b151561090357600080fd5b600160a060020a038316151561091857600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561094b57600080fd5b600160a060020a038416600090815260046020526040902054610974908363ffffffff61135116565b600160a060020a0380861660009081526004602052604080822093909355908516815220546109a9908363ffffffff61136316565b600160a060020a038085166000908152600460209081526040808320949094558783168252600381528382203390931682529190915220546109f1908363ffffffff61135116565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b635afe178081565b6a108b2a2c2802909400000081565b601281565b600b5481565b600e5481565b635b0de98081565b60015460009033600160a060020a03908116911614610aac57600080fd5b50600255600190565b6000808211610ac357600080fd5b600160a060020a033316600090815260046020526040902054821115610ae857600080fd5b5033600160a060020a038116600090815260046020526040902054610b0d9083611351565b600160a060020a03821660009081526004602052604081209190915554610b3a908363ffffffff61135116565b600055600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600854600160a060020a031681565b600c5481565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610bf057600160a060020a033381166000908152600360209081526040808320938816835292905290812055610c27565b610c00818463ffffffff61135116565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60015433600160a060020a03908116911614610ca857600080fd5b600b819055610ccf6046610cc383606463ffffffff61137916565b9063ffffffff61139d16565b600c55600b54610ced90605090610cc390606463ffffffff61137916565b600d55600b54610d0b90605590610cc390606463ffffffff61137916565b600e55600b54610d2990605a90610cc390606463ffffffff61137916565b600f55600b54610d4790605f90610cc390606463ffffffff61137916565b60105550565b600160a060020a031660009081526004602052604090205490565b635ad2960081565b635afa230081565b600154600160a060020a031681565b60408051908101604052600381527f4d42450000000000000000000000000000000000000000000000000000000000602082015281565b6000670de0b6b3a7640000610dd28461076a565b6064038368056bc75e2d6310000002811515610dea57fe5b04811515610df457fe5b049392505050565b600654600160a060020a031681565b6000635aa9b780421080610e20575060025442115b1515610e2b57600080fd5b600160a060020a0383161515610e4057600080fd5b600160a060020a033316600090815260046020526040902054610e69908363ffffffff61135116565b600160a060020a033381166000908152600460205260408082209390935590851681522054610e9e908363ffffffff61136316565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60095481565b635aa9b78081565b6001546000908190819033600160a060020a03908116911614610f2f57600080fd5b610f3884610f9f565b600554909250610f5090600160a060020a0316610d4d565b905081811015610f6957610f6485826113b4565b610f73565b610f7385836113b4565b506001949350505050565b600554600160a060020a031681565b60025481565b60105481565b600d5481565b6000806000610fb084600b54610dbe565b9150610fc2848363ffffffff61137916565b9050635aa9b7804210158015610fdb5750635ad2960042105b1561100857610fec84600c54610dbe565b9150610ffe848363ffffffff61137916565b90508092506110c6565b635afa2300421015801561101f5750635afe178042105b1561103057610fec84600d54610dbe565b635aff690042101580156110475750635b06008042105b1561105857610fec84600e54610dbe565b635b075200421015801561106f5750635b0de98042105b1561108057610fec84600f54610dbe565b635b108c8042101580156110975750635b19c70042105b156110a857610fec84601054610dbe565b635b1b188042101580156110bd575060025442105b156110c6578092505b5050919050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054611105908363ffffffff61136316565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600754600160a060020a031681565b635b06008081565b635b19c70081565b60015433600160a060020a039081169116146111dc57600080fd5b600160a060020a03811615156111f157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600090819061123a90600160a060020a0316610d4d565b91508282101561130557611266611257848463ffffffff61135116565b600b549063ffffffff61137916565b905061127233836113b4565b600160a060020a03331681156108fc0282604051600060405180830381858888f1935050505015156112a357600080fd5b600854600160a060020a03166108fc6112c2348463ffffffff61135116565b9081150290604051600060405180830381858888f1935050505015156112e757600080fd5b6112f7348263ffffffff61135116565b600a8054909101905561134c565b61130f33846113b4565b600854600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561134357600080fd5b600a8054340190555b505050565b60008282111561135d57fe5b50900390565b60008282018381101561137257fe5b9392505050565b6000828202831580611395575082848281151561139257fe5b04145b151561137257fe5b60008082848115156113ab57fe5b04949350505050565b600554600160a060020a03166000908152600460205260409020546113df908263ffffffff61135116565b60058054600160a060020a039081166000908152600460205260408082209490945585821680825290849020805486019055915491929116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a3600980549091019055505600a165627a7a723058209a545403d172e3b30c576939932fa1eb4e3f94952b9cb801b5abb8b801018db50029

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

000000000000000000000000616e87fc8534fc4729b3b2af788addda0043f9240000000000000000000000007a9ddad11ac2eea86b39a5ff22b772994b8ecfac0000000000000000000000008398e6bb9dff64c20a3b0890cd844888e334f971

-----Decoded View---------------
Arg [0] : tokenOwner (address): 0x616E87Fc8534fc4729b3b2Af788adDda0043f924
Arg [1] : founder (address): 0x7A9Ddad11aC2eea86b39a5fF22B772994b8eCFaC
Arg [2] : bounty (address): 0x8398E6BB9DFF64C20A3B0890cD844888e334f971

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000616e87fc8534fc4729b3b2af788addda0043f924
Arg [1] : 0000000000000000000000007a9ddad11ac2eea86b39a5ff22b772994b8ecfac
Arg [2] : 0000000000000000000000008398e6bb9dff64c20a3b0890cd844888e334f971


Swarm Source

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