ETH Price: $2,723.97 (+7.36%)
Gas: 3 Gwei

Contract

0x68f54CeF8DB7Ca1d3aC1bdd4cB56bC7A6Ec26Faa
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer113547942020-11-29 16:49:421352 days ago1606668582IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0009241417.6
Transfer113546722020-11-29 16:18:041352 days ago1606666684IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0009301217.71
Transfer113546022020-11-29 16:02:451352 days ago1606665765IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0009818918.7
Transfer113544612020-11-29 15:34:041352 days ago1606664044IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0008145815.51
Transfer113541052020-11-29 14:12:291352 days ago1606659149IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0006932613.2
Transfer113512702020-11-29 3:46:441352 days ago1606621604IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0006932613.2
Transfer113512702020-11-29 3:46:441352 days ago1606621604IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0006932613.2
Transfer113512692020-11-29 3:46:351352 days ago1606621595IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0006932613.2
Transfer113512682020-11-29 3:46:271352 days ago1606621587IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0006932613.2
Transfer113500132020-11-28 23:16:551353 days ago1606605415IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0007105913.53
Transfer113499502020-11-28 23:03:501353 days ago1606604630IN
0x68f54CeF...A6Ec26Faa
0 ETH0.000733713.97
Transfer113498542020-11-28 22:43:501353 days ago1606603430IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0007163713.64
Transfer113430702020-11-27 21:59:441354 days ago1606514384IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010514520.02
Transfer113430662020-11-27 21:58:351354 days ago1606514315IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010572220.13
Transfer113430652020-11-27 21:58:271354 days ago1606514307IN
0x68f54CeF...A6Ec26Faa
0 ETH0.00106320.24
Transfer113429582020-11-27 21:39:361354 days ago1606513176IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010514520.02
Transfer113429572020-11-27 21:39:251354 days ago1606513165IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010514520.02
Transfer113428442020-11-27 21:12:271354 days ago1606511547IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010454319.91
Transfer113428352020-11-27 21:08:301354 days ago1606511310IN
0x68f54CeF...A6Ec26Faa
0 ETH0.00106320.24
Transfer113428352020-11-27 21:08:301354 days ago1606511310IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0011205221.34
Transfer113428112020-11-27 21:04:221354 days ago1606511062IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0011207721.34
Transfer113427942020-11-27 21:00:261354 days ago1606510826IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0007797920.79
Transfer113427942020-11-27 21:00:261354 days ago1606510826IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0007800420.79
Transfer113427942020-11-27 21:00:261354 days ago1606510826IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010803320.57
Transfer113427822020-11-27 20:57:201354 days ago1606510640IN
0x68f54CeF...A6Ec26Faa
0 ETH0.0010803320.57
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NNXCoin

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-09
*/

