ETH Price: $3,460.71 (-1.59%)
Gas: 3 Gwei

Contract

0xBC34985b4d345AeA933d5cAc19F3a86bd1Fb398F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x7bf8b5226f6461b981a17198714611d7fb22b41dd8876b2b684c227f2b7a89e9 Transfer(pending)2024-07-21 2:33:373 days ago1721529217IN
0xBC34985b...bd1Fb398F
0 ETH(Pending)(Pending)
0x00b96b5dfa9f9052cb98e3d38362333bda8ba18d626f78e91f2253d18282e26c Transfer(pending)2024-07-21 1:31:013 days ago1721525461IN
0xBC34985b...bd1Fb398F
0 ETH(Pending)(Pending)
Transfer186269362023-11-22 11:19:47245 days ago1700651987IN
0xBC34985b...bd1Fb398F
0 ETH0.0016572934.03200278
Transfer182199222023-09-26 12:22:47301 days ago1695730967IN
0xBC34985b...bd1Fb398F
0 ETH0.0004227813.38510046
Transfer182197592023-09-26 11:49:59302 days ago1695728999IN
0xBC34985b...bd1Fb398F
0 ETH0.0004339513.7387465
Transfer182193932023-09-26 10:35:47302 days ago1695724547IN
0xBC34985b...bd1Fb398F
0 ETH0.0004911515.549647
Transfer182193272023-09-26 10:22:35302 days ago1695723755IN
0xBC34985b...bd1Fb398F
0 ETH0.0006317819.99442193
Transfer182193072023-09-26 10:18:23302 days ago1695723503IN
0xBC34985b...bd1Fb398F
0 ETH0.0007084922.42226213
Transfer182192592023-09-26 10:08:35302 days ago1695722915IN
0xBC34985b...bd1Fb398F
0 ETH0.0007874524.92102392
Transfer182192392023-09-26 10:04:35302 days ago1695722675IN
0xBC34985b...bd1Fb398F
0 ETH0.0007139922.59615162
Transfer182191972023-09-26 9:56:11302 days ago1695722171IN
0xBC34985b...bd1Fb398F
0 ETH0.0008653427.37577792
Transfer182186882023-09-26 8:13:23302 days ago1695716003IN
0xBC34985b...bd1Fb398F
0 ETH0.000455169.34672121
Transfer182103662023-09-25 4:17:23303 days ago1695615443IN
0xBC34985b...bd1Fb398F
0 ETH0.000435478.94232357
Transfer180253132023-08-30 5:23:47329 days ago1693373027IN
0xBC34985b...bd1Fb398F
0 ETH0.0009226217.2499067
Transfer175976532023-07-01 7:13:47389 days ago1688195627IN
0xBC34985b...bd1Fb398F
0 ETH0.0009391617.55519303
Transfer175110472023-06-19 3:13:59401 days ago1687144439IN
0xBC34985b...bd1Fb398F
0 ETH0.0010479319.59261806
Transfer174611872023-06-12 3:02:47408 days ago1686538967IN
0xBC34985b...bd1Fb398F
0 ETH0.0010623819.85842303
Transfer166172142023-02-13 3:40:59527 days ago1676259659IN
0xBC34985b...bd1Fb398F
0 ETH0.0010699620
Transfer164309432023-01-18 3:16:59553 days ago1674011819IN
0xBC34985b...bd1Fb398F
0 ETH0.0008362822.98373
Transfer162824932022-12-28 9:56:23574 days ago1672221383IN
0xBC34985b...bd1Fb398F
0 ETH0.0010697220
Transfer162727372022-12-27 1:14:47575 days ago1672103687IN
0xBC34985b...bd1Fb398F
0 ETH0.0010900720.376044
Transfer160980032022-12-02 15:25:11599 days ago1669994711IN
0xBC34985b...bd1Fb398F
0 ETH0.0010852420.2902765
Transfer160513842022-11-26 3:09:59606 days ago1669432199IN
0xBC34985b...bd1Fb398F
0 ETH0.0010699620
Transfer160182522022-11-21 12:01:11610 days ago1669032071IN
0xBC34985b...bd1Fb398F
0 ETH0.0010699620
Approve157307242022-10-12 8:05:23651 days ago1665561923IN
0xBC34985b...bd1Fb398F
0 ETH0.0010450622.3950376
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ZJLTToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-11
*/

