ETH Price: $2,145.01 (+4.77%)

Contract

0x0B8e1fAdfABA9651a856460e984c82F92EB5435a
 

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
Transfer115160422020-12-24 11:30:171915 days ago1608809417IN
Fake_Phishing290590
0 ETH0.00241153110
Transfer115156342020-12-24 10:00:001915 days ago1608804000IN
Fake_Phishing290590
0 ETH0.00406153110
Transfer94510252020-02-09 21:35:172234 days ago1581284117IN
Fake_Phishing290590
0 ETH0.000021921
Transfer94480622020-02-09 10:35:402234 days ago1581244540IN
Fake_Phishing290590
0 ETH0.0006749913
Transfer94408072020-02-08 7:44:392235 days ago1581147879IN
Fake_Phishing290590
0 ETH0.000024111.1
Transfer94408072020-02-08 7:44:392235 days ago1581147879IN
Fake_Phishing290590
0 ETH0.000024111.1
Transfer91245192019-12-18 7:25:042287 days ago1576653904IN
Fake_Phishing290590
0 ETH0.000184555
Transfer90902082019-12-11 18:48:442294 days ago1576090124IN
Fake_Phishing290590
0 ETH0.000051911
Transfer90378002019-12-02 11:21:212303 days ago1575285681IN
Fake_Phishing290590
0 ETH0.000077481.5
Transfer90209122019-11-29 11:32:502306 days ago1575027170IN
Fake_Phishing290590
0 ETH0.000051721
Transfer88649212019-11-03 11:37:372332 days ago1572781057IN
Fake_Phishing290590
0 ETH0.000051721
Transfer88147452019-10-26 10:01:532340 days ago1572084113IN
Fake_Phishing290590
0 ETH0.000051781
Transfer87833692019-10-21 10:17:012345 days ago1571653021IN
Fake_Phishing290590
0 ETH0.000051651
Transfer87543632019-10-16 20:32:272350 days ago1571257947IN
Fake_Phishing290590
0 ETH0.000051651
Transfer87480882019-10-15 20:46:022351 days ago1571172362IN
Fake_Phishing290590
0 ETH0.000051721
Transfer87450872019-10-15 9:32:132351 days ago1571131933IN
Fake_Phishing290590
0 ETH0.000051721
Transfer87450842019-10-15 9:31:542351 days ago1571131914IN
Fake_Phishing290590
0 ETH0.000051651
Transfer87450762019-10-15 9:29:432351 days ago1571131783IN
Fake_Phishing290590
0 ETH0.000051651
Transfer87206282019-10-11 13:21:402355 days ago1570800100IN
Fake_Phishing290590
0 ETH0.000051721
Transfer87206262019-10-11 13:21:102355 days ago1570800070IN
Fake_Phishing290590
0 ETH0.000051651
Transfer80794232019-07-03 16:12:302455 days ago1562170350IN
Fake_Phishing290590
0 ETH0.0005178710
Transfer80476352019-06-28 17:20:162460 days ago1561742416IN
Fake_Phishing290590
0 ETH0.0010357420
Transfer80465842019-06-28 13:28:592460 days ago1561728539IN
Fake_Phishing290590
0 ETH0.000108615
Transfer80462992019-06-28 12:26:482460 days ago1561724808IN
Fake_Phishing290590
0 ETH0.0005178710
Transfer80461312019-06-28 11:44:142460 days ago1561722254IN
Fake_Phishing290590
0 ETH0.0005165910
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:
BIPToken

Compiler Version
v0.5.9+commit.e560f70d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-06-23
*/

pragma solidity ^0.5.9;
 
/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */ 
library SafeMath{
    function mul(uint a, uint b) internal pure returns (uint){
        uint c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }
 
    function div(uint a, uint b) internal pure returns (uint){
        uint c = a / b;
        return c;
    }
 
    function sub(uint a, uint b) internal pure returns (uint){
        assert(b <= a); 
        return a - b; 
    } 
  
    function add(uint a, uint b) internal pure returns (uint){ 
        uint c = a + b; assert(c >= a);
        return c;
    }
}

