ETH Price: $2,508.06 (+3.78%)

Contract

0xF8A3Dc13B7A8DA473f80660f513C4343E4EDd7f7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer125803282021-06-06 10:12:171218 days ago1622974337IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0005100413.65
Transfer125613252021-06-03 11:35:011221 days ago1622720101IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0009347525
Transfer108177802020-09-08 0:34:511490 days ago1599525291IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0050197195.45
Transfer108053022020-09-06 2:43:071492 days ago1599360187IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.00314474108
Transfer107011252020-08-21 3:19:391507 days ago1597979979IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.00469875125
Transfer105312642020-07-25 22:23:471534 days ago1595715827IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0013497559.75
Transfer105308272020-07-25 20:41:221534 days ago1595709682IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0030239257.5
Transfer101173482020-05-22 18:52:051598 days ago1590173525IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0006373728.2
Transfer101173402020-05-22 18:50:371598 days ago1590173437IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0033841890
Transfer100116842020-05-06 8:44:421614 days ago1588754682IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.000778920.73437516
Transfer99648272020-04-29 2:46:471622 days ago1588128407IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0006672217.75
Transfer99648222020-04-29 2:45:391622 days ago1588128339IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0006775518.02500012
Transfer99648212020-04-29 2:45:281622 days ago1588128328IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0009479318.02500012
Transfer99648122020-04-29 2:43:551622 days ago1588128235IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.000372149.9
Transfer97964552020-04-03 3:01:421647 days ago1585882902IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0009330417.75
Transfer97271732020-03-23 10:25:161658 days ago1584959116IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0006672217.75
Transfer97271682020-03-23 10:24:141658 days ago1584959054IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0006672217.75
Transfer97271562020-03-23 10:22:241658 days ago1584958944IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0003757810
Transfer95554462020-02-25 22:57:081685 days ago1582671428IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.000024831.1
Transfer95554392020-02-25 22:56:021685 days ago1582671362IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.000420628
Transfer95364442020-02-23 0:36:281688 days ago1582418188IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.000075152
Transfer94741352020-02-13 10:29:111697 days ago1581589751IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.000075132
Transfer94676162020-02-12 10:27:301698 days ago1581503250IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0004129518.3
Transfer94676062020-02-12 10:25:341698 days ago1581503134IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0005787511.01
Transfer94476852020-02-09 9:11:151701 days ago1581239475IN
0xF8A3Dc13...3E4EDd7f7
0 ETH0.0004007517.75
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CrowdsaleToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.18;


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


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


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

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

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

}



/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */






/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}









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

  mapping(address => uint256) balances;

  uint256 totalSupply_;

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

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

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

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

}






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







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

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


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

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

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

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

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

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

}







/**
   @title ERC827 interface, an extension of ERC20 token standard

   Interface of a ERC827 token, following the ERC20 standard with extra
   methods to transfer value and data and execute calls in transfers and
   approvals.
 */
contract ERC827 is ERC20 {

  function approve( address _spender, uint256 _value, bytes _data ) public returns (bool);
  function transfer( address _to, uint256 _value, bytes _data ) public returns (bool);
  function transferFrom( address _from, address _to, uint256 _value, bytes _data ) public returns (bool);

}






/**
   @title ERC827, an extension of ERC20 token standard

   Implementation the ERC827, following the ERC20 standard with extra
   methods to transfer value and data and execute calls in transfers and
   approvals.
   Uses OpenZeppelin StandardToken.
 */
contract ERC827Token is ERC827, StandardToken {

  /**
     @dev Addition to ERC20 token methods. It allows to
     approve the transfer of value and execute a call with the sent data.

     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 that will spend the funds.
     @param _value The amount of tokens to be spent.
     @param _data ABI-encoded contract call to call `_to` address.

     @return true if the call function was executed successfully
   */
  function approve(address _spender, uint256 _value, bytes _data) public returns (bool) {
    require(_spender != address(this));

    super.approve(_spender, _value);

    require(_spender.call(_data));

    return true;
  }

  /**
     @dev Addition to ERC20 token methods. Transfer tokens to a specified
     address and execute a call with the sent data on the same transaction

     @param _to address The address which you want to transfer to
     @param _value uint256 the amout of tokens to be transfered
     @param _data ABI-encoded contract call to call `_to` address.

     @return true if the call function was executed successfully
   */
  function transfer(address _to, uint256 _value, bytes _data) public returns (bool) {
    require(_to != address(this));

    super.transfer(_to, _value);

    require(_to.call(_data));
    return true;
  }

  /**
     @dev Addition to ERC20 token methods. Transfer tokens from one address to
     another and make a contract call on the same transaction

     @param _from The address which you want to send tokens from
     @param _to The address which you want to transfer to
     @param _value The amout of tokens to be transferred
     @param _data ABI-encoded contract call to call `_to` address.

     @return true if the call function was executed successfully
   */
  function transferFrom(address _from, address _to, uint256 _value, bytes _data) public returns (bool) {
    require(_to != address(this));

    super.transferFrom(_from, _to, _value);

    require(_to.call(_data));
    return true;
  }

  /**
   * @dev Addition to StandardToken methods. Increase the amount of tokens that
   * an owner allowed to a spender and execute a call with the sent data.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   * @param _data ABI-encoded contract call to call `_spender` address.
   */
  function increaseApproval(address _spender, uint _addedValue, bytes _data) public returns (bool) {
    require(_spender != address(this));

    super.increaseApproval(_spender, _addedValue);

    require(_spender.call(_data));

    return true;
  }

  /**
   * @dev Addition to StandardToken methods. Decrease the amount of tokens that
   * an owner allowed to a spender and execute a call with the sent data.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   * @param _data ABI-encoded contract call to call `_spender` address.
   */
  function decreaseApproval(address _spender, uint _subtractedValue, bytes _data) public returns (bool) {
    require(_spender != address(this));

    super.decreaseApproval(_spender, _subtractedValue);

    require(_spender.call(_data));

    return true;
  }

}


