ETH Price: $1,996.52 (+2.31%)

Contract

0x25Aa6bC7d8b73e8d7a22c2F29c216d1aa1D2AaD1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer44230782017-10-24 21:40:493057 days ago1508881249IN
0x25Aa6bC7...aa1D2AaD1
10 ETH0.0013443721
Transfer44227682017-10-24 20:32:203057 days ago1508877140IN
0x25Aa6bC7...aa1D2AaD1
1 ETH0.0010293721
Transfer44227222017-10-24 20:21:563057 days ago1508876516IN
0x25Aa6bC7...aa1D2AaD1
0.1 ETH0.0013443721
Transfer44212972017-10-24 14:57:293057 days ago1508857049IN
0x25Aa6bC7...aa1D2AaD1
0.1 ETH0.0012803620
Transfer44110652017-10-22 23:37:313059 days ago1508715451IN
0x25Aa6bC7...aa1D2AaD1
1 ETH0.0013443721
Transfer44098752017-10-22 19:02:583059 days ago1508698978IN
0x25Aa6bC7...aa1D2AaD1
0.1 ETH0.0013443721
Transfer43281282017-10-01 17:17:023080 days ago1506878222IN
0x25Aa6bC7...aa1D2AaD1
0.5 ETH0.0013443721
Transfer43079552017-09-24 16:26:423087 days ago1506270402IN
0x25Aa6bC7...aa1D2AaD1
0.2 ETH0.001339521
Transfer43039972017-09-23 7:38:413089 days ago1506152321IN
0x25Aa6bC7...aa1D2AaD1
0.1 ETH0.000318935
Transfer42967072017-09-21 1:48:293091 days ago1505958509IN
0x25Aa6bC7...aa1D2AaD1
0.15 ETH0.00136628
Transfer42879132017-09-18 15:24:263093 days ago1505748266IN
0x25Aa6bC7...aa1D2AaD1
0.1 ETH0.00290628
Transfer42879112017-09-18 15:24:033093 days ago1505748243IN
0x25Aa6bC7...aa1D2AaD1
0.03 ETH0.000251
Transfer42877862017-09-18 14:26:173093 days ago1505744777IN
0x25Aa6bC7...aa1D2AaD1
0.03 ETH0.00052521
Initialize42848242017-09-17 18:44:133094 days ago1505673853IN
0x25Aa6bC7...aa1D2AaD1
0 ETH0.0050163630

Latest 11 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer44230782017-10-24 21:40:493057 days ago1508881249
0x25Aa6bC7...aa1D2AaD1
10 ETH
Transfer44227682017-10-24 20:32:203057 days ago1508877140
0x25Aa6bC7...aa1D2AaD1
1 ETH
Transfer44227222017-10-24 20:21:563057 days ago1508876516
0x25Aa6bC7...aa1D2AaD1
0.1 ETH
Transfer44212972017-10-24 14:57:293057 days ago1508857049
0x25Aa6bC7...aa1D2AaD1
0.1 ETH
Transfer44110652017-10-22 23:37:313059 days ago1508715451
0x25Aa6bC7...aa1D2AaD1
1 ETH
Transfer44098752017-10-22 19:02:583059 days ago1508698978
0x25Aa6bC7...aa1D2AaD1
0.1 ETH
Transfer43281282017-10-01 17:17:023080 days ago1506878222
0x25Aa6bC7...aa1D2AaD1
0.5 ETH
Transfer43079552017-09-24 16:26:423087 days ago1506270402
0x25Aa6bC7...aa1D2AaD1
0.2 ETH
Transfer43039972017-09-23 7:38:413089 days ago1506152321
0x25Aa6bC7...aa1D2AaD1
0.1 ETH
Transfer42967072017-09-21 1:48:293091 days ago1505958509
0x25Aa6bC7...aa1D2AaD1
0.15 ETH
Transfer42879132017-09-18 15:24:263093 days ago1505748266
0x25Aa6bC7...aa1D2AaD1
0.1 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GeneBTC

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-09-18
*/

