ETH Price: $3,263.17 (+1.25%)

Contract

0xD110bB8a24B100c37aF7310416E685af807C1F10
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve144752522022-03-28 14:42:301019 days ago1648478550IN
0xD110bB8a...f807C1F10
0 ETH0.0015677155.27523738
Transfer138862912021-12-27 8:51:401110 days ago1640595100IN
0xD110bB8a...f807C1F10
0 ETH0.0026313162.61449823
Transfer136825392021-11-25 8:55:061142 days ago1637830506IN
0xD110bB8a...f807C1F10
0 ETH0.00681416115.22862987
Transfer136825392021-11-25 8:55:061142 days ago1637830506IN
0xD110bB8a...f807C1F10
0 ETH0.00484375115.22862987
Transfer135126542021-10-29 14:42:411169 days ago1635518561IN
0xD110bB8a...f807C1F10
0 ETH0.01419552240
Transfer135105872021-10-29 6:42:411169 days ago1635489761IN
0xD110bB8a...f807C1F10
0 ETH0.0057943137.80219919
Transfer134594222021-10-21 6:29:081177 days ago1634797748IN
0xD110bB8a...f807C1F10
0 ETH0.0056525395.56587994
Transfer134587352021-10-21 3:48:581177 days ago1634788138IN
0xD110bB8a...f807C1F10
0 ETH0.0040799568.97881827
Transfer134585832021-10-21 3:19:051177 days ago1634786345IN
0xD110bB8a...f807C1F10
0 ETH0.0051534687.14606664
Transfer134547162021-10-20 12:54:121178 days ago1634734452IN
0xD110bB8a...f807C1F10
0 ETH0.0054580292.27742133
Transfer134545352021-10-20 12:14:191178 days ago1634732059IN
0xD110bB8a...f807C1F10
0 ETH0.0039949467.54146594
Transfer134543322021-10-20 11:24:001178 days ago1634729040IN
0xD110bB8a...f807C1F10
0 ETH0.0043468873.49173776
Transfer134536762021-10-20 8:55:391178 days ago1634720139IN
0xD110bB8a...f807C1F10
0 ETH0.0024645258.62892433
Transfer134536662021-10-20 8:53:381178 days ago1634720018IN
0xD110bB8a...f807C1F10
0 ETH0.0035340159.76077227
Transfer134536462021-10-20 8:49:311178 days ago1634719771IN
0xD110bB8a...f807C1F10
0 ETH0.0034671358.62987763
Transfer134536162021-10-20 8:43:451178 days ago1634719425IN
0xD110bB8a...f807C1F10
0 ETH0.0036978662.51887179
Transfer134522912021-10-20 3:45:441178 days ago1634701544IN
0xD110bB8a...f807C1F10
0 ETH0.0037240788.56717343
Transfer134512462021-10-19 23:52:441179 days ago1634687564IN
0xD110bB8a...f807C1F10
0 ETH0.003049272.53801507
Transfer134512362021-10-19 23:50:481179 days ago1634687448IN
0xD110bB8a...f807C1F10
0 ETH0.0058510498.94219887
Transfer134485772021-10-19 13:47:191179 days ago1634651239IN
0xD110bB8a...f807C1F10
0 ETH0.0031942654.01558091
Transfer134485342021-10-19 13:40:461179 days ago1634650846IN
0xD110bB8a...f807C1F10
0 ETH0.0036095961.06370573
Transfer134481472021-10-19 12:18:421179 days ago1634645922IN
0xD110bB8a...f807C1F10
0 ETH0.0033301756.30233021
Transfer134478702021-10-19 11:14:351179 days ago1634642075IN
0xD110bB8a...f807C1F10
0 ETH0.0041107969.50007063
Transfer134477852021-10-19 10:53:391179 days ago1634640819IN
0xD110bB8a...f807C1F10
0 ETH0.0027082764.44580082
Transfer134477812021-10-19 10:52:191179 days ago1634640739IN
0xD110bB8a...f807C1F10
0 ETH0.0023557356.05685494
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:
WDT

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-03-13
*/