/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */






contract Recoverable is Ownable {

  /// @dev Empty constructor (for now)
  function Recoverable() {
  }

  /// @dev This will be invoked by the owner, when owner wants to rescue tokens
  /// @param token Token which will we rescue to the owner from the contract
  function recoverTokens(ERC20Basic token) onlyOwner public {
    token.transfer(owner, tokensToBeReturned(token));
  }

  /// @dev Interface function, can be overwritten by the superclass
  /// @param token Token which balance we will check and return
  /// @return The amount of tokens (in smallest denominator) the contract owns
  function tokensToBeReturned(ERC20Basic token) public returns (uint) {
    return token.balanceOf(this);
  }
}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */








/**
 * Standard EIP-20 token with an interface marker.
 *
 * @notice Interface marker is used by crowdsale contracts to validate that addresses point a good token contract.
 *
 */
contract StandardTokenExt is StandardToken, ERC827Token, Recoverable {

  /* Interface declaration */
  function isToken() public constant returns (bool weAre) {
    return true;
  }
}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */



/**
 * Safe unsigned safe math.
 *
 * https://blog.aragon.one/library-driven-development-in-solidity-2bebcaf88736#.750gwtwli
 *
 * Originally from https://raw.githubusercontent.com/AragonOne/zeppelin-solidity/master/contracts/SafeMathLib.sol
 *
 * Maintained here until merged to mainline zeppelin-solidity.
 *
 */
library SafeMathLib {

  function times(uint a, uint b) returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function minus(uint a, uint b) returns (uint) {
    assert(b <= a);
    return a - b;
  }

  function plus(uint a, uint b) returns (uint) {
    uint c = a + b;
    assert(c>=a);
    return c;
  }

}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */



/**
 * Upgrade agent interface inspired by Lunyr.
 *
 * Upgrade agent transfers tokens to a new contract.
 * Upgrade agent itself can be the token contract, or just a middle man contract doing the heavy lifting.
 */
contract UpgradeAgent {

  uint public originalSupply;

  /** Interface marker */
  function isUpgradeAgent() public constant returns (bool) {
    return true;
  }

  function upgradeFrom(address _from, uint256 _value) public;

}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */







/**
 * A token upgrade mechanism where users can opt-in amount of tokens to the next smart contract revision.
 *
 * First envisioned by Golem and Lunyr projects.
 */
