ETH Price: $3,160.86 (-5.28%)
Gas: 8 Gwei

Contract

0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer190410472024-01-19 12:56:11166 days ago1705668971IN
Alphacon: ALP Token
0 ETH0.0010823721.77033802
Transfer167770002023-03-07 14:25:35484 days ago1678199135IN
Alphacon: ALP Token
0 ETH0.002181943.90682668
Transfer163985422023-01-13 14:43:47537 days ago1673621027IN
Alphacon: ALP Token
0 ETH0.0016475733.15439776
Transfer136873032021-11-26 3:09:14951 days ago1637896154IN
Alphacon: ALP Token
0 ETH0.0050679493
Transfer132746572021-09-22 9:03:391016 days ago1632301419IN
Alphacon: ALP Token
0 ETH0.0022074940.5
Transfer132346932021-09-16 4:45:571022 days ago1631767557IN
Alphacon: ALP Token
0 ETH0.0034338763
Transfer130792392021-08-23 3:47:051046 days ago1629690425IN
Alphacon: ALP Token
0 ETH0.0023330471.5
Transfer130591372021-08-20 1:08:171049 days ago1629421697IN
Alphacon: ALP Token
0 ETH0.0025351350.9779393
Transfer129561632021-08-04 2:54:261065 days ago1628045666IN
Alphacon: ALP Token
0 ETH0.001853234
Transfer129561362021-08-04 2:48:131065 days ago1628045293IN
Alphacon: ALP Token
0 ETH0.0010851229
Transfer127636832021-07-04 22:18:221095 days ago1625437102IN
Alphacon: ALP Token
0 ETH0.000296297.5
Transfer126516412021-06-17 11:17:501112 days ago1623928670IN
Alphacon: ALP Token
0 ETH0.0007634214
Transfer126516072021-06-17 11:11:441112 days ago1623928304IN
Alphacon: ALP Token
0 ETH0.0005984916
0x30786139126475312021-06-16 19:56:301113 days ago1623873390IN
Alphacon: ALP Token
0 ETH0.0005942124.9
Transfer126258882021-06-13 11:33:101116 days ago1623583990IN
Alphacon: ALP Token
0 ETH0.000156757
Transfer126236832021-06-13 3:20:091117 days ago1623554409IN
Alphacon: ALP Token
0 ETH0.000160996
Transfer126236782021-06-13 3:19:051117 days ago1623554345IN
Alphacon: ALP Token
0 ETH0.000161066
Transfer124569152021-05-18 7:01:141143 days ago1621321274IN
Alphacon: ALP Token
0 ETH0.0024113361
Transfer123684792021-05-04 15:07:461156 days ago1620140866IN
Alphacon: ALP Token
0 ETH0.00471671119.42857142
Transfer122210602021-04-11 21:06:351179 days ago1618175195IN
Alphacon: ALP Token
0 ETH0.0027251271.00000145
Transfer120049362021-03-09 14:53:391212 days ago1615301619IN
Alphacon: ALP Token
0 ETH0.00662234124
Transfer120049032021-03-09 14:46:111212 days ago1615301171IN
Alphacon: ALP Token
0 ETH0.0044935117.00000156
Transfer119759322021-03-05 3:47:221217 days ago1614916042IN
Alphacon: ALP Token
0 ETH0.00287598123.00000072
Transfer119759132021-03-05 3:42:511217 days ago1614915771IN
Alphacon: ALP Token
0 ETH0.00667425125.00000072
Transfer118595962021-02-15 6:03:381235 days ago1613369018IN
Alphacon: ALP Token
0 ETH0.00571315107
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:
AlphaconCustomToken

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 2018-06-14
*/

pragma solidity ^0.4.23;


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


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

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

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


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


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() 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 relinquish control of the contract.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @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 {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}


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

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

}


/**
 * @title 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 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

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

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

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit 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) {
    return balances[_owner];
  }

}


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  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 {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _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);
    emit 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;
    emit 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));
    emit 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);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}


/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


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

  modifier hasMintPermission() {
    require(msg.sender == owner);
    _;
  }

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

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


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

  bool public paused = false;


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

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

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

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


/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, Pausable {

  function transfer(
    address _to,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.transfer(_to, _value);
  }

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

  function approve(
    address _spender,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.approve(_spender, _value);
  }

  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}


pragma solidity^0.4.18;




  
contract AlphaconToken is CanReclaimToken, MintableToken, BurnableToken, PausableToken { 
  string public name = "Alphacon Token";
  string public symbol = "ALP";
  uint8 public decimals = 18; 
}


/**
 * @title Contracts that should not own Ether
 * @author Remco Bloemen <remco@2π.com>
 * @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up
 * in the contract, it will allow the owner to reclaim this ether.
 * @notice Ether can still be sent to this contract by:
 * calling functions labeled `payable`
 * `selfdestruct(contract_address)`
 * mining directly to the contract address
 */
