ETH Price: $2,307.62 (+1.96%)

Contract

0x2CF623D0dE1aafD2DF04e30eb34EEE517e080336
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer103279532020-06-24 10:34:102091 days ago1592994850IN
0x2CF623D0...17e080336
0 ETH0.0018105144.00000145
Transfer103211392020-06-23 9:16:432092 days ago1592903803IN
0x2CF623D0...17e080336
0 ETH0.0023015741
Transfer102764012020-06-16 10:54:322099 days ago1592304872IN
0x2CF623D0...17e080336
0 ETH0.0016865741.00000145
Transfer102763952020-06-16 10:52:412099 days ago1592304761IN
0x2CF623D0...17e080336
0 ETH0.0023015741.00000145
Transfer102761402020-06-16 9:58:212099 days ago1592301501IN
0x2CF623D0...17e080336
0 ETH0.0016454440.00000145
Transfer102761302020-06-16 9:56:292099 days ago1592301389IN
0x2CF623D0...17e080336
0 ETH0.0016459240.00000145
Transfer102243882020-06-08 9:50:052107 days ago1591609805IN
0x2CF623D0...17e080336
0 ETH0.0026383947.00000145
Transfer102238842020-06-08 7:57:152107 days ago1591603035IN
0x2CF623D0...17e080336
0 ETH0.0026389547.00000145
Transfer102227622020-06-08 3:45:292108 days ago1591587929IN
0x2CF623D0...17e080336
0 ETH0.0021897739.00000145
Transfer102192552020-06-07 14:42:522108 days ago1591540972IN
0x2CF623D0...17e080336
0 ETH0.0020156649.00000145
Transfer102124342020-06-06 13:28:332109 days ago1591450113IN
0x2CF623D0...17e080336
0 ETH0.0024143643
Transfer102113122020-06-06 9:19:572109 days ago1591435197IN
0x2CF623D0...17e080336
0 ETH0.0016275929.00000145
Transfer102103312020-06-06 5:37:432109 days ago1591421863IN
0x2CF623D0...17e080336
0 ETH0.001403125
Transfer102103032020-06-06 5:29:362109 days ago1591421376IN
0x2CF623D0...17e080336
0 ETH0.0012347222
Transfer102102042020-06-06 5:07:202109 days ago1591420040IN
0x2CF623D0...17e080336
0 ETH0.0015153427
Transfer102102042020-06-06 5:07:202109 days ago1591420040IN
0x2CF623D0...17e080336
0 ETH0.0015156727.00000145
Transfer102101712020-06-06 4:57:522109 days ago1591419472IN
0x2CF623D0...17e080336
0 ETH0.0011269620.08
Transfer102090652020-06-06 0:42:152110 days ago1591404135IN
0x2CF623D0...17e080336
0 ETH0.0008229620
Transfer102073502020-06-05 18:31:072110 days ago1591381867IN
0x2CF623D0...17e080336
0 ETH0.0008638521
Transfer102070022020-06-05 17:13:332110 days ago1591377213IN
0x2CF623D0...17e080336
0 ETH0.0012752131.00000145
Transfer102069832020-06-05 17:09:542110 days ago1591376994IN
0x2CF623D0...17e080336
0 ETH0.0009875524
Transfer102069532020-06-05 17:05:202110 days ago1591376720IN
0x2CF623D0...17e080336
0 ETH0.0011953229.0493038
Transfer102068772020-06-05 16:45:102110 days ago1591375510IN
0x2CF623D0...17e080336
0 ETH0.001151828
Transfer102067332020-06-05 16:14:392110 days ago1591373679IN
0x2CF623D0...17e080336
0 ETH0.0018524833
Transfer102066962020-06-05 16:05:042110 days ago1591373104IN
0x2CF623D0...17e080336
0 ETH0.0020208936
View all transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

Contract Source Code Verified (Exact Match)

Contract Name:
GDT

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-11-08
*/