/**
 * @title BIP Token token
 * @dev ERC20 Token implementation, with its own specific
 */
contract BIPToken{
    using SafeMath for uint;
    
    string public constant name = "Blockchain Invest Platform Token";
    string public constant symbol = "BIP";
    uint32 public constant decimals = 18;

    address public constant addressICO = 0x6712397d604410b0F99A205Aa8f7ac1B1a358F91;
    address public constant addressInvestors = 0x83DBcaDD8e9c7535DD0Dc42356B8e0AcDccb8c2b;
    address public constant addressMarketing = 0x01D98aa48D98bae8F1E30Ebf2A31b532018C3C61;
    address public constant addressPreICO = 0xE556E2Dd0fE094032FD7242c7880F140c89f17B8;
    address public constant addressTeam = 0xa3C9E790979D226435Da43022e41AF1CA7f8080B;
    address public constant addressBounty = 0x9daf97360086e1454ea8379F61ae42ECe0935740;
    
    uint public totalSupply = 200000000 * 1 ether;
    mapping(address => uint) balances;
    mapping (address => mapping (address => uint)) internal allowed;
    
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);

    /** 
     * @dev Initial token transfers.
     */
    constructor() public{
        balances[msg.sender] = totalSupply;
        emit Transfer(address(0), msg.sender, totalSupply);

        _transfer(addressICO,       124000000 * 1 ether);
        _transfer(addressInvestors,  32000000 * 1 ether);
        _transfer(addressMarketing,  16000000 * 1 ether);
        _transfer(addressPreICO,     14000000 * 1 ether);
        _transfer(addressTeam,        8000000 * 1 ether);
        _transfer(addressBounty,      6000000 * 1 ether);
    }
    
    /** 
     * @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 (uint){
        return balances[_owner];
    }
 
    /**
     * @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, uint _value) private returns (bool){
        require(msg.sender != address(0));
        require(_to != address(0));
        require(_value > 0 && _value <= balances[msg.sender]);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true; 
    }

    /**
     * @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, uint _value) public returns (bool){
        return _transfer(_to, _value);
    } 
    
    /**
     * @dev Transfer several token for a specified addresses
     * @param _to The array of addresses to transfer to.
     * @param _value The array of amounts to be transferred.
     */ 
    function massTransfer(address[] memory _to, uint[] memory _value) public returns (bool){
        require(_to.length == _value.length);

        uint len = _to.length;
        for(uint i = 0; i < len; i++){
            if(!_transfer(_to[i], _value[i])){
                return false;
            }
        }
        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, uint _value) public returns (bool){
        require(msg.sender != address(0));
        require(_to != address(0));
        require(_value > 0 && _value <= balances[_from] && _value <= allowed[_from][msg.sender]);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }
 
    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint _value) public returns (bool){
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
 
    /** 
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public view returns (uint){
        return allowed[_owner][_spender]; 
    } 
 
    /**
     * @dev Increase approved amount of tokents that could be spent on behalf of msg.sender.
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to be spent.
     */
    function increaseApproval(address _spender, uint _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 approved amount of tokents that could be spent on behalf of msg.sender.
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to be spent.
     */
    function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool){
        uint oldValue = allowed[msg.sender][_spender];
        if(_subtractedValue > oldValue){
            allowed[msg.sender][_spender] = 0;
        }else{
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":false,"inputs":[{"name":"_to","type":"address[]"},{"name":"_value","type":"uint256[]"}],"name":"massTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"addressMarketing","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressInvestors","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressICO","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"addressTeam","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"addressBounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"addressPreICO","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

60806040526aa56fa5b99019a5c80000006000553480156200002057600080fd5b50600080543380835260016020908152604080852084905580519384525191939260008051602062000df7833981519152929081900390910190a36200008f736712397d604410b0f99a205aa8f7ac1b1a358f916a669205782b4319fc0000006001600160e01b036200019f16565b50620000c47383dbcadd8e9c7535dd0dc42356b8e0acdccb8c2b6a1a784379d99db4200000006001600160e01b036200019f16565b50620000f97301d98aa48d98bae8f1e30ebf2a31b532018c3c616a0d3c21bcecceda100000006001600160e01b036200019f16565b506200012e73e556e2dd0fe094032fd7242c7880f140c89f17b86a0b949d854f34fece0000006001600160e01b036200019f16565b506200016373a3c9e790979d226435da43022e41af1ca7f8080b6a069e10de76676d080000006001600160e01b036200019f16565b5062000198739daf97360086e1454ea8379f61ae42ece09357406a04f68ca6d8cd91c60000006001600160e01b036200019f16565b50620002c6565b600033620001ac57600080fd5b6001600160a01b038316620001c057600080fd5b600082118015620001e05750336000908152600160205260409020548211155b620001ea57600080fd5b336000908152600160209081526040909120546200021391849062000acb6200029c821b17901c565b336000908152600160209081526040808320939093556001600160a01b0386168252919020546200024f91849062000add620002af821b17901c565b6001600160a01b03841660008181526001602090815260409182902093909355805185815290519192339260008051602062000df78339815191529281900390910190a350600192915050565b600082821115620002a957fe5b50900390565b600082820183811015620002bf57fe5b9392505050565b610b2180620002d66000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063562e9df9116100a257806395d89b411161007157806395d89b4114610406578063a9059cbb1461040e578063d68dfd411461043a578063d73dd62314610442578063dd62ed3e1461046e57610116565b8063562e9df9146103a457806366188463146103ac5780636ae76777146103d857806370a08231146103e057610116565b80630c2c70a4116100e95780630c2c70a4146103235780630f2e757b1461032b57806318160ddd1461033357806323b872dd1461034d578063313ce5671461038357610116565b806302af20951461011b57806306fdde0314610256578063095ea7b3146102d35780630abdc640146102ff575b600080fd5b6102426004803603604081101561013157600080fd5b81019060208101813564010000000081111561014c57600080fd5b82018360208201111561015e57600080fd5b8035906020019184602083028401116401000000008311171561018057600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156101d057600080fd5b8201836020820111156101e257600080fd5b8035906020019184602083028401116401000000008311171561020457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061049c945050505050565b604080519115158252519081900360200190f35b61025e61050d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610298578181015183820152602001610280565b50505050905090810190601f1680156102c55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610242600480360360408110156102e957600080fd5b506001600160a01b038135169060200135610546565b6103076105ac565b604080516001600160a01b039092168252519081900360200190f35b6103076105c4565b6103076105dc565b61033b6105f4565b60408051918252519081900360200190f35b6102426004803603606081101561036357600080fd5b506001600160a01b038135811691602081013590911690604001356105fa565b61038b610786565b6040805163ffffffff9092168252519081900360200190f35b61030761078b565b610242600480360360408110156103c257600080fd5b506001600160a01b0381351690602001356107a3565b610307610893565b61033b600480360360208110156103f657600080fd5b50356001600160a01b03166108ab565b61025e6108c6565b6102426004803603604081101561042457600080fd5b506001600160a01b0381351690602001356108e5565b6103076108f8565b6102426004803603604081101561045857600080fd5b506001600160a01b038135169060200135610910565b61033b6004803603604081101561048457600080fd5b506001600160a01b03813581169160200135166109a9565b600081518351146104ac57600080fd5b825160005b81811015610500576104e98582815181106104c857fe5b60200260200101518583815181106104dc57fe5b60200260200101516109d4565b6104f857600092505050610507565b6001016104b1565b5060019150505b92915050565b6040518060400160405280602081526020017f426c6f636b636861696e20496e7665737420506c6174666f726d20546f6b656e81525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b7301d98aa48d98bae8f1e30ebf2a31b532018c3c6181565b7383dbcadd8e9c7535dd0dc42356b8e0acdccb8c2b81565b736712397d604410b0f99a205aa8f7ac1b1a358f9181565b60005481565b60003361060657600080fd5b6001600160a01b03831661061957600080fd5b60008211801561064157506001600160a01b0384166000908152600160205260409020548211155b801561067057506001600160a01b03841660009081526002602090815260408083203384529091529020548211155b61067957600080fd5b6001600160a01b0384166000908152600160205260409020546106a2908363ffffffff610acb16565b6001600160a01b0380861660009081526001602052604080822093909355908516815220546106d7908363ffffffff610add16565b6001600160a01b03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461071b908363ffffffff610acb16565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b73a3c9e790979d226435da43022e41af1ca7f8080b81565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808311156107f8573360009081526002602090815260408083206001600160a01b038816845290915281205561082d565b610808818463ffffffff610acb16565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b739daf97360086e1454ea8379f61ae42ece093574081565b6001600160a01b031660009081526001602052604090205490565b6040518060400160405280600381526020016204249560ec1b81525081565b60006108f183836109d4565b9392505050565b73e556e2dd0fe094032fd7242c7880f140c89f17b881565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610944908363ffffffff610add16565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000336109e057600080fd5b6001600160a01b0383166109f357600080fd5b600082118015610a125750336000908152600160205260409020548211155b610a1b57600080fd5b33600090815260016020526040902054610a3b908363ffffffff610acb16565b33600090815260016020526040808220929092556001600160a01b03851681522054610a6d908363ffffffff610add16565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082821115610ad757fe5b50900390565b6000828201838110156108f157fefea265627a7a72305820fc5a737070edd28838b05410f0dda029e495d8ff65c433b2d31a30389fd0bf9664736f6c63430005090032ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063562e9df9116100a257806395d89b411161007157806395d89b4114610406578063a9059cbb1461040e578063d68dfd411461043a578063d73dd62314610442578063dd62ed3e1461046e57610116565b8063562e9df9146103a457806366188463146103ac5780636ae76777146103d857806370a08231146103e057610116565b80630c2c70a4116100e95780630c2c70a4146103235780630f2e757b1461032b57806318160ddd1461033357806323b872dd1461034d578063313ce5671461038357610116565b806302af20951461011b57806306fdde0314610256578063095ea7b3146102d35780630abdc640146102ff575b600080fd5b6102426004803603604081101561013157600080fd5b81019060208101813564010000000081111561014c57600080fd5b82018360208201111561015e57600080fd5b8035906020019184602083028401116401000000008311171561018057600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156101d057600080fd5b8201836020820111156101e257600080fd5b8035906020019184602083028401116401000000008311171561020457600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061049c945050505050565b604080519115158252519081900360200190f35b61025e61050d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610298578181015183820152602001610280565b50505050905090810190601f1680156102c55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610242600480360360408110156102e957600080fd5b506001600160a01b038135169060200135610546565b6103076105ac565b604080516001600160a01b039092168252519081900360200190f35b6103076105c4565b6103076105dc565b61033b6105f4565b60408051918252519081900360200190f35b6102426004803603606081101561036357600080fd5b506001600160a01b038135811691602081013590911690604001356105fa565b61038b610786565b6040805163ffffffff9092168252519081900360200190f35b61030761078b565b610242600480360360408110156103c257600080fd5b506001600160a01b0381351690602001356107a3565b610307610893565b61033b600480360360208110156103f657600080fd5b50356001600160a01b03166108ab565b61025e6108c6565b6102426004803603604081101561042457600080fd5b506001600160a01b0381351690602001356108e5565b6103076108f8565b6102426004803603604081101561045857600080fd5b506001600160a01b038135169060200135610910565b61033b6004803603604081101561048457600080fd5b506001600160a01b03813581169160200135166109a9565b600081518351146104ac57600080fd5b825160005b81811015610500576104e98582815181106104c857fe5b60200260200101518583815181106104dc57fe5b60200260200101516109d4565b6104f857600092505050610507565b6001016104b1565b5060019150505b92915050565b6040518060400160405280602081526020017f426c6f636b636861696e20496e7665737420506c6174666f726d20546f6b656e81525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b7301d98aa48d98bae8f1e30ebf2a31b532018c3c6181565b7383dbcadd8e9c7535dd0dc42356b8e0acdccb8c2b81565b736712397d604410b0f99a205aa8f7ac1b1a358f9181565b60005481565b60003361060657600080fd5b6001600160a01b03831661061957600080fd5b60008211801561064157506001600160a01b0384166000908152600160205260409020548211155b801561067057506001600160a01b03841660009081526002602090815260408083203384529091529020548211155b61067957600080fd5b6001600160a01b0384166000908152600160205260409020546106a2908363ffffffff610acb16565b6001600160a01b0380861660009081526001602052604080822093909355908516815220546106d7908363ffffffff610add16565b6001600160a01b03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461071b908363ffffffff610acb16565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b73a3c9e790979d226435da43022e41af1ca7f8080b81565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808311156107f8573360009081526002602090815260408083206001600160a01b038816845290915281205561082d565b610808818463ffffffff610acb16565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b739daf97360086e1454ea8379f61ae42ece093574081565b6001600160a01b031660009081526001602052604090205490565b6040518060400160405280600381526020016204249560ec1b81525081565b60006108f183836109d4565b9392505050565b73e556e2dd0fe094032fd7242c7880f140c89f17b881565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610944908363ffffffff610add16565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000336109e057600080fd5b6001600160a01b0383166109f357600080fd5b600082118015610a125750336000908152600160205260409020548211155b610a1b57600080fd5b33600090815260016020526040902054610a3b908363ffffffff610acb16565b33600090815260016020526040808220929092556001600160a01b03851681522054610a6d908363ffffffff610add16565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082821115610ad757fe5b50900390565b6000828201838110156108f157fefea265627a7a72305820fc5a737070edd28838b05410f0dda029e495d8ff65c433b2d31a30389fd0bf9664736f6c63430005090032

Deployed Bytecode Sourcemap

776:6386:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;776:6386:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3837:343;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3837:343:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;3837:343:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3837:343:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3837:343:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;3837:343:0;;;;;;;;-1:-1:-1;3837:343:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;3837:343:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;3837:343:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;3837:343:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;3837:343:0;;-1:-1:-1;3837:343:0;;-1:-1:-1;;;;;3837:343:0:i;:::-;;;;;;;;;;;;;;;;;;836:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;836:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5259:202;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5259:202:0;;;;;;;;:::i;1174:85::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1174:85:0;;;;;;;;;;;;;;1082;;;:::i;996:79::-;;;:::i;1537:45::-;;;:::i;:::-;;;;;;;;;;;;;;;;4483:524;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4483:524:0;;;;;;;;;;;;;;;;;:::i;951:36::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1355:80;;;:::i;6714:445::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6714:445:0;;;;;;;;:::i;1442:82::-;;;:::i;2640:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2640:103:0;-1:-1:-1;;;;;2640:103:0;;:::i;907:37::-;;;:::i;3510:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3510:113:0;;;;;;;;:::i;1266:82::-;;;:::i;6182:281::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6182:281:0;;;;;;;;:::i;5804:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5804:131:0;;;;;;;;;;:::i;3837:343::-;3919:4;3957:6;:13;3943:3;:10;:27;3935:36;;;;;;3995:10;;3984:8;4016:135;4036:3;4032:1;:7;4016:135;;;4064:28;4074:3;4078:1;4074:6;;;;;;;;;;;;;;4082;4089:1;4082:9;;;;;;;;;;;;;;4064;:28::i;:::-;4060:80;;4119:5;4112:12;;;;;;4060:80;4041:3;;4016:135;;;;4168:4;4161:11;;;3837:343;;;;;:::o;836:64::-;;;;;;;;;;;;;;;;;;;:::o;5259:202::-;5347:10;5323:4;5339:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5339:29:0;;;;;;;;;;;:38;;;5393;;;;;;;5323:4;;5339:29;;5347:10;;5393:38;;;;;;;;-1:-1:-1;5449:4:0;5259:202;;;;:::o;1174:85::-;1217:42;1174:85;:::o;1082:::-;1125:42;1082:85;:::o;996:79::-;1033:42;996:79;:::o;1537:45::-;;;;:::o;4483:524::-;4562:4;4586:10;4578:33;;;;;;-1:-1:-1;;;;;4630:17:0;;4622:26;;;;;;4676:1;4667:6;:10;:39;;;;-1:-1:-1;;;;;;4691:15:0;;;;;;:8;:15;;;;;;4681:25;;;4667:39;:79;;;;-1:-1:-1;;;;;;4720:14:0;;;;;;:7;:14;;;;;;;;4735:10;4720:26;;;;;;;;4710:36;;;4667:79;4659:88;;;;;;-1:-1:-1;;;;;4776:15:0;;;;;;:8;:15;;;;;;:27;;4796:6;4776:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4758:15:0;;;;;;;:8;:15;;;;;;:45;;;;4830:13;;;;;;;:25;;4848:6;4830:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4814:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;4895:14;;;;;:7;:14;;;;;4910:10;4895:26;;;;;;;:38;;4926:6;4895:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4866:14:0;;;;;;;:7;:14;;;;;;;;4881:10;4866:26;;;;;;;;:67;;;;4949:28;;;;;;;;;;;4866:14;;4949:28;;;;;;;;;;;-1:-1:-1;4995:4:0;4483:524;;;;;:::o;951:36::-;985:2;951:36;:::o;1355:80::-;1393:42;1355:80;:::o;6714:445::-;6837:10;6797:4;6829:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6829:29:0;;;;;;;;;;6872:27;;;6869:184;;;6923:10;6947:1;6915:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6915:29:0;;;;;;;;;:33;6869:184;;;7011:30;:8;7024:16;7011:30;:12;:30;:::i;:::-;6987:10;6979:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6979:29:0;;;;;;;;;:62;6869:184;7077:10;7099:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7068:61:0;;7099:29;;;;;;;;;;;7068:61;;;;;;;;;7077:10;7068:61;;;;;;;;;;;-1:-1:-1;7147:4:0;;6714:445;-1:-1:-1;;;6714:445:0:o;1442:82::-;1482:42;1442:82;:::o;2640:103::-;-1:-1:-1;;;;;2719:16:0;2696:4;2719:16;;;:8;:16;;;;;;;2640:103::o;907:37::-;;;;;;;;;;;;;;-1:-1:-1;;;907:37:0;;;;:::o;3510:113::-;3570:4;3593:22;3603:3;3608:6;3593:9;:22::i;:::-;3586:29;3510:113;-1:-1:-1;;;3510:113:0:o;1266:82::-;1306:42;1266:82;:::o;6182:281::-;6316:10;6260:4;6308:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6308:29:0;;;;;;;;;;:46;;6342:11;6308:46;:33;:46;:::i;:::-;6284:10;6276:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6276:29:0;;;;;;;;;;;;:78;;;6370:61;;;;;;6276:29;;6370:61;;;;;;;;;;;-1:-1:-1;6450:4:0;6182:281;;;;:::o;5804:131::-;-1:-1:-1;;;;;5901:15:0;;;5878:4;5901:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5804:131::o;2922:410::-;2984:4;3008:10;3000:33;;;;;;-1:-1:-1;;;;;3052:17:0;;3044:26;;;;;;3098:1;3089:6;:10;:44;;;;-1:-1:-1;3122:10:0;3113:20;;;;:8;:20;;;;;;3103:30;;;3089:44;3081:53;;;;;;3177:10;3168:20;;;;:8;:20;;;;;;:32;;3193:6;3168:32;:24;:32;:::i;:::-;3154:10;3145:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3227:13:0;;;;;;:25;;3245:6;3227:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3211:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;3268:33;;;;;;;3211:13;;3277:10;;3268:33;;;;;;;;;;-1:-1:-1;3319:4:0;2922:410;;;;:::o;421:115::-;473:4;501:1;496;:6;;489:14;;;;-1:-1:-1;522:5:0;;;421:115::o;547:126::-;599:4;625:5;;;639:6;;;;632:14;;

Swarm Source

bzzr://fc5a737070edd28838b05410f0dda029e495d8ff65c433b2d31a30389fd0bf96

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.