contract UpgradeableToken is StandardTokenExt {

  /** Contract / person who can set the upgrade path. This can be the same as team multisig wallet, as what it is with its default value. */
  address public upgradeMaster;

  /** The next contract where the tokens will be migrated. */
  UpgradeAgent public upgradeAgent;

  /** How many tokens we have upgraded by now. */
  uint256 public totalUpgraded;

  /**
   * Upgrade states.
   *
   * - NotAllowed: The child contract has not reached a condition where the upgrade can bgun
   * - WaitingForAgent: Token allows upgrade, but we don't have a new agent yet
   * - ReadyToUpgrade: The agent is set, but not a single token has been upgraded yet
   * - Upgrading: Upgrade agent is set and the balance holders can upgrade their tokens
   *
   */
  enum UpgradeState {Unknown, NotAllowed, WaitingForAgent, ReadyToUpgrade, Upgrading}

  /**
   * Somebody has upgraded some of his tokens.
   */
  event Upgrade(address indexed _from, address indexed _to, uint256 _value);

  /**
   * New upgrade agent available.
   */
  event UpgradeAgentSet(address agent);

  /**
   * Do not allow construction without upgrade master set.
   */
  function UpgradeableToken(address _upgradeMaster) {
    upgradeMaster = _upgradeMaster;
  }

  /**
   * Allow the token holder to upgrade some of their tokens to a new contract.
   */
  function upgrade(uint256 value) public {

      UpgradeState state = getUpgradeState();
      if(!(state == UpgradeState.ReadyToUpgrade || state == UpgradeState.Upgrading)) {
        // Called in a bad state
        throw;
      }

      // Validate input value.
      if (value == 0) throw;

      balances[msg.sender] = balances[msg.sender].sub(value);

      // Take tokens out from circulation
      totalSupply_ = totalSupply_.sub(value);
      totalUpgraded = totalUpgraded.add(value);

      // Upgrade agent reissues the tokens
      upgradeAgent.upgradeFrom(msg.sender, value);
      Upgrade(msg.sender, upgradeAgent, value);
  }

  /**
   * Set an upgrade agent that handles
   */
  function setUpgradeAgent(address agent) external {

      if(!canUpgrade()) {
        // The token is not yet in a state that we could think upgrading
        throw;
      }

      if (agent == 0x0) throw;
      // Only a master can designate the next agent
      if (msg.sender != upgradeMaster) throw;
      // Upgrade has already begun for an agent
      if (getUpgradeState() == UpgradeState.Upgrading) throw;

      upgradeAgent = UpgradeAgent(agent);

      // Bad interface
      if(!upgradeAgent.isUpgradeAgent()) throw;
      // Make sure that token supplies match in source and target
      if (upgradeAgent.originalSupply() != totalSupply_) throw;

      UpgradeAgentSet(upgradeAgent);
  }

  /**
   * Get the state of the token upgrade.
   */
  function getUpgradeState() public constant returns(UpgradeState) {
    if(!canUpgrade()) return UpgradeState.NotAllowed;
    else if(address(upgradeAgent) == 0x00) return UpgradeState.WaitingForAgent;
    else if(totalUpgraded == 0) return UpgradeState.ReadyToUpgrade;
    else return UpgradeState.Upgrading;
  }

  /**
   * Change the upgrade master.
   *
   * This allows us to set a new owner for the upgrade mechanism.
   */
  function setUpgradeMaster(address master) public {
      if (master == 0x0) throw;
      if (msg.sender != upgradeMaster) throw;
      upgradeMaster = master;
  }

  /**
   * Child contract can enable to provide the condition when the upgrade can begun.
   */
  function canUpgrade() public constant returns(bool) {
     return true;
  }

}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */








/**
 * A token that can increase its supply by another contract.
 *
 * This allows uncapped crowdsale by dynamically increasing the supply when money pours in.
 * Only mint agents, contracts whitelisted by owner, can mint new tokens.
 *
 */
contract MintableToken is StandardTokenExt {

  using SafeMath for uint256;

  bool public mintingFinished = false;

  /** List of agents that are allowed to create new tokens */
  mapping (address => bool) public mintAgents;

  event MintingAgentChanged(address addr, bool state);
  event Minted(address receiver, uint256 amount);

  /**
   * Create new tokens and allocate them to an address..
   *
   * Only callably by a crowdsale contract (mint agent).
   */
  function mint(address receiver, uint256 amount) onlyMintAgent canMint public {
    totalSupply_ = totalSupply_.add(amount);
    balances[receiver] = balances[receiver].add(amount);

    // This will make the mint transaction apper in EtherScan.io
    // We can remove this after there is a standardized minting event
    Transfer(0, receiver, amount);
  }

  /**
   * Owner can allow a crowdsale contract to mint new tokens.
   */
  function setMintAgent(address addr, bool state) onlyOwner canMint public {
    mintAgents[addr] = state;
    MintingAgentChanged(addr, state);
  }

  modifier onlyMintAgent() {
    // Only crowdsale contracts are allowed to mint new tokens
    if(!mintAgents[msg.sender]) {
        throw;
    }
    _;
  }

  /** Make sure we are not done yet. */
  modifier canMint() {
    if(mintingFinished) throw;
    _;
  }
}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */





contract BurnableToken is StandardTokenExt {

  // @notice An address for the transfer event where the burned tokens are transferred in a faux Transfer event
  address public constant BURN_ADDRESS = 0;

  /** How many tokens we burned */
  event Burned(address burner, uint burnedAmount);

  /**
   * Burn extra tokens from a balance.
   *
   */
  function burn(uint burnAmount) {
    address burner = msg.sender;
    balances[burner] = balances[burner].sub(burnAmount);
    totalSupply_ = totalSupply_.sub(burnAmount);
    Burned(burner, burnAmount);

    // Inform the blockchain explores that track the
    // balances only by a transfer event that the balance in this
    // address has decreased
    Transfer(burner, BURN_ADDRESS, burnAmount);
  }
}