pragma solidity ^0.4.18;
/** ----------------------------------------------------------------------------------------------
 * ZJLTToken by ZJLT Distributed Factoring Network Limited.
 * An ERC20 standard
 *
 * author: ZJLT Distributed Factoring Network Team
 */

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

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

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

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


contract ERC20 {

    uint256 public totalSupply;

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

    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);

    function allowance(address owner, address spender) public view returns (uint256);
    function approve(address spender, uint256 value) public returns (bool);
    function transferFrom(address from, address to, uint256 value) public returns (bool);

}

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;
  }

}


interface TokenRecipient {
    function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external;
}



contract TokenERC20 is ERC20, Ownable{
    // Public variables of the token
    string public name;
    string public symbol;
    uint8  public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    using SafeMath for uint256;
    // Balances
    mapping (address => uint256) balances;
    // Allowances
    mapping (address => mapping (address => uint256)) allowances;


    // ----- Events -----
    event Burn(address indexed from, uint256 value);


    /**
     * Constructor function
     */
    function TokenERC20(uint256 _initialSupply, string _tokenName, string _tokenSymbol, uint8 _decimals) public {
        name = _tokenName;                                   // Set the name for display purposes
        symbol = _tokenSymbol;                               // Set the symbol for display purposes
        decimals = _decimals;

        totalSupply = _initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balances[msg.sender] = totalSupply;                // Give the creator all initial tokens
    }

        /**
     * @dev Fix for the ERC20 short address attack.
     */
    modifier onlyPayloadSize(uint size) {
      if(msg.data.length < size + 4) {
        revert();
      }
      _;
    }
    

    function balanceOf(address _owner) public view returns(uint256) {
        return balances[_owner];
    }

    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowances[_owner][_spender];
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal returns(bool) {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balances[_from] >= _value);
        // Check for overflows
        require(balances[_to] + _value > balances[_to]);

        require(_value >= 0);
        // Save this for an assertion in the future
        uint previousBalances = balances[_from].add(balances[_to]);
         // SafeMath.sub will throw if there is not enough balance.
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balances[_from] + balances[_to] == previousBalances);

        return true;
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public returns(bool) {
        return _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns(bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value > 0);

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

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public returns(bool) {
        require((_value == 0) || (allowances[msg.sender][_spender] == 0));
        allowances[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns(bool) {
        if (approve(_spender, _value)) {
            TokenRecipient spender = TokenRecipient(_spender);
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
        return false;
    }


  /**
   * @dev Transfer tokens to multiple addresses
   * @param _addresses The addresses that will receieve tokens
   * @param _amounts The quantity of tokens that will be transferred
   * @return True if the tokens are transferred correctly
   */
  function transferForMultiAddresses(address[] _addresses, uint256[] _amounts)  public returns (bool) {
    for (uint256 i = 0; i < _addresses.length; i++) {
      require(_addresses[i] != address(0));
      require(_amounts[i] <= balances[msg.sender]);
      require(_amounts[i] > 0);

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

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns(bool) {
        require(balances[msg.sender] >= _value);   // Check if the sender has enough
        balances[msg.sender] = balances[msg.sender].sub(_value);            // Subtract from the sender
        totalSupply = totalSupply.sub(_value);                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

        /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns(bool) {
        require(balances[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowances[_from][msg.sender]);    // Check allowance
        balances[_from] = balances[_from].sub(_value);                         // Subtract from the targeted balance
        allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value);             // Subtract from the sender's allowance
        totalSupply = totalSupply.sub(_value);                                 // Update totalSupply
        emit Burn(_from, _value);
        return true;
    }


    /**
     * approve should be called when allowances[_spender] == 0. To increment
     * allowances value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        // Check for overflows
        require(allowances[msg.sender][_spender].add(_addedValue) > allowances[msg.sender][_spender]);

        allowances[msg.sender][_spender] =allowances[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        uint oldValue = allowances[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowances[msg.sender][_spender] = 0;
        } else {
            allowances[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]);
        return true;
    }


}


contract ZJLTToken is TokenERC20 {

    function ZJLTToken() TokenERC20(2500000000, "ZJLT Distributed Factoring Network", "ZJLT", 18) public {

    }
	
	function () payable public {
      //if ether is sent to this address, send it back.
      //throw;
      require(false);
    }
}

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":"_addresses","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"transferForMultiAddresses","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"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"}]

60606040526004805460ff1916601217905534156200001d57600080fd5b639502f90060606040519081016040908152602282527f5a4a4c5420446973747269627574656420466163746f72696e67204e6574776f60208301527f726b000000000000000000000000000000000000000000000000000000000000818301528051908101604052600481527f5a4a4c5400000000000000000000000000000000000000000000000000000000602082015260018054600160a060020a03191633600160a060020a031617905560126002838051620000e292916020019062000137565b506003828051620000f892916020019062000137565b506004805460ff191660ff928316179081905516600a0a92909202600081815533600160a060020a031681526005602052604090205550620001dc9050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017a57805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001aa5782518255916020019190600101906200018d565b50620001b8929150620001bc565b5090565b620001d991905b80821115620001b85760008155600101620001c3565b90565b61117e80620001ec6000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f7578063095ea7b31461018157806318160ddd146101b7578063204009d2146101dc57806323b872dd1461026b578063313ce5671461029357806342966c68146102bc57806366188463146102d257806370a08231146102f457806379cc6790146103135780638da5cb5b1461033557806395d89b4114610364578063a9059cbb14610377578063cae9ca5114610399578063d73dd623146103fe578063dd62ed3e14610420578063f2fde38b14610445575b600080fd5b005b341561010257600080fd5b61010a610464565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014657808201518382015260200161012e565b50505050905090810190601f1680156101735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018c57600080fd5b6101a3600160a060020a0360043516602435610502565b604051901515815260200160405180910390f35b34156101c257600080fd5b6101ca6105a8565b60405190815260200160405180910390f35b34156101e757600080fd5b6101a36004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105ae95505050505050565b341561027657600080fd5b6101a3600160a060020a03600435811690602435166044356107aa565b341561029e57600080fd5b6102a6610906565b60405160ff909116815260200160405180910390f35b34156102c757600080fd5b6101a360043561090f565b34156102dd57600080fd5b6101a3600160a060020a03600435166024356109d3565b34156102ff57600080fd5b6101ca600160a060020a0360043516610acd565b341561031e57600080fd5b6101a3600160a060020a0360043516602435610ae8565b341561034057600080fd5b610348610c33565b604051600160a060020a03909116815260200160405180910390f35b341561036f57600080fd5b61010a610c42565b341561038257600080fd5b6101a3600160a060020a0360043516602435610cad565b34156103a457600080fd5b6101a360048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610cc195505050505050565b341561040957600080fd5b6101a3600160a060020a0360043516602435610dfa565b341561042b57600080fd5b6101ca600160a060020a0360043581169060243516610ed8565b341561045057600080fd5b6100f5600160a060020a0360043516610f03565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b505050505081565b60008115806105345750600160a060020a03338116600090815260066020908152604080832093871683529290522054155b151561053f57600080fd5b600160a060020a03338116600081815260066020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000805b83518110156107a05760008482815181106105c957fe5b90602001906020020151600160a060020a031614156105e757600080fd5b600160a060020a03331660009081526005602052604090205483828151811061060c57fe5b90602001906020020151111561062157600080fd5b600083828151811061062f57fe5b906020019060200201511161064357600080fd5b61068183828151811061065257fe5b90602001906020020151600160a060020a0333166000908152600560205260409020549063ffffffff610f9e16565b600160a060020a0333166000908152600560205260409020556106f38382815181106106a957fe5b90602001906020020151600560008785815181106106c357fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610fb016565b6005600086848151811061070357fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205583818151811061073357fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85848151811061077d57fe5b9060200190602002015160405190815260200160405180910390a36001016105b2565b5060019392505050565b6000600160a060020a03831615156107c157600080fd5b600160a060020a0384166000908152600560205260409020548211156107e657600080fd5b600082116107f357600080fd5b600160a060020a03841660009081526005602052604090205461081c908363ffffffff610f9e16565b600160a060020a038086166000908152600560205260408082209390935590851681522054610851908363ffffffff610fb016565b600160a060020a03808516600090815260056020908152604080832094909455878316825260068152838220339093168252919091522054610899908363ffffffff610f9e16565b600160a060020a03808616600081815260066020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60045460ff1681565b600160a060020a0333166000908152600560205260408120548290101561093557600080fd5b600160a060020a03331660009081526005602052604090205461095e908363ffffffff610f9e16565b600160a060020a0333166000908152600560205260408120919091555461098b908363ffffffff610f9e16565b600055600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b600160a060020a03338116600090815260066020908152604080832093861683529290529081205480831115610a3057600160a060020a033381166000908152600660209081526040808320938816835292905290812055610a67565b610a40818463ffffffff610f9e16565b600160a060020a033381166000908152600660209081526040808320938916835292905220555b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03821660009081526005602052604081205482901015610b0e57600080fd5b600160a060020a0380841660009081526006602090815260408083203390941683529290522054821115610b4157600080fd5b600160a060020a038316600090815260056020526040902054610b6a908363ffffffff610f9e16565b600160a060020a0380851660009081526005602090815260408083209490945560068152838220339093168252919091522054610bad908363ffffffff610f9e16565b600160a060020a0380851660009081526006602090815260408083203390941683529290529081209190915554610bea908363ffffffff610f9e16565b600055600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b600154600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b6000610cba338484610fbf565b9392505050565b600080610cce8585610502565b15610ded575083600160a060020a038116638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610d86578082015183820152602001610d6e565b50505050905090810190601f168015610db35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610dd457600080fd5b5af11515610de157600080fd5b50505060019150610df2565b600091505b509392505050565b600160a060020a033381166000908152600660209081526040808320938616835292905290812054610e2c8184610fb0565b11610e3657600080fd5b600160a060020a03338116600090815260066020908152604080832093871683529290522054610e6c908363ffffffff610fb016565b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610f1e57600080fd5b600160a060020a0381161515610f3357600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610faa57fe5b50900390565b600082820183811015610cba57fe5b600080600160a060020a0384161515610fd757600080fd5b600160a060020a03851660009081526005602052604090205483901015610ffd57600080fd5b600160a060020a0384166000908152600560205260409020548381011161102357600080fd5b600083101561103157600080fd5b600160a060020a038085166000908152600560205260408082205492881682529020546110639163ffffffff610fb016565b600160a060020a03861660009081526005602052604090205490915061108f908463ffffffff610f9e16565b600160a060020a0380871660009081526005602052604080822093909355908616815220546110c4908463ffffffff610fb016565b600160a060020a03808616600081815260056020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600160a060020a0380851660009081526005602052604080822054928816825290205401811461114757fe5b5060019493505050505600a165627a7a723058203d14b8136945b25c2235b9dcddf4b6889302eadda5a2cb452aba15c8888395ec0029

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f7578063095ea7b31461018157806318160ddd146101b7578063204009d2146101dc57806323b872dd1461026b578063313ce5671461029357806342966c68146102bc57806366188463146102d257806370a08231146102f457806379cc6790146103135780638da5cb5b1461033557806395d89b4114610364578063a9059cbb14610377578063cae9ca5114610399578063d73dd623146103fe578063dd62ed3e14610420578063f2fde38b14610445575b600080fd5b005b341561010257600080fd5b61010a610464565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014657808201518382015260200161012e565b50505050905090810190601f1680156101735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018c57600080fd5b6101a3600160a060020a0360043516602435610502565b604051901515815260200160405180910390f35b34156101c257600080fd5b6101ca6105a8565b60405190815260200160405180910390f35b34156101e757600080fd5b6101a36004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105ae95505050505050565b341561027657600080fd5b6101a3600160a060020a03600435811690602435166044356107aa565b341561029e57600080fd5b6102a6610906565b60405160ff909116815260200160405180910390f35b34156102c757600080fd5b6101a360043561090f565b34156102dd57600080fd5b6101a3600160a060020a03600435166024356109d3565b34156102ff57600080fd5b6101ca600160a060020a0360043516610acd565b341561031e57600080fd5b6101a3600160a060020a0360043516602435610ae8565b341561034057600080fd5b610348610c33565b604051600160a060020a03909116815260200160405180910390f35b341561036f57600080fd5b61010a610c42565b341561038257600080fd5b6101a3600160a060020a0360043516602435610cad565b34156103a457600080fd5b6101a360048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610cc195505050505050565b341561040957600080fd5b6101a3600160a060020a0360043516602435610dfa565b341561042b57600080fd5b6101ca600160a060020a0360043581169060243516610ed8565b341561045057600080fd5b6100f5600160a060020a0360043516610f03565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b505050505081565b60008115806105345750600160a060020a03338116600090815260066020908152604080832093871683529290522054155b151561053f57600080fd5b600160a060020a03338116600081815260066020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000805b83518110156107a05760008482815181106105c957fe5b90602001906020020151600160a060020a031614156105e757600080fd5b600160a060020a03331660009081526005602052604090205483828151811061060c57fe5b90602001906020020151111561062157600080fd5b600083828151811061062f57fe5b906020019060200201511161064357600080fd5b61068183828151811061065257fe5b90602001906020020151600160a060020a0333166000908152600560205260409020549063ffffffff610f9e16565b600160a060020a0333166000908152600560205260409020556106f38382815181106106a957fe5b90602001906020020151600560008785815181106106c357fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610fb016565b6005600086848151811061070357fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205583818151811061073357fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85848151811061077d57fe5b9060200190602002015160405190815260200160405180910390a36001016105b2565b5060019392505050565b6000600160a060020a03831615156107c157600080fd5b600160a060020a0384166000908152600560205260409020548211156107e657600080fd5b600082116107f357600080fd5b600160a060020a03841660009081526005602052604090205461081c908363ffffffff610f9e16565b600160a060020a038086166000908152600560205260408082209390935590851681522054610851908363ffffffff610fb016565b600160a060020a03808516600090815260056020908152604080832094909455878316825260068152838220339093168252919091522054610899908363ffffffff610f9e16565b600160a060020a03808616600081815260066020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60045460ff1681565b600160a060020a0333166000908152600560205260408120548290101561093557600080fd5b600160a060020a03331660009081526005602052604090205461095e908363ffffffff610f9e16565b600160a060020a0333166000908152600560205260408120919091555461098b908363ffffffff610f9e16565b600055600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a2506001919050565b600160a060020a03338116600090815260066020908152604080832093861683529290529081205480831115610a3057600160a060020a033381166000908152600660209081526040808320938816835292905290812055610a67565b610a40818463ffffffff610f9e16565b600160a060020a033381166000908152600660209081526040808320938916835292905220555b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03821660009081526005602052604081205482901015610b0e57600080fd5b600160a060020a0380841660009081526006602090815260408083203390941683529290522054821115610b4157600080fd5b600160a060020a038316600090815260056020526040902054610b6a908363ffffffff610f9e16565b600160a060020a0380851660009081526005602090815260408083209490945560068152838220339093168252919091522054610bad908363ffffffff610f9e16565b600160a060020a0380851660009081526006602090815260408083203390941683529290529081209190915554610bea908363ffffffff610f9e16565b600055600160a060020a0383167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a250600192915050565b600154600160a060020a031681565b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104fa5780601f106104cf576101008083540402835291602001916104fa565b6000610cba338484610fbf565b9392505050565b600080610cce8585610502565b15610ded575083600160a060020a038116638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610d86578082015183820152602001610d6e565b50505050905090810190601f168015610db35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610dd457600080fd5b5af11515610de157600080fd5b50505060019150610df2565b600091505b509392505050565b600160a060020a033381166000908152600660209081526040808320938616835292905290812054610e2c8184610fb0565b11610e3657600080fd5b600160a060020a03338116600090815260066020908152604080832093871683529290522054610e6c908363ffffffff610fb016565b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610f1e57600080fd5b600160a060020a0381161515610f3357600080fd5b600154600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610faa57fe5b50900390565b600082820183811015610cba57fe5b600080600160a060020a0384161515610fd757600080fd5b600160a060020a03851660009081526005602052604090205483901015610ffd57600080fd5b600160a060020a0384166000908152600560205260409020548381011161102357600080fd5b600083101561103157600080fd5b600160a060020a038085166000908152600560205260408082205492881682529020546110639163ffffffff610fb016565b600160a060020a03861660009081526005602052604090205490915061108f908463ffffffff610f9e16565b600160a060020a0380871660009081526005602052604080822093909355908616815220546110c4908463ffffffff610fb016565b600160a060020a03808616600081815260056020526040908190209390935591908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600160a060020a0380851660009081526005602052604080822054928816825290205401811461114757fe5b5060019493505050505600a165627a7a723058203d14b8136945b25c2235b9dcddf4b6889302eadda5a2cb452aba15c8888395ec0029

Swarm Source

bzzr://3d14b8136945b25c2235b9dcddf4b6889302eadda5a2cb452aba15c8888395ec

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.