ETH Price: $3,420.16 (+1.39%)

Contract

0x0DEEcB13f4E801BDbf2721875756d44b207cA580
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer204528522024-08-04 4:39:23115 days ago1722746363IN
0x0DEEcB13...b207cA580
0 ETH0.000053671
Transfer155250902022-09-13 5:08:10806 days ago1663045690IN
0x0DEEcB13...b207cA580
0 ETH0.0022488345
Transfer116552842021-01-14 20:14:061412 days ago1610655246IN
0x0DEEcB13...b207cA580
0 ETH0.0018176747
Transfer114184062020-12-09 11:35:521448 days ago1607513752IN
0x0DEEcB13...b207cA580
0 ETH0.00572203106.60714285
Transfer114184012020-12-09 11:34:111448 days ago1607513651IN
0x0DEEcB13...b207cA580
0 ETH0.00572203106.60714285
Transfer114178702020-12-09 9:35:271448 days ago1607506527IN
0x0DEEcB13...b207cA580
0 ETH0.00540452100.71428571
Transfer111601142020-10-30 19:43:151488 days ago1604086995IN
0x0DEEcB13...b207cA580
0 ETH0.000734819
Transfer104836342020-07-18 13:06:131592 days ago1595077573IN
0x0DEEcB13...b207cA580
0 ETH0.0040255575.00000218
Transfer104836112020-07-18 13:01:511592 days ago1595077311IN
0x0DEEcB13...b207cA580
0 ETH0.0018110676.5
Transfer104835912020-07-18 12:58:191592 days ago1595077099IN
0x0DEEcB13...b207cA580
0 ETH0.0041051476.5
Transfer100722892020-05-15 18:20:391656 days ago1589566839IN
0x0DEEcB13...b207cA580
0 ETH0.0008121521
Transfer100346602020-05-09 22:17:591662 days ago1589062679IN
0x0DEEcB13...b207cA580
0 ETH0.000047322
Transfer99890612020-05-02 20:54:521669 days ago1588452892IN
0x0DEEcB13...b207cA580
0 ETH0.000116023
Transfer99498572020-04-26 18:53:071675 days ago1587927187IN
0x0DEEcB13...b207cA580
0 ETH0.000077322
Transfer99175382020-04-21 18:50:451680 days ago1587495045IN
0x0DEEcB13...b207cA580
0 ETH0.000047342
Transfer99137752020-04-21 4:54:371681 days ago1587444877IN
0x0DEEcB13...b207cA580
0 ETH0.000259116.7
Transfer99054192020-04-19 22:02:491682 days ago1587333769IN
0x0DEEcB13...b207cA580
0 ETH0.000047342
Transfer99012382020-04-19 6:37:381683 days ago1587278258IN
0x0DEEcB13...b207cA580
0 ETH0.000047342
Transfer98744022020-04-15 2:44:401687 days ago1586918680IN
0x0DEEcB13...b207cA580
0 ETH0.000023671
Approve98654772020-04-13 17:56:171688 days ago1586800577IN
0x0DEEcB13...b207cA580
0 ETH0.000058411.3
Transfer98621722020-04-13 5:34:311689 days ago1586756071IN
0x0DEEcB13...b207cA580
0 ETH0.000023671
Transfer98610412020-04-13 1:22:521689 days ago1586740972IN
0x0DEEcB13...b207cA580
0 ETH0.000023671
Transfer98233882020-04-07 6:35:161695 days ago1586241316IN
0x0DEEcB13...b207cA580
0 ETH0.000023671
Transfer98106782020-04-05 7:27:361697 days ago1586071656IN
0x0DEEcB13...b207cA580
0 ETH0.000043311.12
Transfer97532372020-03-27 11:37:221705 days ago1585309042IN
0x0DEEcB13...b207cA580
0 ETH0.000092812.4
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:
ETHERCToken

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.19;


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

    /**
    * @dev Multiplies two numbers, throws on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // assert(b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    /**
    * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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;


    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));
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }

}


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

    bool public paused = false;


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

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

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

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


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


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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

    mapping(address => uint256) balances;

    uint256 totalSupply_;

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

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        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) public view returns (uint256 balance) {
        return balances[_owner];
    }

}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) internal allowed;


    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

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

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint256) {
        return allowed[_owner][_spender];
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

}


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

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

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

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

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

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


contract ETHERCToken is PausableToken {

    uint8 public constant decimals = 18;
    string public constant name = "ETHERCToken";
    string public constant symbol = "EET";
    uint256 public constant TOTAL_SUPPLY = 1000000000 * (10 ** uint256(decimals));
    string public welcome;
    address public admin;

    event Burn(address indexed burner, uint256 value);

    function ETHERCToken() public {
        admin = owner;
        totalSupply_ = TOTAL_SUPPLY;
        balances[owner] = TOTAL_SUPPLY;
        Transfer(address(0), msg.sender, TOTAL_SUPPLY);
    }

    function changeAdmin(address _admin) public onlyOwner {
        require(_admin != address(0));
        admin = _admin;
    }

    modifier onlyAdmin() {
        require(msg.sender == owner || msg.sender == admin);
        _;
    }

    function changeWelcome(string _welcome) public onlyAdmin {
        welcome = _welcome;
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public onlyAdmin {
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        Burn(burner, _value);
        Transfer(burner, address(0), _value);
    }

    /**
     * @dev Transfer token in batch
     * @param _recipients The addresses to transfer to.
     * @param _values The amount to be transferred.
     */
    function batchTransfer(address[] _recipients, uint256[] _values) public onlyAdmin returns (bool) {
        require(_recipients.length > 0 && _recipients.length == _values.length);

        uint256 total = 0;
        for (uint256 i = 0; i < _values.length; i++) {
            total = total.add(_values[i]);
        }
        require(total <= balances[msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(total);

        for (uint256 j = 0; j < _recipients.length; j++) {
            balances[_recipients[j]] = balances[_recipients[j]].add(_values[j]);
            Transfer(msg.sender, _recipients[j], _values[j]);
        }
        
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_welcome","type":"string"}],"name":"changeWelcome","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","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":false,"inputs":[{"name":"_admin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"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":"welcome","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60606040526003805460a060020a60ff0219169055341561001f57600080fd5b60038054600160a060020a03338116600160a060020a031992831681179384905560058054909316939091169283179091556b033b2e3c9fd0803ce800000060018190556000928352602083905260408084208290559192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a361125d806100b96000396000f3006060604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610137578063095ea7b3146101c157806318160ddd146101f757806323b872dd1461021c578063313ce567146102445780633bc273b01461026d5780633f4ba83a146102c057806342966c68146102d35780635c975abb146102e957806366188463146102fc57806370a082311461031e5780638456cb591461033d57806388d695b2146103505780638da5cb5b146103df5780638f2839701461040e578063902d55a51461042d57806395d89b4114610440578063a9059cbb14610453578063b627cf3b14610475578063d73dd62314610488578063dd62ed3e146104aa578063f2fde38b146104cf578063f851a440146104ee575b600080fd5b341561014257600080fd5b61014a610501565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018657808201518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101cc57600080fd5b6101e3600160a060020a0360043516602435610538565b604051901515815260200160405180910390f35b341561020257600080fd5b61020a610563565b60405190815260200160405180910390f35b341561022757600080fd5b6101e3600160a060020a036004358116906024351660443561056a565b341561024f57600080fd5b610257610597565b60405160ff909116815260200160405180910390f35b341561027857600080fd5b6102be60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061059c95505050505050565b005b34156102cb57600080fd5b6102be6105e9565b34156102de57600080fd5b6102be600435610668565b34156102f457600080fd5b6101e3610788565b341561030757600080fd5b6101e3600160a060020a0360043516602435610798565b341561032957600080fd5b61020a600160a060020a03600435166107bc565b341561034857600080fd5b6102be6107d7565b341561035b57600080fd5b6101e360046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061085b95505050505050565b34156103ea57600080fd5b6103f2610a70565b604051600160a060020a03909116815260200160405180910390f35b341561041957600080fd5b6102be600160a060020a0360043516610a7f565b341561043857600080fd5b61020a610ade565b341561044b57600080fd5b61014a610aee565b341561045e57600080fd5b6101e3600160a060020a0360043516602435610b25565b341561048057600080fd5b61014a610b49565b341561049357600080fd5b6101e3600160a060020a0360043516602435610be7565b34156104b557600080fd5b61020a600160a060020a0360043581169060243516610c0b565b34156104da57600080fd5b6102be600160a060020a0360043516610c36565b34156104f957600080fd5b6103f2610cd1565b60408051908101604052600b81527f455448455243546f6b656e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561055257600080fd5b61055c8383610ce0565b9392505050565b6001545b90565b60035460009060a060020a900460ff161561058457600080fd5b61058f848484610d4c565b949350505050565b601281565b60035433600160a060020a03908116911614806105c7575060055433600160a060020a039081169116145b15156105d257600080fd5b60048180516105e5929160200190611179565b5050565b60035433600160a060020a0390811691161461060457600080fd5b60035460a060020a900460ff16151561061c57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a0390811691161480610696575060055433600160a060020a039081169116145b15156106a157600080fd5b600160a060020a0333166000908152602081905260409020548211156106c657600080fd5b5033600160a060020a0381166000908152602081905260409020546106eb9083610eba565b600160a060020a038216600090815260208190526040902055600154610717908363ffffffff610eba16565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a26000600160a060020a0382166000805160206112128339815191528460405190815260200160405180910390a35050565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156107b257600080fd5b61055c8383610ecc565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a039081169116146107f257600080fd5b60035460a060020a900460ff161561080957600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60035460009081908190819033600160a060020a039081169116148061088f575060055433600160a060020a039081169116145b151561089a57600080fd5b600086511180156108ac575084518651145b15156108b757600080fd5b60009250600091505b84518210156108fc576108ef8583815181106108d857fe5b90602001906020020151849063ffffffff610fc616565b92506001909101906108c0565b600160a060020a03331660009081526020819052604090205483111561092157600080fd5b600160a060020a03331660009081526020819052604090205461094a908463ffffffff610eba16565b600160a060020a03331660009081526020819052604081209190915590505b8551811015610a64576109ca85828151811061098157fe5b9060200190602002015160008089858151811061099a57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610fc616565b6000808884815181106109d957fe5b90602001906020020151600160a060020a03168152602081019190915260400160002055858181518110610a0957fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020611212833981519152878481518110610a4157fe5b9060200190602002015160405190815260200160405180910390a3600101610969565b50600195945050505050565b600354600160a060020a031681565b60035433600160a060020a03908116911614610a9a57600080fd5b600160a060020a0381161515610aaf57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6b033b2e3c9fd0803ce800000081565b60408051908101604052600381527f4545540000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610b3f57600080fd5b61055c8383610fd5565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b505050505081565b60035460009060a060020a900460ff1615610c0157600080fd5b61055c83836110d5565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c5157600080fd5b600160a060020a0381161515610c6657600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610d6357600080fd5b600160a060020a038416600090815260208190526040902054821115610d8857600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610dbb57600080fd5b600160a060020a038416600090815260208190526040902054610de4908363ffffffff610eba16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610e19908363ffffffff610fc616565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610e5f908363ffffffff610eba16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206112128339815191529085905190815260200160405180910390a35060019392505050565b600082821115610ec657fe5b50900390565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610f2957600160a060020a033381166000908152600260209081526040808320938816835292905290812055610f60565b610f39818463ffffffff610eba16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60008282018381101561055c57fe5b6000600160a060020a0383161515610fec57600080fd5b600160a060020a03331660009081526020819052604090205482111561101157600080fd5b600160a060020a03331660009081526020819052604090205461103a908363ffffffff610eba16565b600160a060020a03338116600090815260208190526040808220939093559085168152205461106f908363ffffffff610fc616565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206112128339815191528460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461110d908363ffffffff610fc616565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106111ba57805160ff19168380011785556111e7565b828001600101855582156111e7579182015b828111156111e75782518255916020019190600101906111cc565b506111f39291506111f7565b5090565b61056791905b808211156111f357600081556001016111fd5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582014b8259e950ddfefe5e77cd94b70bd2afaf1c86bccfa19d1151b371503928ef50029

Deployed Bytecode

0x6060604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610137578063095ea7b3146101c157806318160ddd146101f757806323b872dd1461021c578063313ce567146102445780633bc273b01461026d5780633f4ba83a146102c057806342966c68146102d35780635c975abb146102e957806366188463146102fc57806370a082311461031e5780638456cb591461033d57806388d695b2146103505780638da5cb5b146103df5780638f2839701461040e578063902d55a51461042d57806395d89b4114610440578063a9059cbb14610453578063b627cf3b14610475578063d73dd62314610488578063dd62ed3e146104aa578063f2fde38b146104cf578063f851a440146104ee575b600080fd5b341561014257600080fd5b61014a610501565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018657808201518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101cc57600080fd5b6101e3600160a060020a0360043516602435610538565b604051901515815260200160405180910390f35b341561020257600080fd5b61020a610563565b60405190815260200160405180910390f35b341561022757600080fd5b6101e3600160a060020a036004358116906024351660443561056a565b341561024f57600080fd5b610257610597565b60405160ff909116815260200160405180910390f35b341561027857600080fd5b6102be60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061059c95505050505050565b005b34156102cb57600080fd5b6102be6105e9565b34156102de57600080fd5b6102be600435610668565b34156102f457600080fd5b6101e3610788565b341561030757600080fd5b6101e3600160a060020a0360043516602435610798565b341561032957600080fd5b61020a600160a060020a03600435166107bc565b341561034857600080fd5b6102be6107d7565b341561035b57600080fd5b6101e360046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061085b95505050505050565b34156103ea57600080fd5b6103f2610a70565b604051600160a060020a03909116815260200160405180910390f35b341561041957600080fd5b6102be600160a060020a0360043516610a7f565b341561043857600080fd5b61020a610ade565b341561044b57600080fd5b61014a610aee565b341561045e57600080fd5b6101e3600160a060020a0360043516602435610b25565b341561048057600080fd5b61014a610b49565b341561049357600080fd5b6101e3600160a060020a0360043516602435610be7565b34156104b557600080fd5b61020a600160a060020a0360043581169060243516610c0b565b34156104da57600080fd5b6102be600160a060020a0360043516610c36565b34156104f957600080fd5b6103f2610cd1565b60408051908101604052600b81527f455448455243546f6b656e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561055257600080fd5b61055c8383610ce0565b9392505050565b6001545b90565b60035460009060a060020a900460ff161561058457600080fd5b61058f848484610d4c565b949350505050565b601281565b60035433600160a060020a03908116911614806105c7575060055433600160a060020a039081169116145b15156105d257600080fd5b60048180516105e5929160200190611179565b5050565b60035433600160a060020a0390811691161461060457600080fd5b60035460a060020a900460ff16151561061c57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a0390811691161480610696575060055433600160a060020a039081169116145b15156106a157600080fd5b600160a060020a0333166000908152602081905260409020548211156106c657600080fd5b5033600160a060020a0381166000908152602081905260409020546106eb9083610eba565b600160a060020a038216600090815260208190526040902055600154610717908363ffffffff610eba16565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a26000600160a060020a0382166000805160206112128339815191528460405190815260200160405180910390a35050565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156107b257600080fd5b61055c8383610ecc565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a039081169116146107f257600080fd5b60035460a060020a900460ff161561080957600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60035460009081908190819033600160a060020a039081169116148061088f575060055433600160a060020a039081169116145b151561089a57600080fd5b600086511180156108ac575084518651145b15156108b757600080fd5b60009250600091505b84518210156108fc576108ef8583815181106108d857fe5b90602001906020020151849063ffffffff610fc616565b92506001909101906108c0565b600160a060020a03331660009081526020819052604090205483111561092157600080fd5b600160a060020a03331660009081526020819052604090205461094a908463ffffffff610eba16565b600160a060020a03331660009081526020819052604081209190915590505b8551811015610a64576109ca85828151811061098157fe5b9060200190602002015160008089858151811061099a57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549063ffffffff610fc616565b6000808884815181106109d957fe5b90602001906020020151600160a060020a03168152602081019190915260400160002055858181518110610a0957fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020611212833981519152878481518110610a4157fe5b9060200190602002015160405190815260200160405180910390a3600101610969565b50600195945050505050565b600354600160a060020a031681565b60035433600160a060020a03908116911614610a9a57600080fd5b600160a060020a0381161515610aaf57600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6b033b2e3c9fd0803ce800000081565b60408051908101604052600381527f4545540000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610b3f57600080fd5b61055c8383610fd5565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b505050505081565b60035460009060a060020a900460ff1615610c0157600080fd5b61055c83836110d5565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c5157600080fd5b600160a060020a0381161515610c6657600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610d6357600080fd5b600160a060020a038416600090815260208190526040902054821115610d8857600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610dbb57600080fd5b600160a060020a038416600090815260208190526040902054610de4908363ffffffff610eba16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610e19908363ffffffff610fc616565b600160a060020a0380851660009081526020818152604080832094909455878316825260028152838220339093168252919091522054610e5f908363ffffffff610eba16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206112128339815191529085905190815260200160405180910390a35060019392505050565b600082821115610ec657fe5b50900390565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610f2957600160a060020a033381166000908152600260209081526040808320938816835292905290812055610f60565b610f39818463ffffffff610eba16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60008282018381101561055c57fe5b6000600160a060020a0383161515610fec57600080fd5b600160a060020a03331660009081526020819052604090205482111561101157600080fd5b600160a060020a03331660009081526020819052604090205461103a908363ffffffff610eba16565b600160a060020a03338116600090815260208190526040808220939093559085168152205461106f908363ffffffff610fc616565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03166000805160206112128339815191528460405190815260200160405180910390a350600192915050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205461110d908363ffffffff610fc616565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106111ba57805160ff19168380011785556111e7565b828001600101855582156111e7579182015b828111156111e75782518255916020019190600101906111cc565b506111f39291506111f7565b5090565b61056791905b808211156111f357600081556001016111fd5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582014b8259e950ddfefe5e77cd94b70bd2afaf1c86bccfa19d1151b371503928ef50029

Swarm Source

bzzr://14b8259e950ddfefe5e77cd94b70bd2afaf1c86bccfa19d1151b371503928ef5

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.