pragma solidity ^0.4.13;

/**
 * @title SafeMath
    * @dev Math operations with safety checks that throw on error
       */
library SafeMath {
  function mul(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint256 a, uint256 b) internal returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

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


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


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


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

}


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

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

  mapping(address => uint256) balances;

  /**
  * @dev transfer token for a specified address
      * @param _to The address to transfer to.
          * @param _value The amount to be transferred.
              */
  function transfer(address _to, uint256 _value) returns (bool) {
    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) constant 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) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title 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)) 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 amout of tokens to be transfered
                       */
  function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

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

  /**
   * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
        * @param _spender The address which will spend the funds.
             * @param _value The amount of tokens to be spent.
                  */
  function approve(address _spender, uint256 _value) returns (bool) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    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 specifing the amount of tokens still avaible for the spender.
                       */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}

contract GeneBTC is StandardToken, Ownable {
    using SafeMath for uint256;

    // Token Info.
    string  public constant name = "Gene BTC";
    string  public constant symbol = "GBC";
    uint8   public constant decimals = 18;

    // Sale period.
    uint256 public startDate;
    uint256 public endDate;

    // Token Cap for each rounds
    uint256 public saleCap;

    // Address where funds are collected.
    address public wallet;

    // Amount of raised money in wei.
    uint256 public weiRaised;

    // GeneBlockChain user ID
    mapping(address => bytes32) public GeneBlockChainUserIDs;

    // Event
    event TokenPurchase(address indexed purchaser, uint256 value,
                        uint256 amount);
    event PreICOTokenPushed(address indexed buyer, uint256 amount);
    event UserIDChanged(address owner, bytes32 user_id);

    // Modifiers
    modifier uninitialized() {
        require(wallet == 0x0);
        _;
    }

    function GeneBTC() {
    }

    function initialize(address _wallet, uint256 _start, uint256 _end,
                        uint256 _saleCap, uint256 _totalSupply)
                        onlyOwner uninitialized {
        require(_start >= getCurrentTimestamp());
        require(_start < _end);
        require(_wallet != 0x0);
        require(_totalSupply > _saleCap);

        startDate = _start;
        endDate = _end;
        saleCap = _saleCap;
        wallet = _wallet;
        totalSupply = _totalSupply;

        balances[wallet] = _totalSupply.sub(saleCap);
        balances[0xb1] = saleCap;
    }

    function supply() internal returns (uint256) {
        return balances[0xb1];
    }

    function getCurrentTimestamp() internal returns (uint256) {
        return now;
    }

    function getRateAt(uint256 at) constant returns (uint256) {
        if (at < startDate) {
            return 0;
        } else if (at < (startDate + 7 days)) {
            return 840;
        } else if (at < (startDate + 37 days)) {
            return 770;
        } else if (at <= endDate) {
            return 700;
        } else {
            return 0;
        }
    }

    // Fallback function can be used to buy tokens
    function () payable {
        buyTokens(msg.sender, msg.value);
    }

    // For pushing pre-ICO records
    function push(address buyer, uint256 amount) onlyOwner {
        require(balances[wallet] >= amount);

        // Transfer
        balances[wallet] = balances[wallet].sub(amount);
        balances[buyer] = balances[buyer].add(amount);
        PreICOTokenPushed(buyer, amount);
    }

    function buyTokens(address sender, uint256 value) internal {
        require(saleActive());
        require(value >= 0.1 ether);

        uint256 weiAmount = value;
        uint256 updatedWeiRaised = weiRaised.add(weiAmount);

        // Calculate token amount to be purchased
        uint256 actualRate = getRateAt(getCurrentTimestamp());
        uint256 amount = weiAmount.mul(actualRate);

        // We have enough token to sale
        require(supply() >= amount);

        // Transfer
        balances[0xb1] = balances[0xb1].sub(amount);
        balances[sender] = balances[sender].add(amount);
        TokenPurchase(sender, weiAmount, amount);

        // Update state.
        weiRaised = updatedWeiRaised;

        // Forward the fund to fund collection wallet.
        wallet.transfer(msg.value);
    }

    function finalize() onlyOwner {
        require(!saleActive());

        // Transfer the rest of token to GeneBlockChain
        balances[wallet] = balances[wallet].add(balances[0xb1]);
        balances[0xb1] = 0;
    }

    function saleActive() public constant returns (bool) {
        return (getCurrentTimestamp() >= startDate &&
                getCurrentTimestamp() < endDate && supply() > 0);
    }

    function setUserID(bytes32 user_id) {
        GeneBlockChainUserIDs[msg.sender] = user_id;
        UserIDChanged(msg.sender, user_id);
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"GeneBlockChainUserIDs","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"at","type":"uint256"}],"name":"getRateAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"amount","type":"uint256"}],"name":"push","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"user_id","type":"bytes32"}],"name":"setUserID","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"},{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"},{"name":"_saleCap","type":"uint256"},{"name":"_totalSupply","type":"uint256"}],"name":"initialize","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PreICOTokenPushed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"user_id","type":"bytes32"}],"name":"UserIDChanged","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"}]