contract HasNoEther is Ownable {

  /**
  * @dev Constructor that rejects incoming Ether
  * @dev The `payable` flag is added so we can access `msg.value` without compiler warning. If we
  * leave out payable, then Solidity will allow inheriting contracts to implement a payable
  * constructor. By doing it this way we prevent a payable constructor from working. Alternatively
  * we could use assembly to access msg.value.
  */
  constructor() public payable {
    require(msg.value == 0);
  }

  /**
   * @dev Disallows direct send by settings a default function without the `payable` flag.
   */
  function() external {
  }

  /**
   * @dev Transfer all Ether held by the contract to the owner.
   */
  function reclaimEther() external onlyOwner {
    owner.transfer(address(this).balance);
  }
}


pragma solidity^0.4.24;




/**
  * @title  AlphaconCustomToken
  * @notice AlphaconCustomToken permits one more token generation after
  *         token sale finalized. The generated token _amount is limited
  *         up to 10% of total supply before the generation.
  */
contract AlphaconCustomToken is HasNoEther, CanReclaimToken, AlphaconToken {
  /* State */
  bool public tokenGenerated;
  uint256 public constant TARGET_TOTAL_SUPPLY = 25e27; // 25 Billion ALP

  /* Event */
  event MintAfterSale(address _to, uint _preSupply, uint _postSupply);

  /* External */
  /**
    * @notice After crowdsale finalized, mint additional tokens for ESC-LOCK.
    *         This generation only happens once.
    */
  function mintAfterSale() external onlyOwner returns (bool) {
    require(!tokenGenerated);

    // valid only after finishMinting is executed
    require(mintingFinished);

    // revert if total supply is more than TARGET_TOTAL_SUPPLY
    uint256 preSupply = totalSupply();
    require(preSupply < TARGET_TOTAL_SUPPLY);
    uint256 amount = TARGET_TOTAL_SUPPLY.sub(preSupply);

    // mint token internally
    totalSupply_ = TARGET_TOTAL_SUPPLY;
    balances[owner] = balances[owner].add(amount);
    emit Transfer(address(0), owner, amount);

    tokenGenerated = true;

    emit MintAfterSale(owner, preSupply, totalSupply());

    return true;
  }
}

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":true,"inputs":[],"name":"tokenGenerated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mintAfterSale","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":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"TARGET_TOTAL_SUPPLY","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":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_to","type":"address"},{"indexed":false,"name":"_preSupply","type":"uint256"},{"indexed":false,"name":"_postSupply","type":"uint256"}],"name":"MintAfterSale","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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"}]