pragma solidity ^0.4.24;

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

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring '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;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts 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, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

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

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

  mapping (address => mapping (address => uint256)) private _allowed;

  uint256 private _totalSupply;

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

  /**
  * @dev Gets the balance of the specified address.
  * @param owner The address to query 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];
  }

  /**
   * @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 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) {
    _transfer(msg.sender, 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) {
    require(spender != address(0));

    _allowed[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

  /**
   * @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(value <= _allowed[from][msg.sender]);

    _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
    _transfer(from, to, value);
    return true;
  }

  /**
   * @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 increaseAllowance(
    address spender,
    uint256 addedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _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 decreaseAllowance(
    address spender,
    uint256 subtractedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].sub(subtractedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
  * @dev Transfer token for a specified addresses
  * @param from The address to transfer from.
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  */
  function _transfer(address from, address to, uint256 value) internal {
    require(value <= _balances[from]);
    require(to != address(0));

    _balances[from] = _balances[from].sub(value);
    _balances[to] = _balances[to].add(value);
    emit Transfer(from, to, value);
  }

  /**
   * @dev Internal function that mints an amount of the token and assigns it to
   * an account. This encapsulates the modification of balances such that the
   * proper events are emitted.
   * @param account The account that will receive the created tokens.
   * @param value The amount that will be created.
   */
  function _mint(address account, uint256 value) internal {
    require(account != 0);
    _totalSupply = _totalSupply.add(value);
    _balances[account] = _balances[account].add(value);
    emit Transfer(address(0), account, value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burn(address account, uint256 value) internal {
    require(account != 0);
    require(value <= _balances[account]);

    _totalSupply = _totalSupply.sub(value);
    _balances[account] = _balances[account].sub(value);
    emit Transfer(account, address(0), value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal burn function.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burnFrom(address account, uint256 value) internal {
    require(value <= _allowed[account][msg.sender]);

    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
      value);
    _burn(account, 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 private _owner;

  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;
    emit OwnershipTransferred(address(0), _owner);
  }

  /**
   * @return the address of the owner.
   */
  function owner() public view returns(address) {
    return _owner;
  }

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

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _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 ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20, Ownable {

  /**
   * @dev Burns a specific amount of tokens.
   * @param value The amount of token to be burned.
   */
  function burn(uint256 value) onlyOwner public {
    _burn(msg.sender, value);
  }

  /**
   * @dev Burns a specific amount of tokens from the target address and decrements allowance
   * @param from address The address which you want to send tokens from
   * @param value uint256 The amount of token to be burned
   */
  function burnFrom(address from, uint256 value) onlyOwner public {
    _burnFrom(from, value);
  }
}


/**
 * @title CoinV18
 */
contract NNXCoin is ERC20Burnable,ERC20Detailed {

  uint8 public constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = 21456378 * (10 ** uint256(DECIMALS)); 

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("NanoX Coin", "NNX", 18) {
        _mint(msg.sender, INITIAL_SUPPLY); 
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","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":"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":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","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":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"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":"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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b50604080518082018252600a81527f4e616e6f5820436f696e000000000000000000000000000000000000000000006020808301919091528251808401845260038082527f4e4e580000000000000000000000000000000000000000000000000000000000928201929092528154600160a060020a0319163317918290559251919291601291600160a060020a0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620000de9060049060208601906200020b565b508151620000f49060059060208501906200020b565b506006805460ff191660ff92909216919091179055506200012c9050336a11bf9095021d37eba8000064010000000062000132810204565b620002b0565b600160a060020a03821615156200014857600080fd5b60025462000165908264010000000062000972620001f182021704565b600255600160a060020a0382166000908152602081905260409020546200019b908264010000000062000972620001f182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200020457600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b620002ad91905b808211156200028c576000815560010162000297565b90565b610b9580620002c06000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632e0f26251461021e5780632ff2e9dc14610249578063313ce5671461025e578063395093511461027357806342966c681461029757806370a08231146102b1578063715018a6146102d257806379cc6790146102e75780638da5cb5b1461030b5780638f32d59b1461033c57806395d89b4114610351578063a457c2d714610366578063a9059cbb1461038a578063dd62ed3e146103ae578063f2fde38b146103d5575b600080fd5b34801561011757600080fd5b506101206103f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561048c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e261050a565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a0360043581169060243516604435610510565b34801561022a57600080fd5b506102336105ad565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101e26105b2565b34801561026a57600080fd5b506102336105c1565b34801561027f57600080fd5b506101b9600160a060020a03600435166024356105ca565b3480156102a357600080fd5b506102af60043561067a565b005b3480156102bd57600080fd5b506101e2600160a060020a036004351661069a565b3480156102de57600080fd5b506102af6106b5565b3480156102f357600080fd5b506102af600160a060020a036004351660243561071f565b34801561031757600080fd5b50610320610740565b60408051600160a060020a039092168252519081900360200190f35b34801561034857600080fd5b506101b961074f565b34801561035d57600080fd5b50610120610760565b34801561037257600080fd5b506101b9600160a060020a03600435166024356107c1565b34801561039657600080fd5b506101b9600160a060020a036004351660243561080c565b3480156103ba57600080fd5b506101e2600160a060020a0360043581169060243516610822565b3480156103e157600080fd5b506102af600160a060020a036004351661084d565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b6000600160a060020a03831615156104a357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561054057600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610574908363ffffffff61086916565b600160a060020a03851660009081526001602090815260408083203384529091529020556105a3848484610880565b5060019392505050565b601281565b6a11bf9095021d37eba8000081565b60065460ff1690565b6000600160a060020a03831615156105e157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61097216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61068261074f565b151561068d57600080fd5b610697338261098b565b50565b600160a060020a031660009081526020819052604090205490565b6106bd61074f565b15156106c857600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b61072761074f565b151561073257600080fd5b61073c8282610a59565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b6000600160a060020a03831615156107d857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61086916565b6000610819338484610880565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b61085561074f565b151561086057600080fd5b61069781610aeb565b6000808383111561087957600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156108a557600080fd5b600160a060020a03821615156108ba57600080fd5b600160a060020a0383166000908152602081905260409020546108e3908263ffffffff61086916565b600160a060020a038085166000908152602081905260408082209390935590841681522054610918908263ffffffff61097216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561098457600080fd5b9392505050565b600160a060020a03821615156109a057600080fd5b600160a060020a0382166000908152602081905260409020548111156109c557600080fd5b6002546109d8908263ffffffff61086916565b600255600160a060020a038216600090815260208190526040902054610a04908263ffffffff61086916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054811115610a8957600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610abd908263ffffffff61086916565b600160a060020a038316600090815260016020908152604080832033845290915290205561073c828261098b565b600160a060020a0381161515610b0057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820aa9e1ba4b0838a2145a053645bce6907114a91430d0dd8645b519f50e95f7d510029

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632e0f26251461021e5780632ff2e9dc14610249578063313ce5671461025e578063395093511461027357806342966c681461029757806370a08231146102b1578063715018a6146102d257806379cc6790146102e75780638da5cb5b1461030b5780638f32d59b1461033c57806395d89b4114610351578063a457c2d714610366578063a9059cbb1461038a578063dd62ed3e146103ae578063f2fde38b146103d5575b600080fd5b34801561011757600080fd5b506101206103f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561048c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e261050a565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a0360043581169060243516604435610510565b34801561022a57600080fd5b506102336105ad565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101e26105b2565b34801561026a57600080fd5b506102336105c1565b34801561027f57600080fd5b506101b9600160a060020a03600435166024356105ca565b3480156102a357600080fd5b506102af60043561067a565b005b3480156102bd57600080fd5b506101e2600160a060020a036004351661069a565b3480156102de57600080fd5b506102af6106b5565b3480156102f357600080fd5b506102af600160a060020a036004351660243561071f565b34801561031757600080fd5b50610320610740565b60408051600160a060020a039092168252519081900360200190f35b34801561034857600080fd5b506101b961074f565b34801561035d57600080fd5b50610120610760565b34801561037257600080fd5b506101b9600160a060020a03600435166024356107c1565b34801561039657600080fd5b506101b9600160a060020a036004351660243561080c565b3480156103ba57600080fd5b506101e2600160a060020a0360043581169060243516610822565b3480156103e157600080fd5b506102af600160a060020a036004351661084d565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b6000600160a060020a03831615156104a357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561054057600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610574908363ffffffff61086916565b600160a060020a03851660009081526001602090815260408083203384529091529020556105a3848484610880565b5060019392505050565b601281565b6a11bf9095021d37eba8000081565b60065460ff1690565b6000600160a060020a03831615156105e157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61097216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61068261074f565b151561068d57600080fd5b610697338261098b565b50565b600160a060020a031660009081526020819052604090205490565b6106bd61074f565b15156106c857600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b61072761074f565b151561073257600080fd5b61073c8282610a59565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b6000600160a060020a03831615156107d857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61086916565b6000610819338484610880565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b61085561074f565b151561086057600080fd5b61069781610aeb565b6000808383111561087957600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156108a557600080fd5b600160a060020a03821615156108ba57600080fd5b600160a060020a0383166000908152602081905260409020546108e3908263ffffffff61086916565b600160a060020a038085166000908152602081905260408082209390935590841681522054610918908263ffffffff61097216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561098457600080fd5b9392505050565b600160a060020a03821615156109a057600080fd5b600160a060020a0382166000908152602081905260409020548111156109c557600080fd5b6002546109d8908263ffffffff61086916565b600255600160a060020a038216600090815260208190526040902054610a04908263ffffffff61086916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054811115610a8957600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610abd908263ffffffff61086916565b600160a060020a038316600090815260016020908152604080832033845290915290205561073c828261098b565b600160a060020a0381161515610b0057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820aa9e1ba4b0838a2145a053645bce6907114a91430d0dd8645b519f50e95f7d510029

Deployed Bytecode Sourcemap

13351:392:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12221:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12221:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12221:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4880:226:0;-1:-1:-1;;;;;4880:226:0;;;;;;;;;;;;;;;;;;;;;;;;;3091:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3091:85:0;;;;;;;;;;;;;;;;;;;;5386:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5386:301:0;-1:-1:-1;;;;;5386:301:0;;;;;;;;;;;;13406:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13406:35:0;;;;;;;;;;;;;;;;;;;;;;;13448:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13448:77:0;;;;12537:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12537:83:0;;;;6149:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6149:343:0;-1:-1:-1;;;;;6149:343:0;;;;;;;12884:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12884:83:0;;;;;;;3380:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3380:100:0;-1:-1:-1;;;;;3380:100:0;;;;;10902:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10902:130:0;;;;13214:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13214:99:0;-1:-1:-1;;;;;13214:99:0;;;;;;;10243:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10243:72:0;;;;;;;;-1:-1:-1;;;;;10243:72:0;;;;;;;;;;;;;;10545:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10545:85:0;;;;12371:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12371:87:0;;;;6959:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6959:353:0;-1:-1:-1;;;;;6959:353:0;;;;;;;4123:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4123:130:0;-1:-1:-1;;;;;4123:130:0;;;;;;;3805:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3805:159:0;-1:-1:-1;;;;;3805:159:0;;;;;;;;;;11199:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11199:103:0;-1:-1:-1;;;;;11199:103:0;;;;;12221:83;12291:5;12284:12;;;;;;;;-1:-1:-1;;12284:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12258:6;;12284:12;;12291:5;;12284:12;;12291:5;12284:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12221:83;:::o;4880:226::-;4945:4;-1:-1:-1;;;;;4966:21:0;;;;4958:30;;;;;;5006:10;4997:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4997:29:0;;;;;;;;;;;;:37;;;5046:36;;;;;;;4997:29;;5006:10;5046:36;;;;;;;;;;;-1:-1:-1;5096:4:0;4880:226;;;;:::o;3091:85::-;3158:12;;3091:85;:::o;5386:301::-;-1:-1:-1;;;;;5528:14:0;;5495:4;5528:14;;;:8;:14;;;;;;;;5543:10;5528:26;;;;;;;;5519:35;;;5511:44;;;;;;-1:-1:-1;;;;;5593:14:0;;;;;;:8;:14;;;;;;;;5608:10;5593:26;;;;;;;;:37;;5624:5;5593:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5564:14:0;;;;;;:8;:14;;;;;;;;5579:10;5564:26;;;;;;;:66;5637:26;5573:4;5653:2;5657:5;5637:9;:26::i;:::-;-1:-1:-1;5677:4:0;5386:301;;;;;:::o;13406:35::-;13439:2;13406:35;:::o;13448:77::-;13489:36;13448:77;:::o;12537:83::-;12603:9;;;;12537:83;:::o;6149:343::-;6254:4;-1:-1:-1;;;;;6278:21:0;;;;6270:30;;;;;;6359:10;6350:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6350:29:0;;;;;;;;;;:45;;6384:10;6350:45;:33;:45;:::i;:::-;6318:10;6309:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6309:29:0;;;;;;;;;;;;:87;;;6408:60;;;;;;6309:29;;6408:60;;;;;;;;;;;-1:-1:-1;6482:4:0;6149:343;;;;:::o;12884:83::-;10436:9;:7;:9::i;:::-;10428:18;;;;;;;;12937:24;12943:10;12955:5;12937;:24::i;:::-;12884:83;:::o;3380:100::-;-1:-1:-1;;;;;3458:16:0;3435:7;3458:16;;;;;;;;;;;;3380:100::o;10902:130::-;10436:9;:7;:9::i;:::-;10428:18;;;;;;;;10981:6;;10960:40;;10997:1;;-1:-1:-1;;;;;10981:6:0;;10960:40;;10997:1;;10960:40;11007:6;:19;;-1:-1:-1;;11007:19:0;;;10902:130::o;13214:99::-;10436:9;:7;:9::i;:::-;10428:18;;;;;;;;13285:22;13295:4;13301:5;13285:9;:22::i;:::-;13214:99;;:::o;10243:72::-;10303:6;;-1:-1:-1;;;;;10303:6:0;10243:72;:::o;10545:85::-;10618:6;;-1:-1:-1;;;;;10618:6:0;10604:10;:20;;10545:85::o;12371:87::-;12443:7;12436:14;;;;;;;;-1:-1:-1;;12436:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12410:6;;12436:14;;12443:7;;12436:14;;12443:7;12436:14;;;;;;;;;;;;;;;;;;;;;;;;6959:353;7069:4;-1:-1:-1;;;;;7093:21:0;;;;7085:30;;;;;;7174:10;7165:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7165:29:0;;;;;;;;;;:50;;7199:15;7165:50;:33;:50;:::i;4123:130::-;4184:4;4197:32;4207:10;4219:2;4223:5;4197:9;:32::i;:::-;-1:-1:-1;4243:4:0;4123:130;;;;:::o;3805:159::-;-1:-1:-1;;;;;3934:15:0;;;3908:7;3934:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3805:159::o;11199:103::-;10436:9;:7;:9::i;:::-;10428:18;;;;;;;;11268:28;11287:8;11268:18;:28::i;1117:136::-;1175:7;;1199:6;;;;1191:15;;;;;;-1:-1:-1;;1225:5:0;;;1117:136::o;7520:284::-;-1:-1:-1;;;;;7613:15:0;;:9;:15;;;;;;;;;;;7604:24;;;7596:33;;;;;;-1:-1:-1;;;;;7644:16:0;;;;7636:25;;;;;;-1:-1:-1;;;;;7688:15:0;;:9;:15;;;;;;;;;;;:26;;7708:5;7688:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7670:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7737:13;;;;;;;:24;;7755:5;7737:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7721:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7773:25;;;;;;;7721:13;;7773:25;;;;;;;;;;;;;7520:284;;;:::o;1321:136::-;1379:7;1407:5;;;1427:6;;;;1419:15;;;;;;1450:1;1321:136;-1:-1:-1;;;1321:136:0:o;8600:285::-;-1:-1:-1;;;;;8671:12:0;;;;8663:21;;;;;;-1:-1:-1;;;;;8708:18:0;;:9;:18;;;;;;;;;;;8699:27;;;8691:36;;;;;;8751:12;;:23;;8768:5;8751:23;:16;:23;:::i;:::-;8736:12;:38;-1:-1:-1;;;;;8802:18:0;;:9;:18;;;;;;;;;;;:29;;8825:5;8802:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8781:18:0;;:9;:18;;;;;;;;;;;:50;;;;8843:36;;;;;;;8781:9;;8843:36;;;;;;;;;;;8600:285;;:::o;9200:398::-;-1:-1:-1;;;;;9284:17:0;;;;;;:8;:17;;;;;;;;9302:10;9284:29;;;;;;;;9275:38;;;9267:47;;;;;;-1:-1:-1;;;;;9516:17:0;;;;;;:8;:17;;;;;;;;9534:10;9516:29;;;;;;;;:48;;9558:5;9516:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;9484:17:0;;;;;;:8;:17;;;;;;;;9502:10;9484:29;;;;;;;:80;9571:21;9493:7;9586:5;9571;:21::i;11442:173::-;-1:-1:-1;;;;;11512:22:0;;;;11504:31;;;;;;11568:6;;11547:38;;-1:-1:-1;;;;;11547:38:0;;;;11568:6;;11547:38;;11568:6;;11547:38;11592:6;:17;;-1:-1:-1;;11592:17:0;-1:-1:-1;;;;;11592:17:0;;;;;;;;;;11442:173::o

Swarm Source

bzzr://aa9e1ba4b0838a2145a053645bce6907114a91430d0dd8645b519f50e95f7d51

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.