ETH Price: $2,187.78 (-5.73%)

Contract

0x4F6367AE8cb512663Bd82c0467c3cA2b76daeFF2
 

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
Transfer89354042019-11-15 0:13:252315 days ago1573776805IN
0x4F6367AE...b76daeFF2
0 ETH0.000273245.25
Transfer86361632019-09-28 8:10:262363 days ago1569658226IN
0x4F6367AE...b76daeFF2
0 ETH0.0006011311.55
Transfer84058092019-08-23 9:42:592399 days ago1566553379IN
0x4F6367AE...b76daeFF2
0 ETH0.000422098.1
Transfer84058092019-08-23 9:42:592399 days ago1566553379IN
0x4F6367AE...b76daeFF2
0 ETH0.000421578.1
Transfer84057542019-08-23 9:31:412399 days ago1566552701IN
0x4F6367AE...b76daeFF2
0 ETH0.000422098.1
Transfer83931512019-08-21 10:30:292401 days ago1566383429IN
0x4F6367AE...b76daeFF2
0 ETH0.000311896
Transfer83929742019-08-21 9:51:102401 days ago1566381070IN
0x4F6367AE...b76daeFF2
0 ETH0.000312276
Transfer83900682019-08-20 22:58:172401 days ago1566341897IN
0x4F6367AE...b76daeFF2
0 ETH0.000259915
Transfer83875722019-08-20 13:47:002402 days ago1566308820IN
0x4F6367AE...b76daeFF2
0 ETH0.0007005318.91
Transfer83875722019-08-20 13:47:002402 days ago1566308820IN
0x4F6367AE...b76daeFF2
0 ETH0.0004482512.1
Transfer83875722019-08-20 13:47:002402 days ago1566308820IN
0x4F6367AE...b76daeFF2
0 ETH0.000155943
Transfer83875722019-08-20 13:47:002402 days ago1566308820IN
0x4F6367AE...b76daeFF2
0 ETH0.000156333
Transfer83830732019-08-19 20:49:552402 days ago1566247795IN
0x4F6367AE...b76daeFF2
0 ETH0.000742220

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:
bitzinex

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.25;

/**
 * @title BitZinex
 */
