ETH Price: $2,276.63 (+7.38%)

Contract

0x3b4eD9e1d31f6Dc1Fde75F464438F7f3a0B3bdE8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer204083572024-07-28 23:31:47595 days ago1722209507IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000030511
Transfer128366682021-07-16 7:50:321704 days ago1626421832IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0010101227
Transfer106043932020-08-06 5:49:482048 days ago1596692988IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0018006647.00000145
Transfer98219502020-04-07 1:12:112169 days ago1586221931IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000113782.97000023
Transfer96895792020-03-17 14:24:442189 days ago1584455084IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0002797412
Transfer96610622020-03-13 4:34:322194 days ago1584074072IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0076624200
Transfer96554812020-03-12 7:42:542195 days ago1583998974IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.001333125
Transfer96112512020-03-05 12:42:012201 days ago1583412121IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000191565
Transfer95659092020-02-27 13:17:062208 days ago1582809426IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.00042648
Transfer94720212020-02-13 2:46:322223 days ago1581561992IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000268187
Transfer93165032020-01-20 5:47:082247 days ago1579499228IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0011504430
Transfer91698962019-12-27 8:20:362271 days ago1577434836IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0007667220
Transfer91698922019-12-27 8:20:132271 days ago1577434813IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0003498615
Transfer91642162019-12-26 5:12:312272 days ago1577337151IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0010664820
Transfer91637472019-12-26 2:51:482272 days ago1577328708IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0010664820
Transfer91590482019-12-25 4:15:232273 days ago1577247323IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000511689.6
Transfer91590072019-12-25 3:59:442273 days ago1577246384IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0010667220
Transfer91555722019-12-24 11:44:492273 days ago1577187889IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000444268.33333333
Transfer91545122019-12-24 6:54:312274 days ago1577170471IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0003498615
Transfer91545082019-12-24 6:53:372274 days ago1577170417IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0003498615
Transfer91545012019-12-24 6:49:352274 days ago1577170175IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0003498615
Transfer91495122019-12-23 6:48:002275 days ago1577083680IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0010667220
Transfer91038912019-12-14 5:54:012284 days ago1576302841IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.000306498
Transfer90931262019-12-12 7:11:072286 days ago1576134667IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.00034489
Transfer90711422019-12-08 9:39:332290 days ago1575797973IN
0x3b4eD9e1...3a0B3bdE8
0 ETH0.0003498615
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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:
BigerToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-08-25
*/

pragma solidity ^0.4.21;

contract Ownable {
    address public owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}
/**
 * Math operations with safety checks
 */
/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function safeMul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

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

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

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