/**
 * A crowdsaled token.
 *
 * An ERC-20 token designed specifically for crowdsales with investor protection and further development path.
 *
 * - The token contract gives an opt-in upgrade path to a new contract
 * - The same token can be part of several crowdsales through approve() mechanism
 * - The token can be capped (supply set in the constructor) or uncapped (crowdsale contract can mint new tokens)
 *
 */
contract CrowdsaleToken is MintableToken, UpgradeableToken, BurnableToken {

  /** Name and symbol were updated. */
  event UpdatedTokenInformation(string newName, string newSymbol);

  string public name;

  string public symbol;

  uint public decimals;

  /**
   * Construct the token.
   *
   * This token must be created through a team multisig wallet, so that it is owned by that wallet.
   *
   * @param _name Token name
   * @param _symbol Token symbol - should be all caps
   * @param _initialSupply How many tokens we start with
   * @param _decimals Number of decimal places
   * @param _mintable Are new tokens created over the crowdsale or do we distribute only the initial supply? Note that when the token becomes transferable the minting always ends.
   */
  function CrowdsaleToken(string _name, string _symbol, uint _initialSupply, uint _decimals, bool _mintable)
    UpgradeableToken(msg.sender) {

    // Create any address, can be transferred
    // to team multisig via changeOwner(),
    // also remember to call setUpgradeMaster()
    owner = msg.sender;

    name = _name;
    symbol = _symbol;

    totalSupply_ = _initialSupply;

    decimals = _decimals;

    // Create initially all balance on the team multisig
    balances[owner] = totalSupply_;

    if(totalSupply_ > 0) {
      Minted(owner, totalSupply_);
    }

    // No more new supply allowed after the token creation
    if(!_mintable) {
      mintingFinished = true;
      if(totalSupply_ == 0) {
        throw; // Cannot create a token without supply and no minting
      }
    }
  }

  /**
   * Owner can finish token minting.
   */
  function finishMinting() public onlyOwner {
    mintingFinished = true;
  }

  /**
   * Owner can update token information here.
   *
   * It is often useful to conceal the actual token association, until
   * the token operations, like central issuance or reissuance have been completed.
   *
   * This function allows the token owner to rename the token after the operations
   * have been completed and then point the audience to use the token contract.
   */
  function setTokenInformation(string _name, string _symbol) onlyOwner {
    name = _name;
    symbol = _symbol;

    UpdatedTokenInformation(name, symbol);
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"recoverTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"increaseApproval","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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"burnAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"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":"canUpgrade","outputs":[{"name":"","type":"bool"}],"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":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"tokensToBeReturned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BURN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"burnedAmount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","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"}]