library SafeMath {

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

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

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

    /**
    * @dev Adds two numbers, throws on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

contract ForeignToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract bitzinex is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    mapping (address => bool) public Claimed; 

    string public constant name = "BitZinex";
    string public constant symbol = "BNEX";
    uint public constant decimals = 6;
    uint public deadline = now + 370 * 1 days;
    uint public round2 = now + 320 * 1 days;
    uint public round1 = now + 220 * 1 days;
    
    uint256 public totalSupply = 400000000000000;
    uint256 public totalDistributed;
    uint256 public constant requestMinimum = 1 ether / 400; // 0.00025 Ether
    uint256 public tokensPerEth = 2000000000;
    uint public target0drop = 10;
    uint public progress0drop = 0;
    
   
    address multisig = 0xDf65d5d0E5b91D1C56D3ee57C9d2D6DE5601f4Cf
    ;


    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    
    event Airdrop(address indexed _owner, uint _amount, uint _balance);

    event TokensPerEthUpdated(uint _tokensPerEth);
    
    event Burn(address indexed burner, uint256 value);
    
    event Add(uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    constructor() public {
        uint256 teamFund = 400000000000000 ;
        owner = msg.sender;
        distr(owner, teamFund);
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);        
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }
    
    function Distribute(address _participant, uint _amount) onlyOwner internal {

        require( _amount > 0 );      
        require( totalDistributed < totalSupply );
        balances[_participant] = balances[_participant].add(_amount);
        totalDistributed = totalDistributed.add(_amount);

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }

        // log
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }
    
    function DistributeAirdrop(address _participant, uint _amount) onlyOwner external {        
        Distribute(_participant, _amount);
    }

    function DistributeAirdropMultiple(address[] _addresses, uint _amount) onlyOwner external {        
        for (uint i = 0; i < _addresses.length; i++) Distribute(_addresses[i], _amount);
    }

    function updateTokensPerEth(uint _tokensPerEth) public onlyOwner {        
        tokensPerEth = _tokensPerEth;
        emit TokensPerEthUpdated(_tokensPerEth);
    }
           
    function () external payable {
        getTokens();
     }

        
    function getTokens() payable canDistr  public {
        uint256 tokens = 0;
        uint256 bonus = 0;
        uint256 countbonus = 0;
        uint256 bonusCond1 = 10 ether / 10;
        uint256 bonusCond2 = 10 ether;
        uint256 bonusCond3 = 50 ether;

        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;

        if (msg.value >= requestMinimum && now < deadline && now < round1 && now < round2) {
            if(msg.value >= bonusCond1 && msg.value < bonusCond2){
                countbonus = tokens * 0 / 100;
            }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 20 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 35 / 100;
            }
        }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){
            if(msg.value >= bonusCond2 && msg.value < bonusCond3){
                countbonus = tokens * 20 / 100;
            }else if(msg.value >= bonusCond3){
                countbonus = tokens * 35 / 100;
            }
        }else{
            countbonus = 0;
        }

        bonus = tokens + countbonus;
        
        if (tokens == 0) {
            uint256 valdrop = 30e8;
            if (Claimed[investor] == false && progress0drop <= target0drop ) {
                distr(investor, valdrop);
                Claimed[investor] = true;
                progress0drop++;
            }else{
                require( msg.value >= requestMinimum );
            }
        }else if(tokens > 0 && msg.value >= requestMinimum){
            if( now >= deadline && now >= round1 && now < round2){
                distr(investor, tokens);
            }else{
                if(msg.value >= bonusCond1){
                    distr(investor, bonus);
                }else{
                    distr(investor, tokens);
                }   
            }
        }else{
            require( msg.value >= requestMinimum );
        }

        if (totalDistributed >= totalSupply) {
            distributionFinished = true;
        }
        //here we will send all wei to your address
        multisig.transfer(msg.value);
    }
    
    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        ForeignToken t = ForeignToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdrawAll() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }

    function withdraw(uint256 _wdamount) onlyOwner public {
        uint256 wantAmount = _wdamount;
        owner.transfer(wantAmount);
    }

    function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
    
    function add(uint256 _value) onlyOwner public {
        uint256 counter = totalSupply.add(_value);
        totalSupply = counter; 
        emit Add(_value);
    }
    
    
    function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) {
        ForeignToken token = ForeignToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"add","outputs":[],"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":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wdamount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round2","outputs":[{"name":"","type":"uint256"}],"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":"requestMinimum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"round1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"progress0drop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"Claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_tokenContract","type":"address"}],"name":"withdrawForeignTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"target0drop","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"DistributeAirdropMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","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":false,"name":"value","type":"uint256"}],"name":"Add","type":"event"}]

60806040526001805433600160a060020a031991821617909155426301e7cb0081016005556301a5e00081016006556301220a000160075566016bcc41e900006008556377359400600a908155600b556000600c55600d805473df65d5d0e5b91d1c56d3ee57c9d2d6de5601f4cf92169190911760a060020a60ff02191690553480156200008c57600080fd5b5060018054600160a060020a03191633179081905566016bcc41e9000090620000c890600160a060020a031682640100000000620000d0810204565b5050620001ff565b600d5460009074010000000000000000000000000000000000000000900460ff1615620000fc57600080fd5b6009546200011990836401000000006200131a620001eb82021704565b600955600160a060020a0383166000908152600260205260409020546200014f90836401000000006200131a620001eb82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b81810182811015620001f957fe5b92915050565b6114c6806200020f6000396000f30060806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf5780632e1a7d4d146102d4578063313ce567146102ec57806342966c6814610301578063532b581c1461031957806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d578063853828b6146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a961084d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610884565b604080519115158252519081900360200190f35b34801561026257600080fd5b5061019260043561092c565b34801561027a57600080fd5b50610283610999565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a036004358116906024351660443561099f565b3480156102cb57600080fd5b50610283610b12565b3480156102e057600080fd5b50610192600435610b18565b3480156102f857600080fd5b50610283610b72565b34801561030d57600080fd5b50610192600435610b77565b34801561032557600080fd5b50610283610c56565b34801561033a57600080fd5b50610283600160a060020a0360043516610c5c565b34801561035b57600080fd5b50610283610c77565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c82565b34801561039457600080fd5b50610283610ca7565b3480156103a957600080fd5b50610283610cad565b3480156103be57600080fd5b50610192610cb3565b3480156103d357600080fd5b506101a9610d10565b3480156103e857600080fd5b50610242610d47565b3480156103fd57600080fd5b50610192600435610dcb565b34801561041557600080fd5b50610242600160a060020a0360043516602435610e1d565b34801561043957600080fd5b50610242600160a060020a0360043516610efc565b34801561045a57600080fd5b50610242610f11565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610f21565b34801561049657600080fd5b50610283610fd2565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610fd8565b3480156104d257600080fd5b50610242600160a060020a0360043516611003565b3480156104f357600080fd5b50610283611157565b34801561050857600080fd5b5061028361115d565b34801561051d57600080fd5b50610192600160a060020a0360043516611163565b34801561053e57600080fd5b506101926024600480358281019291013590356111b5565b600080600080600080600080600d60149054906101000a900460ff1615151561057e57600080fd5b600a5460009850889750879650670de0b6b3a76400009550678ac7230489e8000094506802b5e3af16b1880000935085906105bf903463ffffffff61120e16565b8115156105c857fe5b0497503391506608e1bc9bf0400034101580156105e6575060055442105b80156105f3575060075442105b8015610600575060065442105b1561065b5784341015801561061457508334105b1561062657606460005b049550610656565b83341015801561063557508234105b156106455760646014890261061e565b348311610656576064602389020495505b6106b5565b6608e1bc9bf040003410158015610673575060055442105b8015610680575060075442115b801561068d575060065442105b156106b0578334101580156106355750823410156106455760646014890261061e565b600095505b87860196508715156107525750600160a060020a03811660009081526004602052604090205463b2d05e009060ff161580156106f55750600b54600c5411155b15610739576107048282611237565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c8054909101905561074d565b6608e1bc9bf0400034101561074d57600080fd5b6107d9565b60008811801561076957506608e1bc9bf040003410155b156107c557600554421015801561078257506007544210155b801561078f575060065442105b156107a45761079e8289611237565b5061074d565b3485116107b55761079e8288611237565b6107bf8289611237565b506107d9565b6608e1bc9bf040003410156107d957600080fd5b6008546009541061080957600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600d54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610842573d6000803e3d6000fd5b505050505050505050565b60408051808201909152600881527f4269745a696e6578000000000000000000000000000000000000000000000000602082015281565b600081158015906108b75750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156108c457506000610926565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461094657600080fd5b600854610959908363ffffffff61131a16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b6000606060643610156109ae57fe5b600160a060020a03841615156109c357600080fd5b600160a060020a0385166000908152600260205260409020548311156109e857600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a1857600080fd5b600160a060020a038516600090815260026020526040902054610a41908463ffffffff61132716565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a7e908463ffffffff61132716565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610ac2908463ffffffff61131a16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061147b83398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b3257600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b505050565b600681565b600154600090600160a060020a03163314610b9157600080fd5b33600090815260026020526040902054821115610bad57600080fd5b5033600081815260026020526040902054610bce908363ffffffff61132716565b600160a060020a038216600090815260026020526040902055600854610bfa908363ffffffff61132716565b600855600954610c10908363ffffffff61132716565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b6608e1bc9bf0400081565b600154600160a060020a03163314610c9957600080fd5b610ca38282611339565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610ccf57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b60408051808201909152600481527f424e455800000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d6157600080fd5b600d5460a060020a900460ff1615610d7857600080fd5b600d805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610de257600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610e2c57fe5b600160a060020a0384161515610e4157600080fd5b33600090815260026020526040902054831115610e5d57600080fd5b33600090815260026020526040902054610e7d908463ffffffff61132716565b3360009081526002602052604080822092909255600160a060020a03861681522054610eaf908463ffffffff61131a16565b600160a060020a03851660008181526002602090815260409182902093909355805186815290519192339260008051602061147b8339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460a060020a900460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f9d57600080fd5b505af1158015610fb1573d6000803e3d6000fd5b505050506040513d6020811015610fc757600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a0316331461102157600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561108557600080fd5b505af1158015611099573d6000803e3d6000fd5b505050506040513d60208110156110af57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561112357600080fd5b505af1158015611137573d6000803e3d6000fd5b505050506040513d602081101561114d57600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461117a57600080fd5b600160a060020a038116156111b2576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111cf57600080fd5b5060005b82811015611208576112008484838181106111ea57fe5b90506020020135600160a060020a031683611339565b6001016111d3565b50505050565b600082151561121f57506000610926565b5081810281838281151561122f57fe5b041461092657fe5b600d5460009060a060020a900460ff161561125157600080fd5b600954611264908363ffffffff61131a16565b600955600160a060020a038316600090815260026020526040902054611290908363ffffffff61131a16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a0385169160009160008051602061147b8339815191529181900360200190a350600192915050565b8181018281101561092657fe5b60008282111561133357fe5b50900390565b600154600160a060020a0316331461135057600080fd5b6000811161135d57600080fd5b6008546009541061136d57600080fd5b600160a060020a038216600090815260026020526040902054611396908263ffffffff61131a16565b600160a060020a0383166000908152600260205260409020556009546113c2908263ffffffff61131a16565b6009819055600854116113f457600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a0384169160009160008051602061147b8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e628d9a9618aea42ced9e7ec8e935783475923a0fc2fa7bd30703d348de3cbc50029

Deployed Bytecode

0x60806040526004361061018a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610194578063095ea7b31461021e5780631003e2d21461025657806318160ddd1461026e57806323b872dd1461029557806329dcb0cf146102bf5780632e1a7d4d146102d4578063313ce567146102ec57806342966c6814610301578063532b581c1461031957806370a082311461032e57806374ff23241461034f5780637809231c14610364578063836e81801461038857806383afd6da1461039d578063853828b6146103b257806395d89b41146103c75780639b1cbccc146103dc5780639ea407be146103f1578063a9059cbb14610409578063aa6ca8081461018a578063b449c24d1461042d578063c108d5421461044e578063c489744b14610463578063cbdd69b51461048a578063dd62ed3e1461049f578063e58fc54c146104c6578063e6a092f5146104e7578063efca2eed146104fc578063f2fde38b14610511578063f3ccb40114610532575b610192610556565b005b3480156101a057600080fd5b506101a961084d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022a57600080fd5b50610242600160a060020a0360043516602435610884565b604080519115158252519081900360200190f35b34801561026257600080fd5b5061019260043561092c565b34801561027a57600080fd5b50610283610999565b60408051918252519081900360200190f35b3480156102a157600080fd5b50610242600160a060020a036004358116906024351660443561099f565b3480156102cb57600080fd5b50610283610b12565b3480156102e057600080fd5b50610192600435610b18565b3480156102f857600080fd5b50610283610b72565b34801561030d57600080fd5b50610192600435610b77565b34801561032557600080fd5b50610283610c56565b34801561033a57600080fd5b50610283600160a060020a0360043516610c5c565b34801561035b57600080fd5b50610283610c77565b34801561037057600080fd5b50610192600160a060020a0360043516602435610c82565b34801561039457600080fd5b50610283610ca7565b3480156103a957600080fd5b50610283610cad565b3480156103be57600080fd5b50610192610cb3565b3480156103d357600080fd5b506101a9610d10565b3480156103e857600080fd5b50610242610d47565b3480156103fd57600080fd5b50610192600435610dcb565b34801561041557600080fd5b50610242600160a060020a0360043516602435610e1d565b34801561043957600080fd5b50610242600160a060020a0360043516610efc565b34801561045a57600080fd5b50610242610f11565b34801561046f57600080fd5b50610283600160a060020a0360043581169060243516610f21565b34801561049657600080fd5b50610283610fd2565b3480156104ab57600080fd5b50610283600160a060020a0360043581169060243516610fd8565b3480156104d257600080fd5b50610242600160a060020a0360043516611003565b3480156104f357600080fd5b50610283611157565b34801561050857600080fd5b5061028361115d565b34801561051d57600080fd5b50610192600160a060020a0360043516611163565b34801561053e57600080fd5b506101926024600480358281019291013590356111b5565b600080600080600080600080600d60149054906101000a900460ff1615151561057e57600080fd5b600a5460009850889750879650670de0b6b3a76400009550678ac7230489e8000094506802b5e3af16b1880000935085906105bf903463ffffffff61120e16565b8115156105c857fe5b0497503391506608e1bc9bf0400034101580156105e6575060055442105b80156105f3575060075442105b8015610600575060065442105b1561065b5784341015801561061457508334105b1561062657606460005b049550610656565b83341015801561063557508234105b156106455760646014890261061e565b348311610656576064602389020495505b6106b5565b6608e1bc9bf040003410158015610673575060055442105b8015610680575060075442115b801561068d575060065442105b156106b0578334101580156106355750823410156106455760646014890261061e565b600095505b87860196508715156107525750600160a060020a03811660009081526004602052604090205463b2d05e009060ff161580156106f55750600b54600c5411155b15610739576107048282611237565b50600160a060020a0382166000908152600460205260409020805460ff19166001908117909155600c8054909101905561074d565b6608e1bc9bf0400034101561074d57600080fd5b6107d9565b60008811801561076957506608e1bc9bf040003410155b156107c557600554421015801561078257506007544210155b801561078f575060065442105b156107a45761079e8289611237565b5061074d565b3485116107b55761079e8288611237565b6107bf8289611237565b506107d9565b6608e1bc9bf040003410156107d957600080fd5b6008546009541061080957600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600d54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610842573d6000803e3d6000fd5b505050505050505050565b60408051808201909152600881527f4269745a696e6578000000000000000000000000000000000000000000000000602082015281565b600081158015906108b75750336000908152600360209081526040808320600160a060020a038716845290915290205415155b156108c457506000610926565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600154600090600160a060020a0316331461094657600080fd5b600854610959908363ffffffff61131a16565b60088190556040805184815290519192507f90f1f758f0e2b40929b1fd48df7ebe10afc272a362e1f0d63a90b8b4715d799f919081900360200190a15050565b60085481565b6000606060643610156109ae57fe5b600160a060020a03841615156109c357600080fd5b600160a060020a0385166000908152600260205260409020548311156109e857600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a1857600080fd5b600160a060020a038516600090815260026020526040902054610a41908463ffffffff61132716565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610a7e908463ffffffff61132716565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610ac2908463ffffffff61131a16565b600160a060020a03808616600081815260026020908152604091829020949094558051878152905191939289169260008051602061147b83398151915292918290030190a3506001949350505050565b60055481565b600154600090600160a060020a03163314610b3257600080fd5b506001546040518291600160a060020a03169082156108fc029083906000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b505050565b600681565b600154600090600160a060020a03163314610b9157600080fd5b33600090815260026020526040902054821115610bad57600080fd5b5033600081815260026020526040902054610bce908363ffffffff61132716565b600160a060020a038216600090815260026020526040902055600854610bfa908363ffffffff61132716565b600855600954610c10908363ffffffff61132716565b600955604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b60065481565b600160a060020a031660009081526002602052604090205490565b6608e1bc9bf0400081565b600154600160a060020a03163314610c9957600080fd5b610ca38282611339565b5050565b60075481565b600c5481565b6001546000908190600160a060020a03163314610ccf57600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610b6d573d6000803e3d6000fd5b60408051808201909152600481527f424e455800000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d6157600080fd5b600d5460a060020a900460ff1615610d7857600080fd5b600d805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600154600160a060020a03163314610de257600080fd5b600a8190556040805182815290517ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0039181900360200190a150565b600060406044361015610e2c57fe5b600160a060020a0384161515610e4157600080fd5b33600090815260026020526040902054831115610e5d57600080fd5b33600090815260026020526040902054610e7d908463ffffffff61132716565b3360009081526002602052604080822092909255600160a060020a03861681522054610eaf908463ffffffff61131a16565b600160a060020a03851660008181526002602090815260409182902093909355805186815290519192339260008051602061147b8339815191529281900390910190a35060019392505050565b60046020526000908152604090205460ff1681565b600d5460a060020a900460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f9d57600080fd5b505af1158015610fb1573d6000803e3d6000fd5b505050506040513d6020811015610fc757600080fd5b505195945050505050565b600a5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60015460009081908190600160a060020a0316331461102157600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561108557600080fd5b505af1158015611099573d6000803e3d6000fd5b505050506040513d60208110156110af57600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561112357600080fd5b505af1158015611137573d6000803e3d6000fd5b505050506040513d602081101561114d57600080fd5b5051949350505050565b600b5481565b60095481565b600154600160a060020a0316331461117a57600080fd5b600160a060020a038116156111b2576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600154600090600160a060020a031633146111cf57600080fd5b5060005b82811015611208576112008484838181106111ea57fe5b90506020020135600160a060020a031683611339565b6001016111d3565b50505050565b600082151561121f57506000610926565b5081810281838281151561122f57fe5b041461092657fe5b600d5460009060a060020a900460ff161561125157600080fd5b600954611264908363ffffffff61131a16565b600955600160a060020a038316600090815260026020526040902054611290908363ffffffff61131a16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a0385169160009160008051602061147b8339815191529181900360200190a350600192915050565b8181018281101561092657fe5b60008282111561133357fe5b50900390565b600154600160a060020a0316331461135057600080fd5b6000811161135d57600080fd5b6008546009541061136d57600080fd5b600160a060020a038216600090815260026020526040902054611396908263ffffffff61131a16565b600160a060020a0383166000908152600260205260409020556009546113c2908263ffffffff61131a16565b6009819055600854116113f457600d805474ff0000000000000000000000000000000000000000191660a060020a1790555b600160a060020a0382166000818152600260209081526040918290205482518581529182015281517fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272929181900390910190a2604080518281529051600160a060020a0384169160009160008051602061147b8339815191529181900360200190a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e628d9a9618aea42ced9e7ec8e935783475923a0fc2fa7bd30703d348de3cbc50029

Deployed Bytecode Sourcemap

2064:8949:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5677:11;:9;:11::i;:::-;2064:8949;2330:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2330:40: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;2330:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9201:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9201:296:0;-1:-1:-1;;;;;9201:296:0;;;;;;;;;;;;;;;;;;;;;;;;;10566:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10566:166:0;;;;;2608:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2608:44:0;;;;;;;;;;;;;;;;;;;;8652:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8652:537:0;-1:-1:-1;;;;;8652:537:0;;;;;;;;;;;;2462:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2462:41:0;;;;10063:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10063:140:0;;;;;2422:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2422:33:0;;;;10211:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10211:343:0;;;;;2510:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2510:39:0;;;;8005:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8005:111:0;-1:-1:-1;;;;;8005:111:0;;;;;2697:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2697:54:0;;;;5094:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5094:142:0;-1:-1:-1;;;;;5094:142:0;;;;;;;2556:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2556:39:0;;;;2857:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2857:29:0;;;;9882:173;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9882:173:0;;;;2377:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2377:38:0;;;;4018:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4018:170:0;;;;5448;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5448:170:0;;;;;8238:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8238:402:0;-1:-1:-1;;;;;8238:402:0;;;;;;;2280:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2280:40:0;-1:-1:-1;;;;;2280:40:0;;;;;3472;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3472:40:0;;;;9659:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9659:211:0;-1:-1:-1;;;;;9659:211:0;;;;;;;;;;2775:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2775:40:0;;;;9509:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9509:138:0;-1:-1:-1;;;;;9509:138:0;;;;;;;;;;10750:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10750:260:0;-1:-1:-1;;;;;10750:260:0;;;;;2822:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2822:28:0;;;;2659:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2659:31:0;;;;3859:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3859:151:0;-1:-1:-1;;;;;3859:151:0;;;;;5244:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5244:196:0;;;;;;;;;;;;;;;;5715:2278;5772:14;5801:13;5829:18;5862;5907;5947;6054:16;7006:15;3565:20;;;;;;;;;;;3564:21;3556:30;;;;;;;;5998:12;;5789:1;;-1:-1:-1;5789:1:0;;-1:-1:-1;5789:1:0;;-1:-1:-1;5883:13:0;;-1:-1:-1;5928:8:0;;-1:-1:-1;5968:8:0;;-1:-1:-1;5883:13:0;;5998:27;;6015:9;5998:27;:16;:27;:::i;:::-;:37;;;;;;;;5989:46;;6073:10;6054:29;;2738:13;6100:9;:27;;:45;;;;;6137:8;;6131:3;:14;6100:45;:61;;;;;6155:6;;6149:3;:12;6100:61;:77;;;;;6171:6;;6165:3;:12;6100:77;6096:818;;;6210:10;6197:9;:23;;:49;;;;;6236:10;6224:9;:22;6197:49;6194:337;;;6292:3;6288:1;6279:16;;6266:29;;6194:337;;;6332:10;6319:9;:23;;:49;;;;;6358:10;6346:9;:22;6319:49;6316:215;;;6415:3;6410:2;6401:11;;:17;;6316:215;6442:9;:23;-1:-1:-1;6439:92:0;;6512:3;6507:2;6498:11;;:17;6485:30;;6439:92;6096:818;;;2738:13;6550:9;:27;;:45;;;;;6587:8;;6581:3;:14;6550:45;:61;;;;;6605:6;;6599:3;:12;6550:61;:77;;;;;6621:6;;6615:3;:12;6550:77;6547:367;;;6659:10;6646:9;:23;;:49;;;;;6685:10;6673:9;:22;6643:215;;;6742:3;6737:2;6728:11;;:17;;6547:367;6901:1;6888:14;;6547:367;6934:19;;;;-1:-1:-1;6978:11:0;;6974:817;;;-1:-1:-1;;;;;;7047:17:0;;;;;;:7;:17;;;;;;7024:4;;7047:17;;:26;;;:58;;;7094:11;;7077:13;;:28;;7047:58;7043:278;;;7127:24;7133:8;7143:7;7127:5;:24::i;:::-;-1:-1:-1;;;;;;7170:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;7170:24:0;7190:4;7170:24;;;;;;7213:13;:15;;;;;;;7043:278;;;2738:13;7276:9;:27;;7267:38;;;;;;6974:817;;;7349:1;7340:6;:10;:41;;;;;2738:13;7354:9;:27;;7340:41;7337:454;;;7408:8;;7401:3;:15;;:32;;;;;7427:6;;7420:3;:13;;7401:32;:48;;;;;7443:6;;7437:3;:12;7401:48;7397:314;;;7469:23;7475:8;7485:6;7469:5;:23::i;:::-;;7397:314;;;7534:9;:23;-1:-1:-1;7531:162:0;;7581:22;7587:8;7597:5;7581;:22::i;7531:162::-;7650:23;7656:8;7666:6;7650:5;:23::i;:::-;;7337:454;;;2738:13;7750:9;:27;;7741:38;;;;;;7827:11;;7807:16;;:31;7803:91;;7855:20;:27;;-1:-1:-1;;7855:27:0;-1:-1:-1;;;7855:27:0;;;7803:91;7957:8;;:28;;-1:-1:-1;;;;;7957:8:0;;;;7975:9;7957:28;;;;;:8;:28;:8;:28;7975:9;7957:8;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7957:28:0;5715:2278;;;;;;;;:::o;2330:40::-;;;;;;;;;;;;;;;;;;;:::o;9201:296::-;9268:12;9297:11;;;;;:49;;-1:-1:-1;9320:10:0;9312:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9312:29:0;;;;;;;;;;:34;;9297:49;9293:72;;;-1:-1:-1;9357:5:0;9350:12;;9293:72;9383:10;9375:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9375:29:0;;;;;;;;;;;;:38;;;9429;;;;;;;9375:29;;9383:10;9429:38;;;;;;;;;;;-1:-1:-1;9485:4:0;9201:296;;;;;:::o;10566:166::-;3672:5;;10623:15;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;10641:11;;:23;;10657:6;10641:23;:15;:23;:::i;:::-;10675:11;:21;;;10713:11;;;;;;;;10623:41;;-1:-1:-1;10713:11:0;;;;;;;;;;10566:166;;:::o;2608:44::-;;;;:::o;8652:537::-;8759:12;8735:6;8197:8;8178;:27;;8171:35;;;;-1:-1:-1;;;;;8794:17:0;;;;8786:26;;;;;;-1:-1:-1;;;;;8842:15:0;;;;;;:8;:15;;;;;;8831:26;;;8823:35;;;;;;-1:-1:-1;;;;;8888:14:0;;;;;;:7;:14;;;;;;;;8903:10;8888:26;;;;;;;;8877:37;;;8869:46;;;;;;-1:-1:-1;;;;;8954:15:0;;;;;;:8;:15;;;;;;:28;;8974:7;8954:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;8936:15:0;;;;;;:8;:15;;;;;;;;:46;;;;9022:7;:14;;;;;9037:10;9022:26;;;;;;:39;;9053:7;9022:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;8993:14:0;;;;;;;:7;:14;;;;;;;;9008:10;8993:26;;;;;;;:68;;;;9088:13;;;;;:8;:13;;;;;:26;;9106:7;9088:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;9072:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;9130:29;;;;;;;9072:13;;9130:29;;;;-1:-1:-1;;;;;;;;;;;9130:29:0;;;;;;;;-1:-1:-1;9177:4:0;;8652:537;-1:-1:-1;;;;8652:537:0:o;2462:41::-;;;;:::o;10063:140::-;3672:5;;10128:18;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;-1:-1:-1;10169:5:0;;:26;;10149:9;;-1:-1:-1;;;;;10169:5:0;;:26;;;;;10149:9;;10169:5;:26;:5;:26;10149:9;10169:5;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10169:26:0;10063:140;;:::o;2422:33::-;2454:1;2422:33;:::o;10211:343::-;3672:5;;10319:14;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;10296:10;10287:20;;;;:8;:20;;;;;;10277:30;;;10269:39;;;;;;-1:-1:-1;10336:10:0;10376:16;;;;:8;:16;;;;;;:28;;10397:6;10376:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;10357:16:0;;;;;;:8;:16;;;;;:47;10429:11;;:23;;10445:6;10429:23;:15;:23;:::i;:::-;10415:11;:37;10482:16;;:28;;10503:6;10482:28;:20;:28;:::i;:::-;10463:16;:47;10526:20;;;;;;;;-1:-1:-1;;;;;10526:20:0;;;;;;;;;;;;;10211:343;;:::o;2510:39::-;;;;:::o;8005:111::-;-1:-1:-1;;;;;8092:16:0;8065:7;8092:16;;;:8;:16;;;;;;;8005:111::o;2697:54::-;2738:13;2697:54;:::o;5094:142::-;3672:5;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;5195:33;5206:12;5220:7;5195:10;:33::i;:::-;5094:142;;:::o;2556:39::-;;;;:::o;2857:29::-;;;;:::o;9882:173::-;3672:5;;9933:17;;;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;-1:-1:-1;;10019:5:0;;:28;;9953:4;;9991:17;;;-1:-1:-1;;;;;10019:5:0;;;;:28;;;;;9991:17;;10019:5;:28;:5;:28;9991:17;10019:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;2377:38:0;;;;;;;;;;;;;;;;;;;:::o;4018:170::-;3672:5;;4083:4;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;3565:20;;-1:-1:-1;;;3565:20:0;;;;3564:21;3556:30;;;;;;4100:20;:27;;-1:-1:-1;;4100:27:0;-1:-1:-1;;;4100:27:0;;;4143:15;;;;4100:27;;4143:15;-1:-1:-1;4176:4:0;4018:170;:::o;5448:::-;3672:5;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;5532:12;:28;;;5576:34;;;;;;;;;;;;;;;;;5448:170;:::o;8238:402::-;8326:12;8302:6;8197:8;8178;:27;;8171:35;;;;-1:-1:-1;;;;;8361:17:0;;;;8353:26;;;;;;8418:10;8409:20;;;;:8;:20;;;;;;8398:31;;;8390:40;;;;;;8483:10;8474:20;;;;:8;:20;;;;;;:33;;8499:7;8474:33;:24;:33;:::i;:::-;8460:10;8451:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;8534:13:0;;;;;;:26;;8552:7;8534:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8518:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8576:34;;;;;;;8518:13;;8585:10;;-1:-1:-1;;;;;;;;;;;8576:34:0;;;;;;;;;-1:-1:-1;8628:4:0;;8238:402;-1:-1:-1;;;8238:402:0:o;2280:40::-;;;;;;;;;;;;;;;:::o;3472:::-;;;-1:-1:-1;;;3472:40:0;;;;;:::o;9659:211::-;9744:4;9760:14;9814:8;9790:12;9760:43;;9825:1;-1:-1:-1;;;;;9825:11:0;;9837:3;9825:16;;;;;;;;;;;;;-1:-1:-1;;;;;9825:16:0;-1:-1:-1;;;;;9825:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9825:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9825:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9825:16:0;;9659:211;-1:-1:-1;;;;;9659:211:0:o;2775:40::-;;;;:::o;9509:138::-;-1:-1:-1;;;;;9614:15:0;;;9587:7;9614:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9509:138::o;10750:260::-;3672:5;;10831:4;;;;;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;10925:30;;;;;;10949:4;10925:30;;;;;;10882:14;;-1:-1:-1;;;;;;10925:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;10925:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;10925:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10925:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10925:30:0;10988:5;;10973:29;;;;;;-1:-1:-1;;;;;10988:5:0;;;10973:29;;;;;;;;;;;;10925:30;;-1:-1:-1;10973:14:0;;;;;;:29;;;;;10925:30;;10973:29;;;;;;;;10988:5;10973:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;10973:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10973:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10973:29:0;;10750:260;-1:-1:-1;;;;10750:260:0:o;2822:28::-;;;;:::o;2659:31::-;;;;:::o;3859:151::-;3672:5;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;-1:-1:-1;;;;;3936:22:0;;;3932:71;;3975:5;:16;;-1:-1:-1;;3975:16:0;-1:-1:-1;;;;;3975:16:0;;;;;3932:71;3859:151;:::o;5244:196::-;3672:5;;5358:6;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;-1:-1:-1;5367:1:0;5353:79;5370:21;;;5353:79;;;5398:34;5409:10;;5420:1;5409:13;;;;;;;;;;;;;-1:-1:-1;;;;;5409:13:0;5424:7;5398:10;:34::i;:::-;5393:3;;5353:79;;;5244:196;;;;:::o;157:202::-;215:9;241:6;;237:47;;;-1:-1:-1;271:1:0;264:8;;237:47;-1:-1:-1;298:5:0;;;302:1;298;:5;321;;;;;;;;:10;314:18;;;4200:314;3565:20;;4271:4;;-1:-1:-1;;;3565:20:0;;;;3564:21;3556:30;;;;;;4307:16;;:29;;4328:7;4307:29;:20;:29;:::i;:::-;4288:16;:48;-1:-1:-1;;;;;4371:13:0;;;;;;:8;:13;;;;;;:26;;4389:7;4371:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4355:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;4413:19;;;;;;;4355:13;;4413:19;;;;;;;;;4448:34;;;;;;;;-1:-1:-1;;;;;4448:34:0;;;4465:1;;-1:-1:-1;;;;;;;;;;;4448:34:0;;;;;;;;-1:-1:-1;4502:4:0;4200:314;;;;:::o;1072:141::-;1156:5;;;1179:6;;;;1172:14;;;874:123;932:7;959:6;;;;952:14;;;;-1:-1:-1;984:5:0;;;874:123::o;4526:556::-;3672:5;;-1:-1:-1;;;;;3672:5:0;3658:10;:19;3650:28;;;;;;4633:1;4623:11;;4614:22;;;;;;4681:11;;4662:16;;:30;4653:41;;;;;;-1:-1:-1;;;;;4730:22:0;;;;;;:8;:22;;;;;;:35;;4757:7;4730:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4705:22:0;;;;;;:8;:22;;;;;:60;4795:16;;:29;;4816:7;4795:29;:20;:29;:::i;:::-;4776:16;:48;;;4861:11;;-1:-1:-1;4837:91:0;;4889:20;:27;;-1:-1:-1;;4889:27:0;-1:-1:-1;;;4889:27:0;;;4837:91;-1:-1:-1;;;;;4961:54:0;;4992:22;;;;:8;:22;;;;;;;;;;4961:54;;;;;;;;;;;;;;;;;;;;;;5031:43;;;;;;;;-1:-1:-1;;;;;5031:43:0;;;5048:1;;-1:-1:-1;;;;;;;;;;;5031:43:0;;;;;;;;4526:556;;:::o

Swarm Source

bzzr://e628d9a9618aea42ced9e7ec8e935783475923a0fc2fa7bd30703d348de3cbc5

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.