6003805460a060020a61ffff021916905560c0604052600e60808190527f416c706861636f6e20546f6b656e00000000000000000000000000000000000060a0908152620000519160049190620000ca565b506040805180820190915260038082527f414c50000000000000000000000000000000000000000000000000000000000060209092019182526200009891600591620000ca565b506006805460ff1916601217905560038054600160a060020a031916331790553415620000c457600080fd5b6200016f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200010d57805160ff19168380011785556200013d565b828001600101855582156200013d579182015b828111156200013d57825182559160200191906001019062000120565b506200014b9291506200014f565b5090565b6200016c91905b808211156200014b576000815560010162000156565b90565b6113a5806200017f6000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016257806306fdde031461018b578063095ea7b31461021557806314de9cc21461023957806317ffc3201461024e57806318160ddd146102715780631d5b9efe1461029857806323b872dd146102ad578063313ce567146102d75780633f4ba83a1461030257806340c10f191461031757806342966c681461033b5780635c975abb14610353578063661884631461036857806370a082311461038c578063715018a6146103ad5780637d64bcb4146103c25780638456cb59146103d75780638da5cb5b146103ec57806395d89b411461041d5780639f727c2714610432578063a9059cbb14610447578063d63fe1c71461046b578063d73dd62314610480578063dd62ed3e146104a4578063f2fde38b146104cb575b34801561015f57600080fd5b50005b34801561016e57600080fd5b506101776104ec565b604080519115158252519081900360200190f35b34801561019757600080fd5b506101a06104fc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022157600080fd5b50610177600160a060020a036004351660243561058a565b34801561024557600080fd5b506101776105b5565b34801561025a57600080fd5b5061026f600160a060020a03600435166105c3565b005b34801561027d57600080fd5b50610286610691565b60408051918252519081900360200190f35b3480156102a457600080fd5b50610177610697565b3480156102b957600080fd5b50610177600160a060020a036004358116906024351660443561081b565b3480156102e357600080fd5b506102ec610848565b6040805160ff9092168252519081900360200190f35b34801561030e57600080fd5b5061026f610851565b34801561032357600080fd5b50610177600160a060020a03600435166024356108ca565b34801561034757600080fd5b5061026f6004356109c2565b34801561035f57600080fd5b506101776109cf565b34801561037457600080fd5b50610177600160a060020a03600435166024356109df565b34801561039857600080fd5b50610286600160a060020a0360043516610a03565b3480156103b957600080fd5b5061026f610a1e565b3480156103ce57600080fd5b50610177610a8c565b3480156103e357600080fd5b5061026f610b10565b3480156103f857600080fd5b50610401610b8e565b60408051600160a060020a039092168252519081900360200190f35b34801561042957600080fd5b506101a0610b9d565b34801561043e57600080fd5b5061026f610bf8565b34801561045357600080fd5b50610177600160a060020a0360043516602435610c49565b34801561047757600080fd5b50610286610c6d565b34801561048c57600080fd5b50610177600160a060020a0360043516602435610c7d565b3480156104b057600080fd5b50610286600160a060020a0360043581169060243516610ca1565b3480156104d757600080fd5b5061026f600160a060020a0360043516610ccc565b60035460a060020a900460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105825780601f1061055757610100808354040283529160200191610582565b820191906000526020600020905b81548152906001019060200180831161056557829003601f168201915b505050505081565b60035460009060a860020a900460ff16156105a457600080fd5b6105ae8383610cec565b9392505050565b600654610100900460ff1681565b600354600090600160a060020a031633146105dd57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561063e57600080fd5b505af1158015610652573d6000803e3d6000fd5b505050506040513d602081101561066857600080fd5b505160035490915061068d90600160a060020a0384811691168363ffffffff610d5216565b5050565b60015490565b60035460009081908190600160a060020a031633146106b557600080fd5b600654610100900460ff16156106ca57600080fd5b60035460a060020a900460ff1615156106e257600080fd5b6106ea610691565b91506b50c783eb9b5c85f2a8000000821061070457600080fd5b6107206b50c783eb9b5c85f2a80000008363ffffffff610e0a16565b6b50c783eb9b5c85f2a8000000600155600354600160a060020a031660009081526020819052604090205490915061075e908263ffffffff610e1c16565b60038054600160a060020a0390811660009081526020818152604080832095909555925484518681529451921693909260008051602061135a83398151915292918290030190a36006805461ff0019166101001790556003547fba126fd9ea09ab4af32c4531d32f672df824d84a6ac2cbe0196aea2850d1c44e90600160a060020a0316836107eb610691565b60408051600160a060020a039094168452602084019290925282820152519081900360600190a160019250505090565b60035460009060a860020a900460ff161561083557600080fd5b610840848484610e2f565b949350505050565b60065460ff1681565b600354600160a060020a0316331461086857600080fd5b60035460a860020a900460ff16151561088057600080fd5b6003805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600090600160a060020a031633146108e457600080fd5b60035460a060020a900460ff16156108fb57600080fd5b60015461090e908363ffffffff610e1c16565b600155600160a060020a03831660009081526020819052604090205461093a908363ffffffff610e1c16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602061135a8339815191529181900360200190a350600192915050565b6109cc3382610f94565b50565b60035460a860020a900460ff1681565b60035460009060a860020a900460ff16156109f957600080fd5b6105ae8383611083565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610a3557600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a03163314610aa657600080fd5b60035460a060020a900460ff1615610abd57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610b2757600080fd5b60035460a860020a900460ff1615610b3e57600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105825780601f1061055757610100808354040283529160200191610582565b600354600160a060020a03163314610c0f57600080fd5b600354604051600160a060020a0390911690303180156108fc02916000818181858888f193505050501580156109cc573d6000803e3d6000fd5b60035460009060a860020a900460ff1615610c6357600080fd5b6105ae8383611173565b6b50c783eb9b5c85f2a800000081565b60035460009060a860020a900460ff1615610c9757600080fd5b6105ae8383611242565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ce357600080fd5b6109cc816112db565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610dce57600080fd5b505af1158015610de2573d6000803e3d6000fd5b505050506040513d6020811015610df857600080fd5b50511515610e0557600080fd5b505050565b600082821115610e1657fe5b50900390565b81810182811015610e2957fe5b92915050565b6000600160a060020a0383161515610e4657600080fd5b600160a060020a038416600090815260208190526040902054821115610e6b57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610e9b57600080fd5b600160a060020a038416600090815260208190526040902054610ec4908363ffffffff610e0a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ef9908363ffffffff610e1c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f3b908363ffffffff610e0a16565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061135a833981519152929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610fb957600080fd5b600160a060020a038216600090815260208190526040902054610fe2908263ffffffff610e0a16565b600160a060020a03831660009081526020819052604090205560015461100e908263ffffffff610e0a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061135a8339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156110d857336000908152600260209081526040808320600160a060020a038816845290915281205561110d565b6110e8818463ffffffff610e0a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a038316151561118a57600080fd5b336000908152602081905260409020548211156111a657600080fd5b336000908152602081905260409020546111c6908363ffffffff610e0a16565b3360009081526020819052604080822092909255600160a060020a038516815220546111f8908363ffffffff610e1c16565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061135a8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611276908363ffffffff610e1c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156112f057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820eb07bc9dfbdb409cb256b974ac137055de1f9e611740092faa0bcf539fbd53140029