pragma solidity ^0.4.24;

/**
 * @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) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (_a == 0) {
            return 0;
        }

        uint256 c = _a * _b;
        require(c / _a == _b);

        return c;
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
        // require(_b > 0); // Solidity automatically throws when dividing by 0
        uint256 c = _a / _b;
        // require(_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) {
        require(_b <= _a);
        uint256 c = _a - _b;

        return c;
    }

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 _a, uint256 _b) internal pure returns (uint256) {
        uint256 c = _a + _b;
        require(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 OwnershipRenounced(address indexed previousOwner);
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

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

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

    /**
    * @dev Allows the current owner to relinquish control of the contract.
    * @notice Renouncing to ownership will leave the contract without an owner.
    * It will not be possible to call the functions with the `onlyOwner`
    * modifier anymore.
    */
    function renounceOwnership() public onlyOwner {
        emit OwnershipRenounced(owner);
        owner = address(0);
    }

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

    /**
    * @dev Transfers control of the contract to a newOwner.
    * @param _newOwner The address to transfer ownership to.
    */
    function _transferOwnership(address _newOwner) internal {
        require(_newOwner != address(0));
        emit OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }
}


/**
 * @title 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() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

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


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

    function balanceOf(address _who) public view returns (uint256);

    function allowance(address _owner, address _spender)
        public view returns (uint256);

    function transfer(address _to, uint256 _value) public returns (bool);

    function approve(address _spender, uint256 _value)
        public returns (bool);

    function transferFrom(address _from, address _to, uint256 _value)
        public returns (bool);

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

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

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

    mapping(address => uint256) balances;

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

    uint256 totalSupply_;

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

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256) {
        return balances[_owner];
    }

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

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

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

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

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

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

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

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

}


/**
* @title Pausable token
* @dev StandardToken modified with pausable transfers.
**/
contract PausableERC20Token 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);
    }
}