6060604052341561000f57600080fd5b5b5b60038054600160a060020a03191633600160a060020a03161790555b5b5b610f918061003e6000396000f300606060405236156101305763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610143578063078fd9ea146101ce578063095ea7b3146101f35780630b97bc861461022957806318160ddd1461024e57806323b872dd14610273578063313ce567146102af5780634042b66f146102d85780634bb278f3146102fd578063521eb2731461031257806368428a1b1461034157806370a08231146103685780638499bc63146103995780638da5cb5b146103ca57806395d89b41146103f9578063a9059cbb14610484578063b52e0dc8146104ba578063b753a98c146104e2578063c24a0f8b14610506578063c3262dfd1461052b578063dd62ed3e14610543578063f2fde38b1461057a578063f92ad2191461059b575b6101415b61013e33346105c8565b5b565b005b341561014e57600080fd5b610156610745565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101935780820151818401525b60200161017a565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d957600080fd5b6101e161077c565b60405190815260200160405180910390f35b34156101fe57600080fd5b610215600160a060020a0360043516602435610782565b604051901515815260200160405180910390f35b341561023457600080fd5b6101e1610829565b60405190815260200160405180910390f35b341561025957600080fd5b6101e161082f565b60405190815260200160405180910390f35b341561027e57600080fd5b610215600160a060020a0360043581169060243516604435610835565b604051901515815260200160405180910390f35b34156102ba57600080fd5b6102c261094a565b60405160ff909116815260200160405180910390f35b34156102e357600080fd5b6101e161094f565b60405190815260200160405180910390f35b341561030857600080fd5b610141610955565b005b341561031d57600080fd5b6103256109f2565b604051600160a060020a03909116815260200160405180910390f35b341561034c57600080fd5b610215610a01565b604051901515815260200160405180910390f35b341561037357600080fd5b6101e1600160a060020a0360043516610a3d565b60405190815260200160405180910390f35b34156103a457600080fd5b6101e1600160a060020a0360043516610a5c565b60405190815260200160405180910390f35b34156103d557600080fd5b610325610a6e565b604051600160a060020a03909116815260200160405180910390f35b341561040457600080fd5b610156610a7d565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101935780820151818401525b60200161017a565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048f57600080fd5b610215600160a060020a0360043516602435610ab4565b604051901515815260200160405180910390f35b34156104c557600080fd5b6101e1600435610b74565b60405190815260200160405180910390f35b34156104ed57600080fd5b610141600160a060020a0360043516602435610bdb565b005b341561051157600080fd5b6101e1610cd9565b60405190815260200160405180910390f35b341561053657600080fd5b610141600435610cdf565b005b341561054e57600080fd5b6101e1600160a060020a0360043581169060243516610d45565b60405190815260200160405180910390f35b341561058557600080fd5b610141600160a060020a0360043516610d72565b005b34156105a657600080fd5b610141600160a060020a0360043516602435604435606435608435610dca565b005b6000806000806105d6610a01565b15156105e157600080fd5b67016345785d8a00008510156105f657600080fd5b60085485945061060c908563ffffffff610ec216565b925061061e610619610edc565b610b74565b9150610630848363ffffffff610ee116565b90508061063b610f10565b101561064657600080fd5b60b16000526001602052600080516020610f4683398151915254610670908263ffffffff610f2e16565b6001602052600080516020610f4683398151915255600160a060020a038616600090815260409020546106a9908263ffffffff610ec216565b600160a060020a0387166000818152600160205260409081902092909255907fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f90869084905191825260208201526040908101905180910390a26008839055600754600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561073c57600080fd5b5b505050505050565b60408051908101604052600881527f47656e6520425443000000000000000000000000000000000000000000000000602082015281565b60065481565b60008115806107b45750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156107bf57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b60005481565b600160a060020a03808416600090815260026020908152604080832033851684528252808320549386168352600190915281205490919061087c908463ffffffff610ec216565b600160a060020a0380861660009081526001602052604080822093909355908716815220546108b1908463ffffffff610f2e16565b600160a060020a0386166000908152600160205260409020556108da818463ffffffff610f2e16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b601281565b60085481565b60035433600160a060020a0390811691161461097057600080fd5b610978610a01565b1561098257600080fd5b6001602052600080516020610f4683398151915254600754600160a060020a0316600090815260409020546109bc9163ffffffff610ec216565b600754600160a060020a031660009081526001602052604081209190915560b18152600080516020610f46833981519152555b5b565b600754600160a060020a031681565b6000600454610a0e610edc565b10158015610a245750600554610a22610edc565b105b8015610a3757506000610a35610f10565b115b90505b90565b600160a060020a0381166000908152600160205260409020545b919050565b60096020526000908152604090205481565b600354600160a060020a031681565b60408051908101604052600381527f4742430000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a033316600090815260016020526040812054610add908363ffffffff610f2e16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610b12908363ffffffff610ec216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b6000600454821015610b8857506000610a57565b60045462093a8001821015610ba05750610348610a57565b6004546230c78001821015610bb85750610302610a57565b6005548211610bca57506102bc610a57565b506000610a57565b5b5b5b5b919050565b60035433600160a060020a03908116911614610bf657600080fd5b600754600160a060020a031660009081526001602052604090205481901015610c1e57600080fd5b600754600160a060020a0316600090815260016020526040902054610c49908263ffffffff610f2e16565b600754600160a060020a039081166000908152600160205260408082209390935590841681522054610c81908263ffffffff610ec216565b600160a060020a0383166000818152600160205260409081902092909255907fdb2d10a559cb6e14fee5a7a2d8c216314e11c22404e85a4f9af45f07c87192bb9083905190815260200160405180910390a25b5b5050565b60055481565b33600160a060020a038116600090815260096020526040908190208390557fa1a3e4c7b21b6004c77b4fe18bdd0d1bd1be31dbb88112463524daa9abacb8369190839051600160a060020a03909216825260208201526040908101905180910390a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610d8d57600080fd5b600160a060020a03811615610d42576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b60035433600160a060020a03908116911614610de557600080fd5b600754600160a060020a031615610dfb57600080fd5b610e03610edc565b841015610e0f57600080fd5b828410610e1b57600080fd5b600160a060020a0385161515610e3057600080fd5b818111610e3c57600080fd5b6004849055600583905560068290556007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387161790556000819055610e828183610f2e565b600754600160a060020a031660009081526001602052604081209190915560065460b1909152600080516020610f46833981519152555b5b5b5050505050565b600082820183811015610ed157fe5b8091505b5092915050565b425b90565b6000828202831580610efd5750828482811515610efa57fe5b04145b1515610ed157fe5b8091505b5092915050565b60b16000526001602052600080516020610f46833981519152545b90565b600082821115610f3a57fe5b508082035b9291505056007ff6d99ecf17df3f1097d877fba82682b40f191db7daded98d658129a21865e6a165627a7a72305820806d76ca2d341cbb0d62adbeef03290e1499535d0d754fcaa9c667c970ca205f0029