Deployed Bytecode

0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461016257806306fdde031461018b578063095ea7b31461021557806314de9cc21461023957806317ffc3201461024e57806318160ddd146102715780631d5b9efe1461029857806323b872dd146102ad578063313ce567146102d75780633f4ba83a1461030257806340c10f191461031757806342966c681461033b5780635c975abb14610353578063661884631461036857806370a082311461038c578063715018a6146103ad5780637d64bcb4146103c25780638456cb59146103d75780638da5cb5b146103ec57806395d89b411461041d5780639f727c2714610432578063a9059cbb14610447578063d63fe1c71461046b578063d73dd62314610480578063dd62ed3e146104a4578063f2fde38b146104cb575b34801561015f57600080fd5b50005b34801561016e57600080fd5b506101776104ec565b604080519115158252519081900360200190f35b34801561019757600080fd5b506101a06104fc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022157600080fd5b50610177600160a060020a036004351660243561058a565b34801561024557600080fd5b506101776105b5565b34801561025a57600080fd5b5061026f600160a060020a03600435166105c3565b005b34801561027d57600080fd5b50610286610691565b60408051918252519081900360200190f35b3480156102a457600080fd5b50610177610697565b3480156102b957600080fd5b50610177600160a060020a036004358116906024351660443561081b565b3480156102e357600080fd5b506102ec610848565b6040805160ff9092168252519081900360200190f35b34801561030e57600080fd5b5061026f610851565b34801561032357600080fd5b50610177600160a060020a03600435166024356108ca565b34801561034757600080fd5b5061026f6004356109c2565b34801561035f57600080fd5b506101776109cf565b34801561037457600080fd5b50610177600160a060020a03600435166024356109df565b34801561039857600080fd5b50610286600160a060020a0360043516610a03565b3480156103b957600080fd5b5061026f610a1e565b3480156103ce57600080fd5b50610177610a8c565b3480156103e357600080fd5b5061026f610b10565b3480156103f857600080fd5b50610401610b8e565b60408051600160a060020a039092168252519081900360200190f35b34801561042957600080fd5b506101a0610b9d565b34801561043e57600080fd5b5061026f610bf8565b34801561045357600080fd5b50610177600160a060020a0360043516602435610c49565b34801561047757600080fd5b50610286610c6d565b34801561048c57600080fd5b50610177600160a060020a0360043516602435610c7d565b3480156104b057600080fd5b50610286600160a060020a0360043581169060243516610ca1565b3480156104d757600080fd5b5061026f600160a060020a0360043516610ccc565b60035460a060020a900460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105825780601f1061055757610100808354040283529160200191610582565b820191906000526020600020905b81548152906001019060200180831161056557829003601f168201915b505050505081565b60035460009060a860020a900460ff16156105a457600080fd5b6105ae8383610cec565b9392505050565b600654610100900460ff1681565b600354600090600160a060020a031633146105dd57600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561063e57600080fd5b505af1158015610652573d6000803e3d6000fd5b505050506040513d602081101561066857600080fd5b505160035490915061068d90600160a060020a0384811691168363ffffffff610d5216565b5050565b60015490565b60035460009081908190600160a060020a031633146106b557600080fd5b600654610100900460ff16156106ca57600080fd5b60035460a060020a900460ff1615156106e257600080fd5b6106ea610691565b91506b50c783eb9b5c85f2a8000000821061070457600080fd5b6107206b50c783eb9b5c85f2a80000008363ffffffff610e0a16565b6b50c783eb9b5c85f2a8000000600155600354600160a060020a031660009081526020819052604090205490915061075e908263ffffffff610e1c16565b60038054600160a060020a0390811660009081526020818152604080832095909555925484518681529451921693909260008051602061135a83398151915292918290030190a36006805461ff0019166101001790556003547fba126fd9ea09ab4af32c4531d32f672df824d84a6ac2cbe0196aea2850d1c44e90600160a060020a0316836107eb610691565b60408051600160a060020a039094168452602084019290925282820152519081900360600190a160019250505090565b60035460009060a860020a900460ff161561083557600080fd5b610840848484610e2f565b949350505050565b60065460ff1681565b600354600160a060020a0316331461086857600080fd5b60035460a860020a900460ff16151561088057600080fd5b6003805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600090600160a060020a031633146108e457600080fd5b60035460a060020a900460ff16156108fb57600080fd5b60015461090e908363ffffffff610e1c16565b600155600160a060020a03831660009081526020819052604090205461093a908363ffffffff610e1c16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602061135a8339815191529181900360200190a350600192915050565b6109cc3382610f94565b50565b60035460a860020a900460ff1681565b60035460009060a860020a900460ff16156109f957600080fd5b6105ae8383611083565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610a3557600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a03163314610aa657600080fd5b60035460a060020a900460ff1615610abd57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a03163314610b2757600080fd5b60035460a860020a900460ff1615610b3e57600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105825780601f1061055757610100808354040283529160200191610582565b600354600160a060020a03163314610c0f57600080fd5b600354604051600160a060020a0390911690303180156108fc02916000818181858888f193505050501580156109cc573d6000803e3d6000fd5b60035460009060a860020a900460ff1615610c6357600080fd5b6105ae8383611173565b6b50c783eb9b5c85f2a800000081565b60035460009060a860020a900460ff1615610c9757600080fd5b6105ae8383611242565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ce357600080fd5b6109cc816112db565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610dce57600080fd5b505af1158015610de2573d6000803e3d6000fd5b505050506040513d6020811015610df857600080fd5b50511515610e0557600080fd5b505050565b600082821115610e1657fe5b50900390565b81810182811015610e2957fe5b92915050565b6000600160a060020a0383161515610e4657600080fd5b600160a060020a038416600090815260208190526040902054821115610e6b57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610e9b57600080fd5b600160a060020a038416600090815260208190526040902054610ec4908363ffffffff610e0a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ef9908363ffffffff610e1c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f3b908363ffffffff610e0a16565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061135a833981519152929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610fb957600080fd5b600160a060020a038216600090815260208190526040902054610fe2908263ffffffff610e0a16565b600160a060020a03831660009081526020819052604090205560015461100e908263ffffffff610e0a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061135a8339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156110d857336000908152600260209081526040808320600160a060020a038816845290915281205561110d565b6110e8818463ffffffff610e0a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a038316151561118a57600080fd5b336000908152602081905260409020548211156111a657600080fd5b336000908152602081905260409020546111c6908363ffffffff610e0a16565b3360009081526020819052604080822092909255600160a060020a038516815220546111f8908363ffffffff610e1c16565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061135a8339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611276908363ffffffff610e1c16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156112f057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820eb07bc9dfbdb409cb256b974ac137055de1f9e611740092faa0bcf539fbd53140029

Swarm Source

bzzr://eb07bc9dfbdb409cb256b974ac137055de1f9e611740092faa0bcf539fbd5314

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

A Blockchain-based Data & AI Platform

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.