/**
* @title Burnable Pausable Token
* @dev Pausable Token that can be irreversibly burned (destroyed).
*/
contract BurnablePausableERC20Token is PausableERC20Token {

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

    event Burn(address indexed burner, uint256 value);

    event ApprovalBurn(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

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

    function approveBurn(address _spender, uint256 _value)
        public
        whenNotPaused
        returns (bool)
    {
        allowedBurn[msg.sender][_spender] = _value;
        emit ApprovalBurn(msg.sender, _spender, _value);
        return true;
    }

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

    /**
    * @dev Burns a specific amount of tokens from the target address and decrements allowance
    * @param _from address The address which you want to send tokens from
    * @param _value uint256 The amount of token to be burned
    */
    function burnFrom(
        address _from, 
        uint256 _value
    ) 
        public 
        whenNotPaused
    {
        require(_value <= allowedBurn[_from][msg.sender]);
        // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
        // this function needs to emit an event with the updated approval.
        allowedBurn[_from][msg.sender] = allowedBurn[_from][msg.sender].sub(_value);
        _burn(_from, _value);
    }

    function _burn(
        address _who, 
        uint256 _value
    ) 
        internal 
        whenNotPaused
    {
        require(_value <= balances[_who]);
        // 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

        balances[_who] = balances[_who].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }

    function increaseBurnApproval(
        address _spender,
        uint256 _addedValue
    )
        public
        whenNotPaused
        returns (bool)
    {
        allowedBurn[msg.sender][_spender] = (
        allowedBurn[msg.sender][_spender].add(_addedValue));
        emit ApprovalBurn(msg.sender, _spender, allowedBurn[msg.sender][_spender]);
        return true;
    }

    function decreaseBurnApproval(
        address _spender,
        uint256 _subtractedValue
    )
        public
        whenNotPaused
        returns (bool)
    {
        uint256 oldValue = allowedBurn[msg.sender][_spender];
        if (_subtractedValue >= oldValue) {
            allowedBurn[msg.sender][_spender] = 0;
        } else {
            allowedBurn[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit ApprovalBurn(msg.sender, _spender, allowedBurn[msg.sender][_spender]);
        return true;
    }
}

contract FreezableBurnablePausableERC20Token is BurnablePausableERC20Token {
    mapping (address => bool) public frozenAccount;
    event FrozenFunds(address target, bool frozen);

    function freezeAccount(
        address target,
        bool freeze
    )
        public
        onlyOwner
    {
        frozenAccount[target] = freeze;
        emit FrozenFunds(target, freeze);
    }

    function transfer(
        address _to,
        uint256 _value
    )
        public
        whenNotPaused
        returns (bool)
    {
        require(!frozenAccount[msg.sender], "Sender account freezed");
        require(!frozenAccount[_to], "Receiver account freezed");

        return super.transfer(_to, _value);
    }

    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
        public
        whenNotPaused
        returns (bool)
    {
        require(!frozenAccount[msg.sender], "Spender account freezed");
        require(!frozenAccount[_from], "Sender account freezed");
        require(!frozenAccount[_to], "Receiver account freezed");

        return super.transferFrom(_from, _to, _value);
    }

    function burn(
        uint256 _value
    ) 
        public
        whenNotPaused
    {
        require(!frozenAccount[msg.sender], "Sender account freezed");

        return super.burn(_value);
    }

    function burnFrom(
        address _from, 
        uint256 _value
    ) 
        public 
        whenNotPaused
    {
        require(!frozenAccount[msg.sender], "Spender account freezed");
        require(!frozenAccount[_from], "Sender account freezed");

        return super.burnFrom(_from, _value);
    }
}

/**
* @title WDT
* @dev Token that is ERC20 compatible, Pausableb, Burnable, Ownable with SafeMath.
*/
contract WDT is FreezableBurnablePausableERC20Token {

    /** Token Setting: You are free to change any of these
    * @param name string The name of your token (can be not unique)
    * @param symbol string The symbol of your token (can be not unique, can be more than three characters)
    * @param decimals uint8 The accuracy decimals of your token (conventionally be 18)
    * Read this to choose decimals: https://ethereum.stackexchange.com/questions/38704/why-most-erc-20-tokens-have-18-decimals
    * @param INITIAL_SUPPLY uint256 The total supply of your token. Example default to be "10000". Change as you wish.
    **/
    string public constant name = "VODA TOKEN";
    string public constant symbol = "WDT";
    uint8 public constant decimals = 18;

    uint256 public constant INITIAL_SUPPLY = 81000000 * (10 ** uint256(decimals));

    /**
    * @dev Constructor that gives msg.sender all of existing tokens.
    * Literally put all the issued money in your pocket
    */
    constructor() public {
        totalSupply_ = INITIAL_SUPPLY;
        balances[msg.sender] = INITIAL_SUPPLY;
        emit Transfer(address(0), msg.sender, INITIAL_SUPPLY);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approveBurn","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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseBurnApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"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":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowanceBurn","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"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":"frozenAccount","outputs":[{"name":"","type":"bool"}],"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":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseBurnApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"ApprovalBurn","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"}],"name":"OwnershipRenounced","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"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b5060038054600160a060020a031916339081179091556a43006acc6ed72ff1000000600281905560008281526020818152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36116258061009b6000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e25780630cfa03181461021a57806318160ddd1461023e57806323b872dd1461026557806326ed274e1461028f5780632ff2e9dc146102b3578063313ce567146102c85780633f4ba83a146102f357806342966c681461030a5780635c975abb14610322578063661884631461033757806370a082311461035b578063715018a61461037c57806373cd0a191461039157806379cc6790146103b85780638456cb59146103dc5780638da5cb5b146103f157806395d89b4114610422578063a9059cbb14610437578063b414d4b61461045b578063d73dd6231461047c578063dd62ed3e146104a0578063e724529c146104c7578063f2fde38b146104ed578063fc7f1a881461050e575b600080fd5b34801561016457600080fd5b5061016d610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610569565b604080519115158252519081900360200190f35b34801561022657600080fd5b50610206600160a060020a0360043516602435610594565b34801561024a57600080fd5b50610253610615565b60408051918252519081900360200190f35b34801561027157600080fd5b50610206600160a060020a036004358116906024351660443561061b565b34801561029b57600080fd5b50610206600160a060020a0360043516602435610780565b3480156102bf57600080fd5b5061025361088c565b3480156102d457600080fd5b506102dd61089b565b6040805160ff9092168252519081900360200190f35b3480156102ff57600080fd5b506103086108a0565b005b34801561031657600080fd5b50610308600435610918565b34801561032e57600080fd5b50610206610991565b34801561034357600080fd5b50610206600160a060020a03600435166024356109a1565b34801561036757600080fd5b50610253600160a060020a03600435166109c5565b34801561038857600080fd5b506103086109e0565b34801561039d57600080fd5b50610253600160a060020a0360043581169060243516610a4e565b3480156103c457600080fd5b50610308600160a060020a0360043516602435610a79565b3480156103e857600080fd5b50610308610b65565b3480156103fd57600080fd5b50610406610be2565b60408051600160a060020a039092168252519081900360200190f35b34801561042e57600080fd5b5061016d610bf1565b34801561044357600080fd5b50610206600160a060020a0360043516602435610c28565b34801561046757600080fd5b50610206600160a060020a0360043516610d13565b34801561048857600080fd5b50610206600160a060020a0360043516602435610d28565b3480156104ac57600080fd5b50610253600160a060020a0360043581169060243516610d4c565b3480156104d357600080fd5b50610308600160a060020a03600435166024351515610d77565b3480156104f957600080fd5b50610308600160a060020a0360043516610df2565b34801561051a57600080fd5b50610206600160a060020a0360043516602435610e12565b60408051808201909152600a81527f564f444120544f4b454e00000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561058357600080fd5b61058d8383610ec5565b9392505050565b60035460009060a060020a900460ff16156105ae57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a350600192915050565b60025490565b60035460009060a060020a900460ff161561063557600080fd5b3360009081526005602052604090205460ff161561069d576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03841660009081526005602052604090205460ff16156106fc576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff161561076d576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b610778848484610f2b565b949350505050565b600354600090819060a060020a900460ff161561079c57600080fd5b50336000908152600460209081526040808320600160a060020a03871684529091529020548083106107f157336000908152600460209081526040808320600160a060020a0388168452909152812055610826565b610801818463ffffffff610f5016565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a35060019392505050565b6a43006acc6ed72ff100000081565b601281565b600354600160a060020a031633146108b757600080fd5b60035460a060020a900460ff1615156108cf57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff161561092f57600080fd5b3360009081526005602052604090205460ff1615610985576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b61098e81610f67565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156109bb57600080fd5b61058d8383610f88565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146109f757600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60035460a060020a900460ff1615610a9057600080fd5b3360009081526005602052604090205460ff1615610af8576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff1615610b57576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b610b618282611077565b5050565b600354600160a060020a03163314610b7c57600080fd5b60035460a060020a900460ff1615610b9357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f5744540000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610c4257600080fd5b3360009081526005602052604090205460ff1615610c98576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff1615610d09576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b61058d8383611120565b60056020526000908152604090205460ff1681565b60035460009060a060020a900460ff1615610d4257600080fd5b61058d8383611144565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a03163314610d8e57600080fd5b600160a060020a038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600354600160a060020a03163314610e0957600080fd5b61098e816111dd565b60035460009060a060020a900460ff1615610e2c57600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610e60908363ffffffff61125b16565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929081900390910190a350600192915050565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610f4557600080fd5b61077884848461126d565b60008083831115610f6057600080fd5b5050900390565b60035460a060020a900460ff1615610f7e57600080fd5b61098e33826113e2565b336000908152600160209081526040808320600160a060020a0386168452909152812054808310610fdc57336000908152600160209081526040808320600160a060020a0388168452909152812055611011565b610fec818463ffffffff610f5016565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460a060020a900460ff161561108e57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020548111156110be57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020546110f2908263ffffffff610f5016565b600160a060020a0383166000908152600460209081526040808320338452909152902055610b6182826113e2565b60035460009060a060020a900460ff161561113a57600080fd5b61058d83836114fa565b336000908152600160209081526040808320600160a060020a0386168452909152812054611178908363ffffffff61125b16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156111f257600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282018381101561058d57600080fd5b600160a060020a03831660009081526020819052604081205482111561129257600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156112c257600080fd5b600160a060020a03831615156112d757600080fd5b600160a060020a038416600090815260208190526040902054611300908363ffffffff610f5016565b600160a060020a038086166000908152602081905260408082209390935590851681522054611335908363ffffffff61125b16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054611377908363ffffffff610f5016565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035460a060020a900460ff16156113f957600080fd5b600160a060020a03821660009081526020819052604090205481111561141e57600080fd5b600160a060020a038216600090815260208190526040902054611447908263ffffffff610f5016565b600160a060020a038316600090815260208190526040902055600254611473908263ffffffff610f5016565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b3360009081526020819052604081205482111561151657600080fd5b600160a060020a038316151561152b57600080fd5b3360009081526020819052604090205461154b908363ffffffff610f5016565b3360009081526020819052604080822092909255600160a060020a0385168152205461157d908363ffffffff61125b16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050560053656e646572206163636f756e7420667265657a656400000000000000000000a165627a7a72305820f8f6bc56a4098ac8e7f4d4c5407b56a575022c00e462ac63383741186b0937820029

Deployed Bytecode

0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e25780630cfa03181461021a57806318160ddd1461023e57806323b872dd1461026557806326ed274e1461028f5780632ff2e9dc146102b3578063313ce567146102c85780633f4ba83a146102f357806342966c681461030a5780635c975abb14610322578063661884631461033757806370a082311461035b578063715018a61461037c57806373cd0a191461039157806379cc6790146103b85780638456cb59146103dc5780638da5cb5b146103f157806395d89b4114610422578063a9059cbb14610437578063b414d4b61461045b578063d73dd6231461047c578063dd62ed3e146104a0578063e724529c146104c7578063f2fde38b146104ed578063fc7f1a881461050e575b600080fd5b34801561016457600080fd5b5061016d610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610569565b604080519115158252519081900360200190f35b34801561022657600080fd5b50610206600160a060020a0360043516602435610594565b34801561024a57600080fd5b50610253610615565b60408051918252519081900360200190f35b34801561027157600080fd5b50610206600160a060020a036004358116906024351660443561061b565b34801561029b57600080fd5b50610206600160a060020a0360043516602435610780565b3480156102bf57600080fd5b5061025361088c565b3480156102d457600080fd5b506102dd61089b565b6040805160ff9092168252519081900360200190f35b3480156102ff57600080fd5b506103086108a0565b005b34801561031657600080fd5b50610308600435610918565b34801561032e57600080fd5b50610206610991565b34801561034357600080fd5b50610206600160a060020a03600435166024356109a1565b34801561036757600080fd5b50610253600160a060020a03600435166109c5565b34801561038857600080fd5b506103086109e0565b34801561039d57600080fd5b50610253600160a060020a0360043581169060243516610a4e565b3480156103c457600080fd5b50610308600160a060020a0360043516602435610a79565b3480156103e857600080fd5b50610308610b65565b3480156103fd57600080fd5b50610406610be2565b60408051600160a060020a039092168252519081900360200190f35b34801561042e57600080fd5b5061016d610bf1565b34801561044357600080fd5b50610206600160a060020a0360043516602435610c28565b34801561046757600080fd5b50610206600160a060020a0360043516610d13565b34801561048857600080fd5b50610206600160a060020a0360043516602435610d28565b3480156104ac57600080fd5b50610253600160a060020a0360043581169060243516610d4c565b3480156104d357600080fd5b50610308600160a060020a03600435166024351515610d77565b3480156104f957600080fd5b50610308600160a060020a0360043516610df2565b34801561051a57600080fd5b50610206600160a060020a0360043516602435610e12565b60408051808201909152600a81527f564f444120544f4b454e00000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561058357600080fd5b61058d8383610ec5565b9392505050565b60035460009060a060020a900460ff16156105ae57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a350600192915050565b60025490565b60035460009060a060020a900460ff161561063557600080fd5b3360009081526005602052604090205460ff161561069d576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03841660009081526005602052604090205460ff16156106fc576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff161561076d576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b610778848484610f2b565b949350505050565b600354600090819060a060020a900460ff161561079c57600080fd5b50336000908152600460209081526040808320600160a060020a03871684529091529020548083106107f157336000908152600460209081526040808320600160a060020a0388168452909152812055610826565b610801818463ffffffff610f5016565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a35060019392505050565b6a43006acc6ed72ff100000081565b601281565b600354600160a060020a031633146108b757600080fd5b60035460a060020a900460ff1615156108cf57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff161561092f57600080fd5b3360009081526005602052604090205460ff1615610985576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b61098e81610f67565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156109bb57600080fd5b61058d8383610f88565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146109f757600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60035460a060020a900460ff1615610a9057600080fd5b3360009081526005602052604090205460ff1615610af8576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff1615610b57576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b610b618282611077565b5050565b600354600160a060020a03163314610b7c57600080fd5b60035460a060020a900460ff1615610b9357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f5744540000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610c4257600080fd5b3360009081526005602052604090205460ff1615610c98576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115da833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff1615610d09576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b61058d8383611120565b60056020526000908152604090205460ff1681565b60035460009060a060020a900460ff1615610d4257600080fd5b61058d8383611144565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a03163314610d8e57600080fd5b600160a060020a038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600354600160a060020a03163314610e0957600080fd5b61098e816111dd565b60035460009060a060020a900460ff1615610e2c57600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610e60908363ffffffff61125b16565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929081900390910190a350600192915050565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610f4557600080fd5b61077884848461126d565b60008083831115610f6057600080fd5b5050900390565b60035460a060020a900460ff1615610f7e57600080fd5b61098e33826113e2565b336000908152600160209081526040808320600160a060020a0386168452909152812054808310610fdc57336000908152600160209081526040808320600160a060020a0388168452909152812055611011565b610fec818463ffffffff610f5016565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460a060020a900460ff161561108e57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020548111156110be57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020546110f2908263ffffffff610f5016565b600160a060020a0383166000908152600460209081526040808320338452909152902055610b6182826113e2565b60035460009060a060020a900460ff161561113a57600080fd5b61058d83836114fa565b336000908152600160209081526040808320600160a060020a0386168452909152812054611178908363ffffffff61125b16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156111f257600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282018381101561058d57600080fd5b600160a060020a03831660009081526020819052604081205482111561129257600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156112c257600080fd5b600160a060020a03831615156112d757600080fd5b600160a060020a038416600090815260208190526040902054611300908363ffffffff610f5016565b600160a060020a038086166000908152602081905260408082209390935590851681522054611335908363ffffffff61125b16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054611377908363ffffffff610f5016565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035460a060020a900460ff16156113f957600080fd5b600160a060020a03821660009081526020819052604090205481111561141e57600080fd5b600160a060020a038216600090815260208190526040902054611447908263ffffffff610f5016565b600160a060020a038316600090815260208190526040902055600254611473908263ffffffff610f5016565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b3360009081526020819052604081205482111561151657600080fd5b600160a060020a038316151561152b57600080fd5b3360009081526020819052604090205461154b908363ffffffff610f5016565b3360009081526020819052604080822092909255600160a060020a0385168152205461157d908363ffffffff61125b16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050560053656e646572206163636f756e7420667265657a656400000000000000000000a165627a7a72305820f8f6bc56a4098ac8e7f4d4c5407b56a575022c00e462ac63383741186b0937820029

Swarm Source

bzzr://f8f6bc56a4098ac8e7f4d4c5407b56a575022c00e462ac63383741186b093782

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.