contract BigerToken is Ownable {
   /**
  * @dev Fix for the ERC20 short address attack.
   */
  modifier onlyPayloadSize(uint256 size) {
    require(size > 0);
    require(msg.data.length >= size + 4) ;
    _;
  }
  using SafeMath for uint256;
    
  string public constant name = "BigerToken";
  string public constant symbol = "BG";
  uint256 public constant decimals = 18;
  string public version = "1.0";
  uint256 public  totalSupply = 100 * (10**8) * 10**decimals;   // 100*10^8 BG total
  //address public owner;
    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
	mapping (address => uint256) public freezeOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /* This notifies clients about the amount burnt */
    event Burn(address indexed from, uint256 value);
	
	/* This notifies clients about the amount frozen */
    event Freeze(address indexed from, uint256 value);
	
	/* This notifies clients about the amount unfrozen */
    event Unfreeze(address indexed from, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract  constructor() public */
 function BigerToken() public {
    balanceOf[msg.sender] = totalSupply;
    owner = msg.sender;
    emit Transfer(0x0, msg.sender, totalSupply);
  }

    /* Send coins */
    function transfer(address _to, uint256 _value) onlyPayloadSize(2 * 32) public returns (bool){
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != address(this)); //Prevent to contract address
		require(0 <= _value); 
        require(_value <= balanceOf[msg.sender]);           // Check if the sender has enough
        require(balanceOf[_to] <= balanceOf[_to] + _value); // Check for overflows
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);                     // Subtract from the sender
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);                            // Add the same to the recipient
        emit Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
        return true;
    }

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value) public returns (bool success) {
		require (0 <= _value ) ; 
        allowance[msg.sender][_spender] = _value;
        return true;
    }
       

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) onlyPayloadSize(3 * 32) public returns (bool success) {
        require (_to != 0x0);             // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != address(this));        //Prevent to contract address
		require( 0 <= _value); 
        require(_value <= balanceOf[_from]);                 // Check if the sender has enough
        require( balanceOf[_to] <= balanceOf[_to] + _value) ;  // Check for overflows
        require(_value <= allowance[_from][msg.sender]) ;     // Check allowance
        balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value);                           // Subtract from the sender
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);                             // Add the same to the recipient
        allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    function burn(uint256 _value) onlyOwner public returns (bool success) {
        require(_value <= balanceOf[msg.sender]);            // Check if the sender has enough
		require(0 <= _value); 
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);                      // Subtract from the sender
        totalSupply = SafeMath.safeSub(totalSupply,_value);                                // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }
	
	function freeze(uint256 _value) onlyOwner public returns (bool success) {
        require(_value <= balanceOf[msg.sender]);            // Check if the sender has enough
		require(0 <= _value); 
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);                      // Subtract from the sender
        freezeOf[msg.sender] = SafeMath.safeAdd(freezeOf[msg.sender], _value);                                // Updates totalSupply
        emit Freeze(msg.sender, _value);
        return true;
    }
	
	function unfreeze(uint256 _value) onlyOwner public returns (bool success) {
        require( _value <= freezeOf[msg.sender]);            // Check if the sender has enough
		require(0 <= _value) ; 
        freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value);                      // Subtract from the sender
		balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value);
        emit Unfreeze(msg.sender, _value);
        return true;
    }
	
	// can not accept ether
	function() payable public {
	     revert();
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"success","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"unfreeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60c0604052600360808190527f312e30000000000000000000000000000000000000000000000000000000000060a090815261003e91600191906100c7565b506b204fce5e3e2502611000000060025534801561005b57600080fd5b506000805433600160a060020a031991821681178355600254818452600360209081526040808620839055855490941683178555835191825292519193927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3610162565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061010857805160ff1916838001178555610135565b82800160010185558215610135579182015b8281111561013557825182559160200191906001019061011a565b50610141929150610145565b5090565b61015f91905b80821115610141576000815560010161014b565b90565b610b36806101716000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd57806342966c681461021257806354fd4d501461022a5780636623fc461461023f57806370a08231146102575780638da5cb5b1461027857806395d89b41146102a9578063a9059cbb146102be578063cd4217c1146102e2578063d7a78db814610303578063dd62ed3e1461031b578063f2fde38b14610342575b600080fd5b3480156100f657600080fd5b506100ff610365565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561039c565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c16103d9565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356103df565b34801561020957600080fd5b506101c16105a2565b34801561021e57600080fd5b506101986004356105a7565b34801561023657600080fd5b506100ff610661565b34801561024b57600080fd5b506101986004356106ee565b34801561026357600080fd5b506101c1600160a060020a03600435166107c1565b34801561028457600080fd5b5061028d6107d3565b60408051600160a060020a039092168252519081900360200190f35b3480156102b557600080fd5b506100ff6107e2565b3480156102ca57600080fd5b50610198600160a060020a0360043516602435610819565b3480156102ee57600080fd5b506101c1600160a060020a036004351661094c565b34801561030f57600080fd5b5061019860043561095e565b34801561032757600080fd5b506101c1600160a060020a0360043581169060243516610a31565b34801561034e57600080fd5b50610363600160a060020a0360043516610a4e565b005b60408051808201909152600a81527f4269676572546f6b656e00000000000000000000000000000000000000000000602082015281565b6000818111156103ab57600080fd5b50336000908152600560209081526040808320600160a060020a039590951683529390529190912055600190565b60025481565b6000606060643610156103f157600080fd5b600160a060020a038416151561040657600080fd5b600160a060020a03841630141561041c57600080fd5b600083101561042a57600080fd5b600160a060020a03851660009081526003602052604090205483111561044f57600080fd5b600160a060020a038416600090815260036020526040902054808401101561047657600080fd5b600160a060020a03851660009081526005602090815260408083203384529091529020548311156104a657600080fd5b600160a060020a0385166000908152600360205260409020546104c99084610ae2565b600160a060020a0380871660009081526003602052604080822093909355908616815220546104f89084610af4565b600160a060020a0380861660009081526003602090815260408083209490945591881681526005825282812033825290915220546105369084610ae2565b600160a060020a03808716600081815260056020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60008054600160a060020a031633146105bf57600080fd5b336000908152600360205260409020548211156105db57600080fd5b60008210156105e957600080fd5b336000908152600360205260409020546106039083610ae2565b336000908152600360205260409020556002546106209083610ae2565b60025560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b505050505081565b60008054600160a060020a0316331461070657600080fd5b3360009081526004602052604090205482111561072257600080fd5b600082101561073057600080fd5b3360009081526004602052604090205461074a9083610ae2565b336000908152600460209081526040808320939093556003905220546107709083610af4565b33600081815260036020908152604091829020939093558051858152905191927f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f92918290030190a2506001919050565b60036020526000908152604090205481565b600054600160a060020a031681565b60408051808201909152600281527f4247000000000000000000000000000000000000000000000000000000000000602082015281565b60006040604436101561082b57600080fd5b600160a060020a038416151561084057600080fd5b600160a060020a03841630141561085657600080fd5b600083101561086457600080fd5b3360009081526003602052604090205483111561088057600080fd5b600160a060020a03841660009081526003602052604090205480840110156108a757600080fd5b336000908152600360205260409020546108c19084610ae2565b3360009081526003602052604080822092909255600160a060020a038616815220546108ed9084610af4565b600160a060020a0385166000818152600360209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60046020526000908152604090205481565b60008054600160a060020a0316331461097657600080fd5b3360009081526003602052604090205482111561099257600080fd5b60008210156109a057600080fd5b336000908152600360205260409020546109ba9083610ae2565b336000908152600360209081526040808320939093556004905220546109e09083610af4565b33600081815260046020908152604091829020939093558051858152905191927ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e092918290030190a2506001919050565b600560209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610a6557600080fd5b600160a060020a0381161515610a7a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610aee57fe5b50900390565b600082820183811015610b0357fe5b93925050505600a165627a7a72305820fec3016fa9cb97b5d8911eb5fcf8fe37462150d6289fcfad56660d1a1fa66ed20029

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd57806342966c681461021257806354fd4d501461022a5780636623fc461461023f57806370a08231146102575780638da5cb5b1461027857806395d89b41146102a9578063a9059cbb146102be578063cd4217c1146102e2578063d7a78db814610303578063dd62ed3e1461031b578063f2fde38b14610342575b600080fd5b3480156100f657600080fd5b506100ff610365565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561039c565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c16103d9565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356103df565b34801561020957600080fd5b506101c16105a2565b34801561021e57600080fd5b506101986004356105a7565b34801561023657600080fd5b506100ff610661565b34801561024b57600080fd5b506101986004356106ee565b34801561026357600080fd5b506101c1600160a060020a03600435166107c1565b34801561028457600080fd5b5061028d6107d3565b60408051600160a060020a039092168252519081900360200190f35b3480156102b557600080fd5b506100ff6107e2565b3480156102ca57600080fd5b50610198600160a060020a0360043516602435610819565b3480156102ee57600080fd5b506101c1600160a060020a036004351661094c565b34801561030f57600080fd5b5061019860043561095e565b34801561032757600080fd5b506101c1600160a060020a0360043581169060243516610a31565b34801561034e57600080fd5b50610363600160a060020a0360043516610a4e565b005b60408051808201909152600a81527f4269676572546f6b656e00000000000000000000000000000000000000000000602082015281565b6000818111156103ab57600080fd5b50336000908152600560209081526040808320600160a060020a039590951683529390529190912055600190565b60025481565b6000606060643610156103f157600080fd5b600160a060020a038416151561040657600080fd5b600160a060020a03841630141561041c57600080fd5b600083101561042a57600080fd5b600160a060020a03851660009081526003602052604090205483111561044f57600080fd5b600160a060020a038416600090815260036020526040902054808401101561047657600080fd5b600160a060020a03851660009081526005602090815260408083203384529091529020548311156104a657600080fd5b600160a060020a0385166000908152600360205260409020546104c99084610ae2565b600160a060020a0380871660009081526003602052604080822093909355908616815220546104f89084610af4565b600160a060020a0380861660009081526003602090815260408083209490945591881681526005825282812033825290915220546105369084610ae2565b600160a060020a03808716600081815260056020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60008054600160a060020a031633146105bf57600080fd5b336000908152600360205260409020548211156105db57600080fd5b60008210156105e957600080fd5b336000908152600360205260409020546106039083610ae2565b336000908152600360205260409020556002546106209083610ae2565b60025560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b505050505081565b60008054600160a060020a0316331461070657600080fd5b3360009081526004602052604090205482111561072257600080fd5b600082101561073057600080fd5b3360009081526004602052604090205461074a9083610ae2565b336000908152600460209081526040808320939093556003905220546107709083610af4565b33600081815260036020908152604091829020939093558051858152905191927f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f92918290030190a2506001919050565b60036020526000908152604090205481565b600054600160a060020a031681565b60408051808201909152600281527f4247000000000000000000000000000000000000000000000000000000000000602082015281565b60006040604436101561082b57600080fd5b600160a060020a038416151561084057600080fd5b600160a060020a03841630141561085657600080fd5b600083101561086457600080fd5b3360009081526003602052604090205483111561088057600080fd5b600160a060020a03841660009081526003602052604090205480840110156108a757600080fd5b336000908152600360205260409020546108c19084610ae2565b3360009081526003602052604080822092909255600160a060020a038616815220546108ed9084610af4565b600160a060020a0385166000818152600360209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60046020526000908152604090205481565b60008054600160a060020a0316331461097657600080fd5b3360009081526003602052604090205482111561099257600080fd5b60008210156109a057600080fd5b336000908152600360205260409020546109ba9083610ae2565b336000908152600360209081526040808320939093556004905220546109e09083610af4565b33600081815260046020908152604091829020939093558051858152905191927ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e092918290030190a2506001919050565b600560209081526000928352604080842090915290825290205481565b600054600160a060020a03163314610a6557600080fd5b600160a060020a0381161515610a7a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610aee57fe5b50900390565b600082820183811015610b0357fe5b93925050505600a165627a7a72305820fec3016fa9cb97b5d8911eb5fcf8fe37462150d6289fcfad56660d1a1fa66ed20029

Swarm Source

bzzr://fec3016fa9cb97b5d8911eb5fcf8fe37462150d6289fcfad56660d1a1fa66ed2

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.