/**
 *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 GDT
* @dev Token that is ERC20 compatible, Pausableb, Burnable, Ownable with SafeMath.
*/
contract GDT 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 = "GDT TOKEN";
    string public constant symbol = "GDT";
    uint8 public constant decimals = 18;

    uint256 public constant INITIAL_SUPPLY = 2000000000 * (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

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","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"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b5060038054600160a060020a031916339081179091556b06765c793fa10079d0000000600281905560008281526020818152604080832084905580519384525191927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36116268061009c6000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e25780630cfa03181461021a57806318160ddd1461023e57806323b872dd1461026557806326ed274e1461028f5780632ff2e9dc146102b3578063313ce567146102c85780633f4ba83a146102f357806342966c681461030a5780635c975abb14610322578063661884631461033757806370a082311461035b578063715018a61461037c57806373cd0a191461039157806379cc6790146103b85780638456cb59146103dc5780638da5cb5b146103f157806395d89b4114610422578063a9059cbb14610437578063b414d4b61461045b578063d73dd6231461047c578063dd62ed3e146104a0578063e724529c146104c7578063f2fde38b146104ed578063fc7f1a881461050e575b600080fd5b34801561016457600080fd5b5061016d610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610569565b604080519115158252519081900360200190f35b34801561022657600080fd5b50610206600160a060020a0360043516602435610594565b34801561024a57600080fd5b50610253610615565b60408051918252519081900360200190f35b34801561027157600080fd5b50610206600160a060020a036004358116906024351660443561061b565b34801561029b57600080fd5b50610206600160a060020a0360043516602435610780565b3480156102bf57600080fd5b5061025361088c565b3480156102d457600080fd5b506102dd61089c565b6040805160ff9092168252519081900360200190f35b3480156102ff57600080fd5b506103086108a1565b005b34801561031657600080fd5b50610308600435610919565b34801561032e57600080fd5b50610206610992565b34801561034357600080fd5b50610206600160a060020a03600435166024356109a2565b34801561036757600080fd5b50610253600160a060020a03600435166109c6565b34801561038857600080fd5b506103086109e1565b34801561039d57600080fd5b50610253600160a060020a0360043581169060243516610a4f565b3480156103c457600080fd5b50610308600160a060020a0360043516602435610a7a565b3480156103e857600080fd5b50610308610b66565b3480156103fd57600080fd5b50610406610be3565b60408051600160a060020a039092168252519081900360200190f35b34801561042e57600080fd5b5061016d610bf2565b34801561044357600080fd5b50610206600160a060020a0360043516602435610c29565b34801561046757600080fd5b50610206600160a060020a0360043516610d14565b34801561048857600080fd5b50610206600160a060020a0360043516602435610d29565b3480156104ac57600080fd5b50610253600160a060020a0360043581169060243516610d4d565b3480156104d357600080fd5b50610308600160a060020a03600435166024351515610d78565b3480156104f957600080fd5b50610308600160a060020a0360043516610df3565b34801561051a57600080fd5b50610206600160a060020a0360043516602435610e13565b60408051808201909152600981527f47445420544f4b454e0000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561058357600080fd5b61058d8383610ec6565b9392505050565b60035460009060a060020a900460ff16156105ae57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a350600192915050565b60025490565b60035460009060a060020a900460ff161561063557600080fd5b3360009081526005602052604090205460ff161561069d576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03841660009081526005602052604090205460ff16156106fc576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff161561076d576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b610778848484610f2c565b949350505050565b600354600090819060a060020a900460ff161561079c57600080fd5b50336000908152600460209081526040808320600160a060020a03871684529091529020548083106107f157336000908152600460209081526040808320600160a060020a0388168452909152812055610826565b610801818463ffffffff610f5116565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a35060019392505050565b6b06765c793fa10079d000000081565b601281565b600354600160a060020a031633146108b857600080fd5b60035460a060020a900460ff1615156108d057600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff161561093057600080fd5b3360009081526005602052604090205460ff1615610986576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b61098f81610f68565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156109bc57600080fd5b61058d8383610f89565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146109f857600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60035460a060020a900460ff1615610a9157600080fd5b3360009081526005602052604090205460ff1615610af9576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff1615610b58576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b610b628282611078565b5050565b600354600160a060020a03163314610b7d57600080fd5b60035460a060020a900460ff1615610b9457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4744540000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610c4357600080fd5b3360009081526005602052604090205460ff1615610c99576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff1615610d0a576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b61058d8383611121565b60056020526000908152604090205460ff1681565b60035460009060a060020a900460ff1615610d4357600080fd5b61058d8383611145565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a03163314610d8f57600080fd5b600160a060020a038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600354600160a060020a03163314610e0a57600080fd5b61098f816111de565b60035460009060a060020a900460ff1615610e2d57600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610e61908363ffffffff61125c16565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929081900390910190a350600192915050565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610f4657600080fd5b61077884848461126e565b60008083831115610f6157600080fd5b5050900390565b60035460a060020a900460ff1615610f7f57600080fd5b61098f33826113e3565b336000908152600160209081526040808320600160a060020a0386168452909152812054808310610fdd57336000908152600160209081526040808320600160a060020a0388168452909152812055611012565b610fed818463ffffffff610f5116565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460a060020a900460ff161561108f57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020548111156110bf57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020546110f3908263ffffffff610f5116565b600160a060020a0383166000908152600460209081526040808320338452909152902055610b6282826113e3565b60035460009060a060020a900460ff161561113b57600080fd5b61058d83836114fb565b336000908152600160209081526040808320600160a060020a0386168452909152812054611179908363ffffffff61125c16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156111f357600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282018381101561058d57600080fd5b600160a060020a03831660009081526020819052604081205482111561129357600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156112c357600080fd5b600160a060020a03831615156112d857600080fd5b600160a060020a038416600090815260208190526040902054611301908363ffffffff610f5116565b600160a060020a038086166000908152602081905260408082209390935590851681522054611336908363ffffffff61125c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054611378908363ffffffff610f5116565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035460a060020a900460ff16156113fa57600080fd5b600160a060020a03821660009081526020819052604090205481111561141f57600080fd5b600160a060020a038216600090815260208190526040902054611448908263ffffffff610f5116565b600160a060020a038316600090815260208190526040902055600254611474908263ffffffff610f5116565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b3360009081526020819052604081205482111561151757600080fd5b600160a060020a038316151561152c57600080fd5b3360009081526020819052604090205461154c908363ffffffff610f5116565b3360009081526020819052604080822092909255600160a060020a0385168152205461157e908363ffffffff61125c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050560053656e646572206163636f756e7420667265657a656400000000000000000000a165627a7a72305820d0b15a78e5de1c7614ecd41ac1be698af13ddf1595eb250a0206a5e8bb6921f80029

Deployed Bytecode

0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e25780630cfa03181461021a57806318160ddd1461023e57806323b872dd1461026557806326ed274e1461028f5780632ff2e9dc146102b3578063313ce567146102c85780633f4ba83a146102f357806342966c681461030a5780635c975abb14610322578063661884631461033757806370a082311461035b578063715018a61461037c57806373cd0a191461039157806379cc6790146103b85780638456cb59146103dc5780638da5cb5b146103f157806395d89b4114610422578063a9059cbb14610437578063b414d4b61461045b578063d73dd6231461047c578063dd62ed3e146104a0578063e724529c146104c7578063f2fde38b146104ed578063fc7f1a881461050e575b600080fd5b34801561016457600080fd5b5061016d610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610569565b604080519115158252519081900360200190f35b34801561022657600080fd5b50610206600160a060020a0360043516602435610594565b34801561024a57600080fd5b50610253610615565b60408051918252519081900360200190f35b34801561027157600080fd5b50610206600160a060020a036004358116906024351660443561061b565b34801561029b57600080fd5b50610206600160a060020a0360043516602435610780565b3480156102bf57600080fd5b5061025361088c565b3480156102d457600080fd5b506102dd61089c565b6040805160ff9092168252519081900360200190f35b3480156102ff57600080fd5b506103086108a1565b005b34801561031657600080fd5b50610308600435610919565b34801561032e57600080fd5b50610206610992565b34801561034357600080fd5b50610206600160a060020a03600435166024356109a2565b34801561036757600080fd5b50610253600160a060020a03600435166109c6565b34801561038857600080fd5b506103086109e1565b34801561039d57600080fd5b50610253600160a060020a0360043581169060243516610a4f565b3480156103c457600080fd5b50610308600160a060020a0360043516602435610a7a565b3480156103e857600080fd5b50610308610b66565b3480156103fd57600080fd5b50610406610be3565b60408051600160a060020a039092168252519081900360200190f35b34801561042e57600080fd5b5061016d610bf2565b34801561044357600080fd5b50610206600160a060020a0360043516602435610c29565b34801561046757600080fd5b50610206600160a060020a0360043516610d14565b34801561048857600080fd5b50610206600160a060020a0360043516602435610d29565b3480156104ac57600080fd5b50610253600160a060020a0360043581169060243516610d4d565b3480156104d357600080fd5b50610308600160a060020a03600435166024351515610d78565b3480156104f957600080fd5b50610308600160a060020a0360043516610df3565b34801561051a57600080fd5b50610206600160a060020a0360043516602435610e13565b60408051808201909152600981527f47445420544f4b454e0000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561058357600080fd5b61058d8383610ec6565b9392505050565b60035460009060a060020a900460ff16156105ae57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a350600192915050565b60025490565b60035460009060a060020a900460ff161561063557600080fd5b3360009081526005602052604090205460ff161561069d576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03841660009081526005602052604090205460ff16156106fc576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff161561076d576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b610778848484610f2c565b949350505050565b600354600090819060a060020a900460ff161561079c57600080fd5b50336000908152600460209081526040808320600160a060020a03871684529091529020548083106107f157336000908152600460209081526040808320600160a060020a0388168452909152812055610826565b610801818463ffffffff610f5116565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929181900390910190a35060019392505050565b6b06765c793fa10079d000000081565b601281565b600354600160a060020a031633146108b857600080fd5b60035460a060020a900460ff1615156108d057600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff161561093057600080fd5b3360009081526005602052604090205460ff1615610986576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b61098f81610f68565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156109bc57600080fd5b61058d8383610f89565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146109f857600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b60035460a060020a900460ff1615610a9157600080fd5b3360009081526005602052604090205460ff1615610af9576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206163636f756e7420667265657a6564000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff1615610b58576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b610b628282611078565b5050565b600354600160a060020a03163314610b7d57600080fd5b60035460a060020a900460ff1615610b9457600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4744540000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff1615610c4357600080fd5b3360009081526005602052604090205460ff1615610c99576040805160e560020a62461bcd02815260206004820152601660248201526000805160206115db833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526005602052604090205460ff1615610d0a576040805160e560020a62461bcd02815260206004820152601860248201527f5265636569766572206163636f756e7420667265657a65640000000000000000604482015290519081900360640190fd5b61058d8383611121565b60056020526000908152604090205460ff1681565b60035460009060a060020a900460ff1615610d4357600080fd5b61058d8383611145565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a03163314610d8f57600080fd5b600160a060020a038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600354600160a060020a03163314610e0a57600080fd5b61098f816111de565b60035460009060a060020a900460ff1615610e2d57600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610e61908363ffffffff61125c16565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937fc1033302c4d7c43fc10fb5d86d019f38ef2246edfc17885576bddffb41e07059929081900390910190a350600192915050565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610f4657600080fd5b61077884848461126e565b60008083831115610f6157600080fd5b5050900390565b60035460a060020a900460ff1615610f7f57600080fd5b61098f33826113e3565b336000908152600160209081526040808320600160a060020a0386168452909152812054808310610fdd57336000908152600160209081526040808320600160a060020a0388168452909152812055611012565b610fed818463ffffffff610f5116565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460a060020a900460ff161561108f57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020548111156110bf57600080fd5b600160a060020a03821660009081526004602090815260408083203384529091529020546110f3908263ffffffff610f5116565b600160a060020a0383166000908152600460209081526040808320338452909152902055610b6282826113e3565b60035460009060a060020a900460ff161561113b57600080fd5b61058d83836114fb565b336000908152600160209081526040808320600160a060020a0386168452909152812054611179908363ffffffff61125c16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156111f357600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282018381101561058d57600080fd5b600160a060020a03831660009081526020819052604081205482111561129357600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156112c357600080fd5b600160a060020a03831615156112d857600080fd5b600160a060020a038416600090815260208190526040902054611301908363ffffffff610f5116565b600160a060020a038086166000908152602081905260408082209390935590851681522054611336908363ffffffff61125c16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054611378908363ffffffff610f5116565b600160a060020a03808616600081815260016020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035460a060020a900460ff16156113fa57600080fd5b600160a060020a03821660009081526020819052604090205481111561141f57600080fd5b600160a060020a038216600090815260208190526040902054611448908263ffffffff610f5116565b600160a060020a038316600090815260208190526040902055600254611474908263ffffffff610f5116565b600255604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b3360009081526020819052604081205482111561151757600080fd5b600160a060020a038316151561152c57600080fd5b3360009081526020819052604090205461154c908363ffffffff610f5116565b3360009081526020819052604080822092909255600160a060020a0385168152205461157e908363ffffffff61125c16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050560053656e646572206163636f756e7420667265657a656400000000000000000000a165627a7a72305820d0b15a78e5de1c7614ecd41ac1be698af13ddf1595eb250a0206a5e8bb6921f80029

Deployed Bytecode Sourcemap

17367:1195:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18010:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18010:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18010:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11401:201;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11401:201:0;-1:-1:-1;;;;;11401:201:0;;;;;;;;;;;;;;;;;;;;;;;;;12751:264;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12751:264:0;-1:-1:-1;;;;;12751:264:0;;;;;;;5833:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5833:91:0;;;;;;;;;;;;;;;;;;;;16269:441;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16269:441:0;-1:-1:-1;;;;;16269:441:0;;;;;;;;;;;;14961:552;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14961:552:0;-1:-1:-1;;;;;14961:552:0;;;;;;;18146:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18146:79:0;;;;18102:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18102:35:0;;;;;;;;;;;;;;;;;;;;;;;4324:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4324:105:0;;;;;;16718:209;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16718:209:0;;;;;3651:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3651:26:0;;;;11852:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11852:244:0;-1:-1:-1;;;;;11852:244:0;;;;;;;6145:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6145:107:0;-1:-1:-1;;;;;6145:107:0;;;;;2698:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2698:124:0;;;;12544:199;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12544:199:0;-1:-1:-1;;;;;12544:199:0;;;;;;;;;;16935:318;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16935:318:0;-1:-1:-1;;;;;16935:318:0;;;;;;;4128:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4128:103:0;;;;1855:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1855:20:0;;;;;;;;-1:-1:-1;;;;;1855:20:0;;;;;;;;;;;;;;18058:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18058:37:0;;;;15927:334;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15927:334:0;-1:-1:-1;;;;;15927:334:0;;;;;;;15602:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15602:46:0;-1:-1:-1;;;;;15602:46:0;;;;;11610:234;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11610:234:0;-1:-1:-1;;;;;11610:234:0;;;;;;;6588:191;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6588:191:0;-1:-1:-1;;;;;6588:191:0;;;;;;;;;;15710:209;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15710:209:0;-1:-1:-1;;;;;15710:209:0;;;;;;;;;2997:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2997:111:0;-1:-1:-1;;;;;2997:111:0;;;;;14567:386;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14567:386:0;-1:-1:-1;;;;;14567:386:0;;;;;;;18010:41;;;;;;;;;;;;;;;;;;;:::o;11401:201::-;3835:6;;11534:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;11563:31;11577:8;11587:6;11563:13;:31::i;:::-;11556:38;11401:201;-1:-1:-1;;;11401:201:0:o;12751:264::-;3835:6;;12863:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;12897:10;12885:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12885:33:0;;;;;;;;;;;;:42;;;12943;;;;;;;12885:33;;12897:10;12943:42;;;;;;;;;;;-1:-1:-1;13003:4:0;12751:264;;;;:::o;5833:91::-;5904:12;;5833:91;:::o;16269:441::-;3835:6;;16426:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;16471:10;16457:25;;;;:13;:25;;;;;;;;16456:26;16448:62;;;;;-1:-1:-1;;;;;16448:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16530:20:0;;;;;;:13;:20;;;;;;;;16529:21;16521:56;;;;;-1:-1:-1;;;;;16521:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16521:56:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16597:18:0;;;;;;:13;:18;;;;;;;;16596:19;16588:56;;;;;-1:-1:-1;;;;;16588:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16664:38;16683:5;16690:3;16695:6;16664:18;:38::i;:::-;16657:45;16269:441;-1:-1:-1;;;;16269:441:0:o;14961:552::-;3835:6;;15117:4;;;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;-1:-1:-1;15170:10:0;15158:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15158:33:0;;;;;;;;;;15206:28;;;15202:197;;15263:10;15287:1;15251:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15251:33:0;;;;;;;;;:37;15202:197;;;15357:30;:8;15370:16;15357:30;:12;:30;:::i;:::-;15333:10;15321:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15321:33:0;;;;;;;;;:66;15202:197;15427:10;15449:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15414:69:0;;15449:33;;;;;;;;;;;15414:69;;;;;;;;;15427:10;15414:69;;;;;;;;;;;-1:-1:-1;15501:4:0;;14961:552;-1:-1:-1;;;14961:552:0:o;18146:79::-;18187:38;18146:79;:::o;18102:35::-;18135:2;18102:35;:::o;4324:105::-;2391:5;;-1:-1:-1;;;;;2391:5:0;2377:10;:19;2369:28;;;;;;4011:6;;-1:-1:-1;;;4011:6:0;;;;4003:15;;;;;;;;4382:6;:14;;-1:-1:-1;;4382:14:0;;;4412:9;;;;4391:5;;4412:9;4324:105::o;16718:209::-;3835:6;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;16843:10;16829:25;;;;:13;:25;;;;;;;;16828:26;16820:61;;;;;-1:-1:-1;;;;;16820:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16820:61:0;;;;;;;;;;;;;;;16901:18;16912:6;16901:10;:18::i;:::-;16718:209;:::o;3651:26::-;;;-1:-1:-1;;;3651:26:0;;;;;:::o;11852:244::-;3835:6;;12001:12;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;12038:50;12061:8;12071:16;12038:22;:50::i;6145:107::-;-1:-1:-1;;;;;6228:16:0;6201:7;6228:16;;;;;;;;;;;;6145:107::o;2698:124::-;2391:5;;-1:-1:-1;;;;;2391:5:0;2377:10;:19;2369:28;;;;;;2779:5;;2760:25;;-1:-1:-1;;;;;2779:5:0;;;;2760:25;;2779:5;;2760:25;2796:5;:18;;-1:-1:-1;;2796:18:0;;;2698:124::o;12544:199::-;-1:-1:-1;;;;;12706:19:0;;;12674:7;12706:19;;;:11;:19;;;;;;;;:29;;;;;;;;;;;;;12544:199::o;16935:318::-;3835:6;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;17090:10;17076:25;;;;:13;:25;;;;;;;;17075:26;17067:62;;;;;-1:-1:-1;;;;;17067:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17149:20:0;;;;;;:13;:20;;;;;;;;17148:21;17140:56;;;;;-1:-1:-1;;;;;17140:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17140:56:0;;;;;;;;;;;;;;;17216:29;17231:5;17238:6;17216:14;:29::i;:::-;16935:318;;:::o;4128:103::-;2391:5;;-1:-1:-1;;;;;2391:5:0;2377:10;:19;2369:28;;;;;;3835:6;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;4187:6;:13;;-1:-1:-1;;4187:13:0;-1:-1:-1;;;4187:13:0;;;4216:7;;;;4187:13;;4216:7;4128:103::o;1855:20::-;;;-1:-1:-1;;;;;1855:20:0;;:::o;18058:37::-;;;;;;;;;;;;;;;;;;;:::o;15927:334::-;3835:6;;16056:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;16101:10;16087:25;;;;:13;:25;;;;;;;;16086:26;16078:61;;;;;-1:-1:-1;;;;;16078:61:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16078:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16159:18:0;;;;;;:13;:18;;;;;;;;16158:19;16150:56;;;;;-1:-1:-1;;;;;16150:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16226:27;16241:3;16246:6;16226:14;:27::i;15602:46::-;;;;;;;;;;;;;;;:::o;11610:234::-;3835:6;;11754:12;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;11791:45;11814:8;11824:11;11791:22;:45::i;6588:191::-;-1:-1:-1;;;;;6746:15:0;;;6714:7;6746:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6588:191::o;15710:209::-;2391:5;;-1:-1:-1;;;;;2391:5:0;2377:10;:19;2369:28;;;;;;-1:-1:-1;;;;;15838:21:0;;;;;;:13;:21;;;;;;;;;:30;;-1:-1:-1;;15838:30:0;;;;;;;;;;15884:27;;;;;;;;;;;;;;;;;;;;;15710:209;;:::o;2997:111::-;2391:5;;-1:-1:-1;;;;;2391:5:0;2377:10;:19;2369:28;;;;;;3071:29;3090:9;3071:18;:29::i;14567:386::-;3835:6;;14718:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;14799:10;14787:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14787:33:0;;;;;;;;;;:50;;14825:11;14787:50;:37;:50;:::i;:::-;14752:10;14740:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14740:33:0;;;;;;;;;;;;:98;;;14854:69;;;;;;14740:33;;14854:69;;;;;;;;;;;-1:-1:-1;14941:4:0;14567:386;;;;:::o;7948:206::-;8040:10;8015:4;8032:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8032:29:0;;;;;;;;;;;:38;;;8086;;;;;;;8015:4;;8032:29;;8040:10;;8086:38;;;;;;;;-1:-1:-1;8142:4:0;7948:206;;;;:::o;11161:232::-;3835:6;;11318:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;11347:38;11366:5;11373:3;11378:6;11347:18;:38::i;1241:156::-;1301:7;;1329:8;;;;1321:17;;;;;;-1:-1:-1;;1361:7:0;;;1241:156::o;13142:135::-;3835:6;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;13244:25;13250:10;13262:6;13244:5;:25::i;10289:505::-;10467:10;10418:4;10459:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10459:29:0;;;;;;;;;;10503:28;;;10499:189;;10556:10;10580:1;10548:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10548:29:0;;;;;;;;;:33;10499:189;;;10646:30;:8;10659:16;10646:30;:12;:30;:::i;:::-;10622:10;10614:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10614:29:0;;;;;;;;;:62;10499:189;10712:10;10734:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10703:61:0;;10734:29;;;;;;;;;;;10703:61;;;;;;;;;10712:10;10703:61;;;;;;;;;;;-1:-1:-1;10782:4:0;;10289:505;-1:-1:-1;;;10289:505:0:o;13534:475::-;3835:6;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;-1:-1:-1;;;;;13684:18:0;;;;;;:11;:18;;;;;;;;13703:10;13684:30;;;;;;;;13674:40;;;13666:49;;;;;;-1:-1:-1;;;;;13928:18:0;;;;;;:11;:18;;;;;;;;13947:10;13928:30;;;;;;;;:42;;13963:6;13928:42;:34;:42;:::i;:::-;-1:-1:-1;;;;;13895:18:0;;;;;;:11;:18;;;;;;;;13914:10;13895:30;;;;;;;:75;13981:20;13907:5;13994:6;13981:5;:20::i;10960:193::-;3835:6;;11089:4;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;11118:27;11133:3;11138:6;11118:14;:27::i;9466:343::-;9663:10;9590:4;9655:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9655:29:0;;;;;;;;;;:46;;9689:11;9655:46;:33;:46;:::i;:::-;9620:10;9612:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9612:29:0;;;;;;;;;;;;:90;;;9718:61;;;;;;9612:29;;9718:61;;;;;;;;;;;-1:-1:-1;9797:4:0;9466:343;;;;:::o;3256:189::-;-1:-1:-1;;;;;3331:23:0;;;;3323:32;;;;;;3392:5;;3371:38;;-1:-1:-1;;;;;3371:38:0;;;;3392:5;;3371:38;;3392:5;;3371:38;3420:5;:17;;-1:-1:-1;;3420:17:0;-1:-1:-1;;;;;3420:17:0;;;;;;;;;;3256:189::o;1472:155::-;1532:7;1564;;;1590;;;;1582:16;;;;;8446:545;-1:-1:-1;;;;;8620:15:0;;8580:4;8620:15;;;;;;;;;;;8610:25;;;8602:34;;;;;;-1:-1:-1;;;;;8665:14:0;;;;;;:7;:14;;;;;;;;8680:10;8665:26;;;;;;;;8655:36;;;8647:45;;;;;;-1:-1:-1;;;;;8711:17:0;;;;8703:26;;;;;;-1:-1:-1;;;;;8760:15:0;;:8;:15;;;;;;;;;;;:27;;8780:6;8760:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;8742:15:0;;;:8;:15;;;;;;;;;;;:45;;;;8814:13;;;;;;;:25;;8832:6;8814:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;8798:13:0;;;:8;:13;;;;;;;;;;;:41;;;;8879:14;;;;;:7;:14;;;;;8894:10;8879:26;;;;;;;:38;;8910:6;8879:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;8850:14:0;;;;;;;:7;:14;;;;;;;;8865:10;8850:26;;;;;;;;:67;;;;8933:28;;;;;;;;;;;8850:14;;8933:28;;;;;;;;;;;-1:-1:-1;8979:4:0;8446:545;;;;;:::o;14017:542::-;3835:6;;-1:-1:-1;;;3835:6:0;;;;3834:7;3826:16;;;;;;-1:-1:-1;;;;;14165:14:0;;:8;:14;;;;;;;;;;;14155:24;;;14147:33;;;;;;-1:-1:-1;;;;;14391:14:0;;:8;:14;;;;;;;;;;;:26;;14410:6;14391:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;14374:14:0;;:8;:14;;;;;;;;;;:43;14443:12;;:24;;14460:6;14443:24;:16;:24;:::i;:::-;14428:12;:39;14483:18;;;;;;;;-1:-1:-1;;;;;14483:18:0;;;;;;;;;;;;;14517:34;;;;;;;;14540:1;;-1:-1:-1;;;;;14517:34:0;;;;;;;;;;;;14017:542;;:::o;6952:355::-;7059:10;7015:4;7050:20;;;;;;;;;;;7040:30;;;7032:39;;;;;;-1:-1:-1;;;;;7090:17:0;;;;7082:26;;;;;;7153:10;7144:8;:20;;;;;;;;;;;:32;;7169:6;7144:32;:24;:32;:::i;:::-;7130:10;7121:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;7203:13:0;;;;;;:25;;7221:6;7203:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;7187:13:0;;:8;:13;;;;;;;;;;;;:41;;;;7244:33;;;;;;;7187:13;;7253:10;;7244:33;;;;;;;;;;-1:-1:-1;7295:4:0;6952:355;;;;:::o

Swarm Source

bzzr://d0b15a78e5de1c7614ecd41ac1be698af13ddf1595eb250a0206a5e8bb6921f8

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.