Deployed Bytecode

0x606060405236156101305763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610143578063078fd9ea146101ce578063095ea7b3146101f35780630b97bc861461022957806318160ddd1461024e57806323b872dd14610273578063313ce567146102af5780634042b66f146102d85780634bb278f3146102fd578063521eb2731461031257806368428a1b1461034157806370a08231146103685780638499bc63146103995780638da5cb5b146103ca57806395d89b41146103f9578063a9059cbb14610484578063b52e0dc8146104ba578063b753a98c146104e2578063c24a0f8b14610506578063c3262dfd1461052b578063dd62ed3e14610543578063f2fde38b1461057a578063f92ad2191461059b575b6101415b61013e33346105c8565b5b565b005b341561014e57600080fd5b610156610745565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101935780820151818401525b60200161017a565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d957600080fd5b6101e161077c565b60405190815260200160405180910390f35b34156101fe57600080fd5b610215600160a060020a0360043516602435610782565b604051901515815260200160405180910390f35b341561023457600080fd5b6101e1610829565b60405190815260200160405180910390f35b341561025957600080fd5b6101e161082f565b60405190815260200160405180910390f35b341561027e57600080fd5b610215600160a060020a0360043581169060243516604435610835565b604051901515815260200160405180910390f35b34156102ba57600080fd5b6102c261094a565b60405160ff909116815260200160405180910390f35b34156102e357600080fd5b6101e161094f565b60405190815260200160405180910390f35b341561030857600080fd5b610141610955565b005b341561031d57600080fd5b6103256109f2565b604051600160a060020a03909116815260200160405180910390f35b341561034c57600080fd5b610215610a01565b604051901515815260200160405180910390f35b341561037357600080fd5b6101e1600160a060020a0360043516610a3d565b60405190815260200160405180910390f35b34156103a457600080fd5b6101e1600160a060020a0360043516610a5c565b60405190815260200160405180910390f35b34156103d557600080fd5b610325610a6e565b604051600160a060020a03909116815260200160405180910390f35b341561040457600080fd5b610156610a7d565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101935780820151818401525b60200161017a565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048f57600080fd5b610215600160a060020a0360043516602435610ab4565b604051901515815260200160405180910390f35b34156104c557600080fd5b6101e1600435610b74565b60405190815260200160405180910390f35b34156104ed57600080fd5b610141600160a060020a0360043516602435610bdb565b005b341561051157600080fd5b6101e1610cd9565b60405190815260200160405180910390f35b341561053657600080fd5b610141600435610cdf565b005b341561054e57600080fd5b6101e1600160a060020a0360043581169060243516610d45565b60405190815260200160405180910390f35b341561058557600080fd5b610141600160a060020a0360043516610d72565b005b34156105a657600080fd5b610141600160a060020a0360043516602435604435606435608435610dca565b005b6000806000806105d6610a01565b15156105e157600080fd5b67016345785d8a00008510156105f657600080fd5b60085485945061060c908563ffffffff610ec216565b925061061e610619610edc565b610b74565b9150610630848363ffffffff610ee116565b90508061063b610f10565b101561064657600080fd5b60b16000526001602052600080516020610f4683398151915254610670908263ffffffff610f2e16565b6001602052600080516020610f4683398151915255600160a060020a038616600090815260409020546106a9908263ffffffff610ec216565b600160a060020a0387166000818152600160205260409081902092909255907fcd60aa75dea3072fbc07ae6d7d856b5dc5f4eee88854f5b4abf7b680ef8bc50f90869084905191825260208201526040908101905180910390a26008839055600754600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561073c57600080fd5b5b505050505050565b60408051908101604052600881527f47656e6520425443000000000000000000000000000000000000000000000000602082015281565b60065481565b60008115806107b45750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b15156107bf57600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b60005481565b600160a060020a03808416600090815260026020908152604080832033851684528252808320549386168352600190915281205490919061087c908463ffffffff610ec216565b600160a060020a0380861660009081526001602052604080822093909355908716815220546108b1908463ffffffff610f2e16565b600160a060020a0386166000908152600160205260409020556108da818463ffffffff610f2e16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b601281565b60085481565b60035433600160a060020a0390811691161461097057600080fd5b610978610a01565b1561098257600080fd5b6001602052600080516020610f4683398151915254600754600160a060020a0316600090815260409020546109bc9163ffffffff610ec216565b600754600160a060020a031660009081526001602052604081209190915560b18152600080516020610f46833981519152555b5b565b600754600160a060020a031681565b6000600454610a0e610edc565b10158015610a245750600554610a22610edc565b105b8015610a3757506000610a35610f10565b115b90505b90565b600160a060020a0381166000908152600160205260409020545b919050565b60096020526000908152604090205481565b600354600160a060020a031681565b60408051908101604052600381527f4742430000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a033316600090815260016020526040812054610add908363ffffffff610f2e16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610b12908363ffffffff610ec216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b6000600454821015610b8857506000610a57565b60045462093a8001821015610ba05750610348610a57565b6004546230c78001821015610bb85750610302610a57565b6005548211610bca57506102bc610a57565b506000610a57565b5b5b5b5b919050565b60035433600160a060020a03908116911614610bf657600080fd5b600754600160a060020a031660009081526001602052604090205481901015610c1e57600080fd5b600754600160a060020a0316600090815260016020526040902054610c49908263ffffffff610f2e16565b600754600160a060020a039081166000908152600160205260408082209390935590841681522054610c81908263ffffffff610ec216565b600160a060020a0383166000818152600160205260409081902092909255907fdb2d10a559cb6e14fee5a7a2d8c216314e11c22404e85a4f9af45f07c87192bb9083905190815260200160405180910390a25b5b5050565b60055481565b33600160a060020a038116600090815260096020526040908190208390557fa1a3e4c7b21b6004c77b4fe18bdd0d1bd1be31dbb88112463524daa9abacb8369190839051600160a060020a03909216825260208201526040908101905180910390a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610d8d57600080fd5b600160a060020a03811615610d42576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b60035433600160a060020a03908116911614610de557600080fd5b600754600160a060020a031615610dfb57600080fd5b610e03610edc565b841015610e0f57600080fd5b828410610e1b57600080fd5b600160a060020a0385161515610e3057600080fd5b818111610e3c57600080fd5b6004849055600583905560068290556007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387161790556000819055610e828183610f2e565b600754600160a060020a031660009081526001602052604081209190915560065460b1909152600080516020610f46833981519152555b5b5b5050505050565b600082820183811015610ed157fe5b8091505b5092915050565b425b90565b6000828202831580610efd5750828482811515610efa57fe5b04145b1515610ed157fe5b8091505b5092915050565b60b16000526001602052600080516020610f46833981519152545b90565b600082821115610f3a57fe5b508082035b9291505056007ff6d99ecf17df3f1097d877fba82682b40f191db7daded98d658129a21865e6a165627a7a72305820806d76ca2d341cbb0d62adbeef03290e1499535d0d754fcaa9c667c970ca205f0029

Swarm Source

bzzr://806d76ca2d341cbb0d62adbeef03290e1499535d0d754fcaa9c667c970ca205f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.