60806040526003805460a060020a60ff02191690553480156200002157600080fd5b5060405162001d2c38038062001d2c83398101604090815281516020808401519284015160608501516080860151600380546005805433600160a060020a03199182168117909255918216811790911617905593860180519096959095019491939092909162000098916008919088019062000173565b508351620000ae90600990602087019062000173565b506001839055600a829055600354600160a060020a031660009081526020819052604081208490558311156200012a5760035460015460408051600160a060020a039093168352602083019190915280517f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9281900390910190a15b80151562000168576003805460a060020a60ff0219167401000000000000000000000000000000000000000017905560015415156200016857600080fd5b505050505062000218565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b6200021591905b80821115620001f45760008155600101620001ff565b90565b611b0480620002286000396000f3006080604052600436106101b35763ffffffff60e060020a60003504166305d2035b81146101b857806306fdde03146101e1578063095ea7b31461026b57806316114acd1461028f57806316ca3b63146102b257806318160ddd1461031b57806323b872dd14610342578063313ce5671461036c57806340c10f191461038157806342966c68146103a557806342c1867b146103bd57806343214675146103de57806345977d03146104045780634eee966f1461041c5780635c17f9f4146104b35780635de4ccb01461051c578063600440cb1461054d578063661884631461056257806370a08231146105865780637272ad49146105a75780637d64bcb4146106105780638444b391146106255780638da5cb5b1461065e57806395d89b41146106735780639738968c14610688578063a9059cbb1461069d578063ab67aa58146106c1578063be45fd6214610730578063c45d19db14610799578063c752ff62146107ba578063d73dd623146107cf578063d7e7088a146107f3578063dd62ed3e14610814578063eefa597b14610688578063f2fde38b1461083b578063fccc28131461085c578063ffeb7d7514610871575b600080fd5b3480156101c457600080fd5b506101cd610892565b604080519115158252519081900360200190f35b3480156101ed57600080fd5b506101f66108b3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610230578181015183820152602001610218565b50505050905090810190601f16801561025d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027757600080fd5b506101cd600160a060020a0360043516602435610941565b34801561029b57600080fd5b506102b0600160a060020a03600435166109a7565b005b3480156102be57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a5e9650505050505050565b34801561032757600080fd5b50610330610b0d565b60408051918252519081900360200190f35b34801561034e57600080fd5b506101cd600160a060020a0360043581169060243516604435610b14565b34801561037857600080fd5b50610330610c79565b34801561038d57600080fd5b506102b0600160a060020a0360043516602435610c7f565b3480156103b157600080fd5b506102b0600435610d48565b3480156103c957600080fd5b506101cd600160a060020a0360043516610e0e565b3480156103ea57600080fd5b506102b0600160a060020a03600435166024351515610e23565b34801561041057600080fd5b506102b0600435610ec6565b34801561042857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102b094369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497506110379650505050505050565b3480156104bf57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506111a49650505050505050565b34801561052857600080fd5b506105316111c6565b60408051600160a060020a039092168252519081900360200190f35b34801561055957600080fd5b506105316111d5565b34801561056e57600080fd5b506101cd600160a060020a03600435166024356111e4565b34801561059257600080fd5b50610330600160a060020a03600435166112d4565b3480156105b357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506112ef9650505050505050565b34801561061c57600080fd5b506102b0611311565b34801561063157600080fd5b5061063a61135f565b6040518082600481111561064a57fe5b60ff16815260200191505060405180910390f35b34801561066a57600080fd5b506105316113aa565b34801561067f57600080fd5b506101f66113b9565b34801561069457600080fd5b506101cd611414565b3480156106a957600080fd5b506101cd600160a060020a0360043516602435611419565b3480156106cd57600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101cd94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506114e89650505050505050565b34801561073c57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506115999650505050505050565b3480156107a557600080fd5b50610330600160a060020a03600435166115bb565b3480156107c657600080fd5b50610330611651565b3480156107db57600080fd5b506101cd600160a060020a0360043516602435611657565b3480156107ff57600080fd5b506102b0600160a060020a03600435166116f0565b34801561082057600080fd5b50610330600160a060020a03600435811690602435166118d8565b34801561084757600080fd5b506102b0600160a060020a0360043516611903565b34801561086857600080fd5b50610531611998565b34801561087d57600080fd5b506102b0600160a060020a036004351661199d565b60035474010000000000000000000000000000000000000000900460ff1681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600354600160a060020a031633146109be57600080fd5b600354600160a060020a038083169163a9059cbb91166109dd846115bb565b6040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610a2f57600080fd5b505af1158015610a43573d6000803e3d6000fd5b505050506040513d6020811015610a5957600080fd5b505050565b6000600160a060020a038416301415610a7657600080fd5b610a808484611657565b5083600160a060020a03168260405180828051906020019080838360005b83811015610ab6578181015183820152602001610a9e565b50505050905090810190601f168015610ae35780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af19150501515610b0357600080fd5b5060019392505050565b6001545b90565b6000600160a060020a0383161515610b2b57600080fd5b600160a060020a038416600090815260208190526040902054821115610b5057600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b8057600080fd5b600160a060020a038416600090815260208190526040902054610ba9908363ffffffff6119f816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bde908363ffffffff611a0a16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610c20908363ffffffff6119f816565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611ab9833981519152929181900390910190a35060019392505050565b600a5481565b3360009081526004602052604090205460ff161515610c9d57600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610cc557600080fd5b600154610cd8908263ffffffff611a0a16565b600155600160a060020a038216600090815260208190526040902054610d04908263ffffffff611a0a16565b600160a060020a038316600081815260208181526040808320949094558351858152935192939192600080516020611ab98339815191529281900390910190a35050565b33600081815260208190526040902054610d68908363ffffffff6119f816565b600160a060020a038216600090815260208190526040902055600154610d94908363ffffffff6119f816565b60015560408051600160a060020a03831681526020810184905281517f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7929181900390910190a1604080518381529051600091600160a060020a03841691600080516020611ab98339815191529181900360200190a35050565b60046020526000908152604090205460ff1681565b600354600160a060020a03163314610e3a57600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610e6257600080fd5b600160a060020a038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa9281900390910190a15050565b6000610ed061135f565b90506003816004811115610ee057fe5b1480610ef757506004816004811115610ef557fe5b145b1515610f0257600080fd5b811515610f0e57600080fd5b33600090815260208190526040902054610f2e908363ffffffff6119f816565b33600090815260208190526040902055600154610f51908363ffffffff6119f816565b600155600754610f67908363ffffffff611a0a16565b600755600654604080517f753e88e5000000000000000000000000000000000000000000000000000000008152336004820152602481018590529051600160a060020a039092169163753e88e59160448082019260009290919082900301818387803b158015610fd657600080fd5b505af1158015610fea573d6000803e3d6000fd5b5050600654604080518681529051600160a060020a0390921693503392507f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac919081900360200190a35050565b600354600160a060020a0316331461104e57600080fd5b8151611061906008906020850190611a20565b508051611075906009906020840190611a20565b506040805181815260088054600260001961010060018416150201909116049282018390527fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb469290916009918190602082019060608301908690801561111c5780601f106110f15761010080835404028352916020019161111c565b820191906000526020600020905b8154815290600101906020018083116110ff57829003601f168201915b50508381038252845460026000196101006001841615020190911604808252602090910190859080156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b505094505050505060405180910390a15050565b6000600160a060020a0384163014156111bc57600080fd5b610a808484610941565b600654600160a060020a031681565b600554600160a060020a031681565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561123957336000908152600260209081526040808320600160a060020a038816845290915281205561126e565b611249818463ffffffff6119f816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03841630141561130757600080fd5b610a8084846111e4565b600354600160a060020a0316331461132857600080fd5b6003805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b6000611369611414565b151561137757506001610b11565b600654600160a060020a0316151561139157506002610b11565b60075415156113a257506003610b11565b506004610b11565b600354600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109395780601f1061090e57610100808354040283529160200191610939565b600190565b6000600160a060020a038316151561143057600080fd5b3360009081526020819052604090205482111561144c57600080fd5b3360009081526020819052604090205461146c908363ffffffff6119f816565b3360009081526020819052604080822092909255600160a060020a0385168152205461149e908363ffffffff611a0a16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020611ab98339815191529281900390910190a350600192915050565b6000600160a060020a03841630141561150057600080fd5b61150b858585610b14565b5083600160a060020a03168260405180828051906020019080838360005b83811015611541578181015183820152602001611529565b50505050905090810190601f16801561156e5780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af1915050151561158e57600080fd5b506001949350505050565b6000600160a060020a0384163014156115b157600080fd5b610a808484611419565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600091600160a060020a038416916370a082319160248082019260209290919082900301818787803b15801561161f57600080fd5b505af1158015611633573d6000803e3d6000fd5b505050506040513d602081101561164957600080fd5b505192915050565b60075481565b336000908152600260209081526040808320600160a060020a038616845290915281205461168b908363ffffffff611a0a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6116f8611414565b151561170357600080fd5b600160a060020a038116151561171857600080fd5b600554600160a060020a0316331461172f57600080fd5b600461173961135f565b600481111561174457fe5b141561174f57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055604080517f61d3d7a6000000000000000000000000000000000000000000000000000000008152905192909116916361d3d7a6916004808201926020929091908290030181600087803b1580156117d357600080fd5b505af11580156117e7573d6000803e3d6000fd5b505050506040513d60208110156117fd57600080fd5b5051151561180a57600080fd5b600154600660009054906101000a9004600160a060020a0316600160a060020a0316634b2ba0dd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561186057600080fd5b505af1158015611874573d6000803e3d6000fd5b505050506040513d602081101561188a57600080fd5b50511461189657600080fd5b60065460408051600160a060020a039092168252517f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc9181900360200190a150565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461191a57600080fd5b600160a060020a038116151561192f57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081565b600160a060020a03811615156119b257600080fd5b600554600160a060020a031633146119c957600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115611a0457fe5b50900390565b600082820183811015611a1957fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611a6157805160ff1916838001178555611a8e565b82800160010185558215611a8e579182015b82811115611a8e578251825591602001919060010190611a73565b50611a9a929150611a9e565b5090565b610b1191905b80821115611a9a5760008155600101611aa45600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820cd8e1c990fc2819f13f6339f37a6e5359b373625e7fbc5e8e9af04ce0755adfa002900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54455500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54455500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54455500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f544555000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b35763ffffffff60e060020a60003504166305d2035b81146101b857806306fdde03146101e1578063095ea7b31461026b57806316114acd1461028f57806316ca3b63146102b257806318160ddd1461031b57806323b872dd14610342578063313ce5671461036c57806340c10f191461038157806342966c68146103a557806342c1867b146103bd57806343214675146103de57806345977d03146104045780634eee966f1461041c5780635c17f9f4146104b35780635de4ccb01461051c578063600440cb1461054d578063661884631461056257806370a08231146105865780637272ad49146105a75780637d64bcb4146106105780638444b391146106255780638da5cb5b1461065e57806395d89b41146106735780639738968c14610688578063a9059cbb1461069d578063ab67aa58146106c1578063be45fd6214610730578063c45d19db14610799578063c752ff62146107ba578063d73dd623146107cf578063d7e7088a146107f3578063dd62ed3e14610814578063eefa597b14610688578063f2fde38b1461083b578063fccc28131461085c578063ffeb7d7514610871575b600080fd5b3480156101c457600080fd5b506101cd610892565b604080519115158252519081900360200190f35b3480156101ed57600080fd5b506101f66108b3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610230578181015183820152602001610218565b50505050905090810190601f16801561025d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027757600080fd5b506101cd600160a060020a0360043516602435610941565b34801561029b57600080fd5b506102b0600160a060020a03600435166109a7565b005b3480156102be57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a5e9650505050505050565b34801561032757600080fd5b50610330610b0d565b60408051918252519081900360200190f35b34801561034e57600080fd5b506101cd600160a060020a0360043581169060243516604435610b14565b34801561037857600080fd5b50610330610c79565b34801561038d57600080fd5b506102b0600160a060020a0360043516602435610c7f565b3480156103b157600080fd5b506102b0600435610d48565b3480156103c957600080fd5b506101cd600160a060020a0360043516610e0e565b3480156103ea57600080fd5b506102b0600160a060020a03600435166024351515610e23565b34801561041057600080fd5b506102b0600435610ec6565b34801561042857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102b094369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497506110379650505050505050565b3480156104bf57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506111a49650505050505050565b34801561052857600080fd5b506105316111c6565b60408051600160a060020a039092168252519081900360200190f35b34801561055957600080fd5b506105316111d5565b34801561056e57600080fd5b506101cd600160a060020a03600435166024356111e4565b34801561059257600080fd5b50610330600160a060020a03600435166112d4565b3480156105b357600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506112ef9650505050505050565b34801561061c57600080fd5b506102b0611311565b34801561063157600080fd5b5061063a61135f565b6040518082600481111561064a57fe5b60ff16815260200191505060405180910390f35b34801561066a57600080fd5b506105316113aa565b34801561067f57600080fd5b506101f66113b9565b34801561069457600080fd5b506101cd611414565b3480156106a957600080fd5b506101cd600160a060020a0360043516602435611419565b3480156106cd57600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101cd94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506114e89650505050505050565b34801561073c57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cd948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506115999650505050505050565b3480156107a557600080fd5b50610330600160a060020a03600435166115bb565b3480156107c657600080fd5b50610330611651565b3480156107db57600080fd5b506101cd600160a060020a0360043516602435611657565b3480156107ff57600080fd5b506102b0600160a060020a03600435166116f0565b34801561082057600080fd5b50610330600160a060020a03600435811690602435166118d8565b34801561084757600080fd5b506102b0600160a060020a0360043516611903565b34801561086857600080fd5b50610531611998565b34801561087d57600080fd5b506102b0600160a060020a036004351661199d565b60035474010000000000000000000000000000000000000000900460ff1681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600354600160a060020a031633146109be57600080fd5b600354600160a060020a038083169163a9059cbb91166109dd846115bb565b6040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610a2f57600080fd5b505af1158015610a43573d6000803e3d6000fd5b505050506040513d6020811015610a5957600080fd5b505050565b6000600160a060020a038416301415610a7657600080fd5b610a808484611657565b5083600160a060020a03168260405180828051906020019080838360005b83811015610ab6578181015183820152602001610a9e565b50505050905090810190601f168015610ae35780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af19150501515610b0357600080fd5b5060019392505050565b6001545b90565b6000600160a060020a0383161515610b2b57600080fd5b600160a060020a038416600090815260208190526040902054821115610b5057600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b8057600080fd5b600160a060020a038416600090815260208190526040902054610ba9908363ffffffff6119f816565b600160a060020a038086166000908152602081905260408082209390935590851681522054610bde908363ffffffff611a0a16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610c20908363ffffffff6119f816565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611ab9833981519152929181900390910190a35060019392505050565b600a5481565b3360009081526004602052604090205460ff161515610c9d57600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610cc557600080fd5b600154610cd8908263ffffffff611a0a16565b600155600160a060020a038216600090815260208190526040902054610d04908263ffffffff611a0a16565b600160a060020a038316600081815260208181526040808320949094558351858152935192939192600080516020611ab98339815191529281900390910190a35050565b33600081815260208190526040902054610d68908363ffffffff6119f816565b600160a060020a038216600090815260208190526040902055600154610d94908363ffffffff6119f816565b60015560408051600160a060020a03831681526020810184905281517f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7929181900390910190a1604080518381529051600091600160a060020a03841691600080516020611ab98339815191529181900360200190a35050565b60046020526000908152604090205460ff1681565b600354600160a060020a03163314610e3a57600080fd5b60035474010000000000000000000000000000000000000000900460ff1615610e6257600080fd5b600160a060020a038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa9281900390910190a15050565b6000610ed061135f565b90506003816004811115610ee057fe5b1480610ef757506004816004811115610ef557fe5b145b1515610f0257600080fd5b811515610f0e57600080fd5b33600090815260208190526040902054610f2e908363ffffffff6119f816565b33600090815260208190526040902055600154610f51908363ffffffff6119f816565b600155600754610f67908363ffffffff611a0a16565b600755600654604080517f753e88e5000000000000000000000000000000000000000000000000000000008152336004820152602481018590529051600160a060020a039092169163753e88e59160448082019260009290919082900301818387803b158015610fd657600080fd5b505af1158015610fea573d6000803e3d6000fd5b5050600654604080518681529051600160a060020a0390921693503392507f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac919081900360200190a35050565b600354600160a060020a0316331461104e57600080fd5b8151611061906008906020850190611a20565b508051611075906009906020840190611a20565b506040805181815260088054600260001961010060018416150201909116049282018390527fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb469290916009918190602082019060608301908690801561111c5780601f106110f15761010080835404028352916020019161111c565b820191906000526020600020905b8154815290600101906020018083116110ff57829003601f168201915b50508381038252845460026000196101006001841615020190911604808252602090910190859080156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b505094505050505060405180910390a15050565b6000600160a060020a0384163014156111bc57600080fd5b610a808484610941565b600654600160a060020a031681565b600554600160a060020a031681565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561123957336000908152600260209081526040808320600160a060020a038816845290915281205561126e565b611249818463ffffffff6119f816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03841630141561130757600080fd5b610a8084846111e4565b600354600160a060020a0316331461132857600080fd5b6003805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b6000611369611414565b151561137757506001610b11565b600654600160a060020a0316151561139157506002610b11565b60075415156113a257506003610b11565b506004610b11565b600354600160a060020a031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156109395780601f1061090e57610100808354040283529160200191610939565b600190565b6000600160a060020a038316151561143057600080fd5b3360009081526020819052604090205482111561144c57600080fd5b3360009081526020819052604090205461146c908363ffffffff6119f816565b3360009081526020819052604080822092909255600160a060020a0385168152205461149e908363ffffffff611a0a16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020611ab98339815191529281900390910190a350600192915050565b6000600160a060020a03841630141561150057600080fd5b61150b858585610b14565b5083600160a060020a03168260405180828051906020019080838360005b83811015611541578181015183820152602001611529565b50505050905090810190601f16801561156e5780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af1915050151561158e57600080fd5b506001949350505050565b6000600160a060020a0384163014156115b157600080fd5b610a808484611419565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600091600160a060020a038416916370a082319160248082019260209290919082900301818787803b15801561161f57600080fd5b505af1158015611633573d6000803e3d6000fd5b505050506040513d602081101561164957600080fd5b505192915050565b60075481565b336000908152600260209081526040808320600160a060020a038616845290915281205461168b908363ffffffff611a0a16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6116f8611414565b151561170357600080fd5b600160a060020a038116151561171857600080fd5b600554600160a060020a0316331461172f57600080fd5b600461173961135f565b600481111561174457fe5b141561174f57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055604080517f61d3d7a6000000000000000000000000000000000000000000000000000000008152905192909116916361d3d7a6916004808201926020929091908290030181600087803b1580156117d357600080fd5b505af11580156117e7573d6000803e3d6000fd5b505050506040513d60208110156117fd57600080fd5b5051151561180a57600080fd5b600154600660009054906101000a9004600160a060020a0316600160a060020a0316634b2ba0dd6040518163ffffffff1660e060020a028152600401602060405180830381600087803b15801561186057600080fd5b505af1158015611874573d6000803e3d6000fd5b505050506040513d602081101561188a57600080fd5b50511461189657600080fd5b60065460408051600160a060020a039092168252517f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc9181900360200190a150565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461191a57600080fd5b600160a060020a038116151561192f57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081565b600160a060020a03811615156119b257600080fd5b600554600160a060020a031633146119c957600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115611a0457fe5b50900390565b600082820183811015611a1957fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611a6157805160ff1916838001178555611a8e565b82800160010185558215611a8e579182015b82811115611a8e578251825591602001919060010190611a73565b50611a9a929150611a9e565b5090565b610b1191905b80821115611a9a5760008155600101611aa45600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820cd8e1c990fc2819f13f6339f37a6e5359b373625e7fbc5e8e9af04ce0755adfa0029

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54455500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54455500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54455500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f544555000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): LOTEU
Arg [1] : _symbol (string): LOTEU
Arg [2] : _initialSupply (uint256): 40000000000000000
Arg [3] : _decimals (uint256): 8
Arg [4] : _mintable (bool): False

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4c4f544555000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4c4f544555000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [10] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [11] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [15] : 4c4f544555000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [17] : 4c4f544555000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://cd8e1c990fc2819f13f6339f37a6e5359b373625e7fbc5e8e9af04ce0755adfa

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.