ETH Price: $3,573.68 (+0.47%)
Gas: 75 Gwei

Contract

0x3f11c993d3CeD0790630bEEe1bB543FdE165F614
 

Overview

ETH Balance

0.049483073657407408 ETH

Eth Value

$176.84 (@ $3,573.68/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer71548862019-01-31 18:01:311882 days ago1548957691IN
0x3f11c993...dE165F614
0.00000051 ETH0.0011872820
Transfer68387282018-12-06 20:59:141938 days ago1544129954IN
0x3f11c993...dE165F614
0.05 ETH0.0018712820
Transfer68314702018-12-05 16:08:311939 days ago1544026111IN
0x3f11c993...dE165F614
0 ETH0.0007677910.34
Transfer68313742018-12-05 15:47:061939 days ago1544024826IN
0x3f11c993...dE165F614
0.05 ETH0.0010759811.5
0x6080604068264442018-12-04 19:56:401940 days ago1543953400IN
 Contract Creation
0 ETH0.0505820410

Latest 6 internal transactions

Advanced mode:
Parent Txn Hash Block From To Value
71548862019-01-31 18:01:311882 days ago1548957691
0x3f11c993...dE165F614
0.00051 ETH
71548862019-01-31 18:01:311882 days ago1548957691
0x3f11c993...dE165F614
0.0120617 ETH
71548862019-01-31 18:01:311882 days ago1548957691
0x3f11c993...dE165F614
0.02793829 ETH
68387282018-12-06 20:59:141938 days ago1544129954
0x3f11c993...dE165F614
0.005 ETH
68314702018-12-05 16:08:311939 days ago1544026111
0x3f11c993...dE165F614
0.00000743 ETH
68313742018-12-05 15:47:061939 days ago1544024826
0x3f11c993...dE165F614
0.005 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xd351DF0c...e96c18Fc3
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Network51

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-12-07
*/

/*! Net51.sol | (c) 2018 Develop by Network 51 LLC (proxchain.tech), author @proxchain | License: MIT */

pragma solidity 0.4.24;

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns(uint256) {
        if(a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns(uint256) {
        require(b > 0);
        uint256 c = a / b;
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns(uint256) {
        require(b <= a);
        uint256 c = a - b;
        return c;
    }

    function add(uint256 a, uint256 b) internal pure returns(uint256) {
        uint256 c = a + b;
        require(c >= a);
        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns(uint256) {
        require(b != 0);
        return a % b;
    }
}

contract Network51 {
    using SafeMath for uint;

    struct Investor {
        uint invested;
        uint payouts;
        uint first_invest;
        uint last_payout;
        address referrer;
    }

    uint constant public COMMISSION = 10;
    uint constant public DEVFEE = 1000;
    uint constant public WITHDRAW = 80;
    uint constant public REFBONUS = 5;
    uint constant public CASHBACK = 5;
    uint constant public MULTIPLICATION = 2;

    address public beneficiary = 0xd17a5265f8719ea5b01e084aef3d4d58f452ca18;

    mapping(address => Investor) public investors;

    event AddInvestor(address indexed holder);

    event Payout(address indexed holder, uint amount);
    event Deposit(address indexed holder, uint amount, address referrer);
    event RefBonus(address indexed from, address indexed to, uint amount);
    event CashBack(address indexed holder, uint amount);
    event Withdraw(address indexed holder, uint amount);

    function bonusSize() view public returns(uint) {
        uint b = address(this).balance;

        if(b >= 20500 ether) return 5;
        if(b >= 20400 ether) return 2;
        if(b >= 20300 ether) return 3;
        if(b >= 20200 ether) return 0;
        if(b >= 20100 ether) return 5;
        if(b >= 20000 ether) return 3;
        if(b >= 19900 ether) return 1;
        if(b >= 19800 ether) return 3;
        if(b >= 19700 ether) return 5;
        if(b >= 19600 ether) return 3;

        if(b >= 19500 ether) return 4;
        if(b >= 19400 ether) return 2;
        if(b >= 19300 ether) return 3;
        if(b >= 19200 ether) return 0;
        if(b >= 19100 ether) return 5;
        if(b >= 19000 ether) return 3;
        if(b >= 18900 ether) return 1;
        if(b >= 18800 ether) return 3;
        if(b >= 18700 ether) return 5;
        if(b >= 18600 ether) return 7;

        if(b >= 18500 ether) return 6;
        if(b >= 18400 ether) return 2;
        if(b >= 18300 ether) return 3;
        if(b >= 18200 ether) return 1;
        if(b >= 18100 ether) return 5;
        if(b >= 18000 ether) return 3;
        if(b >= 17900 ether) return 1;
        if(b >= 17800 ether) return 3;
        if(b >= 17700 ether) return 5;
        if(b >= 17600 ether) return 5;

        if(b >= 17500 ether) return 4;
        if(b >= 17400 ether) return 2;
        if(b >= 17300 ether) return 3;
        if(b >= 17200 ether) return 0;
        if(b >= 17100 ether) return 5;
        if(b >= 17000 ether) return 3;
        if(b >= 16900 ether) return 1;
        if(b >= 16800 ether) return 3;
        if(b >= 16700 ether) return 5;
        if(b >= 16600 ether) return 4;

        if(b >= 16500 ether) return 5;
        if(b >= 16400 ether) return 2;
        if(b >= 16300 ether) return 3;
        if(b >= 16200 ether) return 0;
        if(b >= 16100 ether) return 5;
        if(b >= 16000 ether) return 3;
        if(b >= 15900 ether) return 1;
        if(b >= 15800 ether) return 3;
        if(b >= 15700 ether) return 5;
        if(b >= 15600 ether) return 4;

        if(b >= 15500 ether) return 6;
        if(b >= 15400 ether) return 2;
        if(b >= 15300 ether) return 3;
        if(b >= 15200 ether) return 3;
        if(b >= 15100 ether) return 5;
        if(b >= 15000 ether) return 3;
        if(b >= 14900 ether) return 1;
        if(b >= 14800 ether) return 3;
        if(b >= 14700 ether) return 4;
        if(b >= 14600 ether) return 5;

        if(b >= 14500 ether) return 7;
        if(b >= 14400 ether) return 2;
        if(b >= 14300 ether) return 3;
        if(b >= 14200 ether) return 1;
        if(b >= 14100 ether) return 5;
        if(b >= 14000 ether) return 3;
        if(b >= 13900 ether) return 1;
        if(b >= 13800 ether) return 3;
        if(b >= 13700 ether) return 6;
        if(b >= 13600 ether) return 5;

        if(b >= 13500 ether) return 6;
        if(b >= 13400 ether) return 4;
        if(b >= 13300 ether) return 3;
        if(b >= 13200 ether) return 2;
        if(b >= 13100 ether) return 5;
        if(b >= 13000 ether) return 3;
        if(b >= 12900 ether) return 1;
        if(b >= 12800 ether) return 3;
        if(b >= 12700 ether) return 5;
        if(b >= 12600 ether) return 6;

        if(b >= 12500 ether) return 7;
        if(b >= 12400 ether) return 2;
        if(b >= 12300 ether) return 3;
        if(b >= 12200 ether) return 2;
        if(b >= 12100 ether) return 5;
        if(b >= 12000 ether) return 3;
        if(b >= 11900 ether) return 1;
        if(b >= 11800 ether) return 3;
        if(b >= 11700 ether) return 5;
        if(b >= 11600 ether) return 7;

        if(b >= 11500 ether) return 8;
        if(b >= 11400 ether) return 2;
        if(b >= 11300 ether) return 3;
        if(b >= 11200 ether) return 2;
        if(b >= 11100 ether) return 5;
        if(b >= 11000 ether) return 3;
        if(b >= 10900 ether) return 1;
        if(b >= 10800 ether) return 3;
        if(b >= 10700 ether) return 5;
        if(b >= 10600 ether) return 7;

        if(b >= 10500 ether) return 9;
        if(b >= 10400 ether) return 6;
        if(b >= 10300 ether) return 3;
        if(b >= 10200 ether) return 2;
        if(b >= 10100 ether) return 5;
        if(b >= 10000 ether) return 3;
        if(b >= 9900 ether) return 2;
        if(b >= 9800 ether) return 3;
        if(b >= 9700 ether) return 6;
        if(b >= 9600 ether) return 5;

        if(b >= 9500 ether) return 7;
        if(b >= 9400 ether) return 4;
        if(b >= 9300 ether) return 3;
        if(b >= 9200 ether) return 2;
        if(b >= 9100 ether) return 5;
        if(b >= 9000 ether) return 3;
        if(b >= 8900 ether) return 2;
        if(b >= 8800 ether) return 3;
        if(b >= 8700 ether) return 5;
        if(b >= 8600 ether) return 6;

        if(b >= 8500 ether) return 8;
        if(b >= 8400 ether) return 5;
        if(b >= 8300 ether) return 4;
        if(b >= 8200 ether) return 3;
        if(b >= 8100 ether) return 5;
        if(b >= 8000 ether) return 3;
        if(b >= 7900 ether) return 2;
        if(b >= 7800 ether) return 3;
        if(b >= 7700 ether) return 5;
        if(b >= 7600 ether) return 4;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 50000 ether) return 0;

        if(b >= 48000 ether) return 8;
        if(b >= 46000 ether) return 5;
        if(b >= 44000 ether) return 3;
        if(b >= 42000 ether) return 4;
        if(b >= 40000 ether) return 5;
        if(b >= 38000 ether) return 3;
        if(b >= 36000 ether) return 4;
        if(b >= 34000 ether) return 3;
        if(b >= 32000 ether) return 5;
        if(b >= 30000 ether) return 7;

        if(b >= 27000 ether) return 6;
        if(b >= 26000 ether) return 2;
        if(b >= 25000 ether) return 5;
        if(b >= 24000 ether) return 2;
        if(b >= 23000 ether) return 4;
        if(b >= 22000 ether) return 3;
        if(b >= 21000 ether) return 2;
        if(b >= 20000 ether) return 4;
        if(b >= 19000 ether) return 3;
        if(b >= 18000 ether) return 8;

        if(b >= 17500 ether) return 7;
        if(b >= 17000 ether) return 2;
        if(b >= 16500 ether) return 3;
        if(b >= 16000 ether) return 1;
        if(b >= 15500 ether) return 5;
        if(b >= 15000 ether) return 3;
        if(b >= 14500 ether) return 4;
        if(b >= 14000 ether) return 3;
        if(b >= 13500 ether) return 5;
        if(b >= 13000 ether) return 7;

        if(b >= 12500 ether) return 6;
        if(b >= 12250 ether) return 2;
        if(b >= 12000 ether) return 3;
        if(b >= 11750 ether) return 1;
        if(b >= 11500 ether) return 4;
        if(b >= 11250 ether) return 5;
        if(b >= 11000 ether) return 3;
        if(b >= 10750 ether) return 0;
        if(b >= 10500 ether) return 3;
        if(b >= 10250 ether) return 4;

        if(b >= 10000 ether) return 7;
        if(b >= 9950 ether) return 2;
        if(b >= 9900 ether) return 3;
        if(b >= 9850 ether) return 0;
        if(b >= 9800 ether) return 5;
        if(b >= 9750 ether) return 3;
        if(b >= 9450 ether) return 2;
        if(b >= 9400 ether) return 4;
        if(b >= 9100 ether) return 5;
        if(b >= 9050 ether) return 6;

        if(b >= 8750 ether) return 7;
        if(b >= 8700 ether) return 3;
        if(b >= 8500 ether) return 2;
        if(b >= 8450 ether) return 0;
        if(b >= 8250 ether) return 4;
        if(b >= 8200 ether) return 3;
        if(b >= 8000 ether) return 2;
        if(b >= 7950 ether) return 4;
        if(b >= 7750 ether) return 3;
        if(b >= 7700 ether) return 5;

        if(b >= 7500 ether) return 7;
        if(b >= 7400 ether) return 2;
        if(b >= 7300 ether) return 3;
        if(b >= 7200 ether) return 0;
        if(b >= 7100 ether) return 5;
        if(b >= 7000 ether) return 3;
        if(b >= 6900 ether) return 1;
        if(b >= 6800 ether) return 3;
        if(b >= 6700 ether) return 5;
        if(b >= 6600 ether) return 7;

        if(b >= 6500 ether) return 6;
        if(b >= 6450 ether) return 2;
        if(b >= 6400 ether) return 1;
        if(b >= 6350 ether) return 0;
        if(b >= 6300 ether) return 4;
        if(b >= 6250 ether) return 3;
        if(b >= 6200 ether) return 2;
        if(b >= 6150 ether) return 0;
        if(b >= 6100 ether) return 3;
        if(b >= 6050 ether) return 7;


        if(b >= 6000 ether) return 5;
        if(b >= 5970 ether) return 6;
        if(b >= 5940 ether) return 3;
        if(b >= 5910 ether) return 2;
        if(b >= 5880 ether) return 1;
        if(b >= 5850 ether) return 4;
        if(b >= 5820 ether) return 3;
        if(b >= 5790 ether) return 0;
        if(b >= 5760 ether) return 2;
        if(b >= 5730 ether) return 4;


        if(b >= 5700 ether) return 6;
        if(b >= 5650 ether) return 3;
        if(b >= 5600 ether) return 5;
        if(b >= 5550 ether) return 0;
        if(b >= 5500 ether) return 3;
        if(b >= 5450 ether) return 1;
        if(b >= 5400 ether) return 2;
        if(b >= 5350 ether) return 4;
        if(b >= 5300 ether) return 0;
        if(b >= 5250 ether) return 5;

        if(b >= 5200 ether) return 6;
        if(b >= 5180 ether) return 4;
        if(b >= 5160 ether) return 2;
        if(b >= 5140 ether) return 0;
        if(b >= 5120 ether) return 2;
        if(b >= 5100 ether) return 3;
        if(b >= 5080 ether) return 2;
        if(b >= 5060 ether) return 0;
        if(b >= 5040 ether) return 2;
        if(b >= 5020 ether) return 6;


        if(b >= 5000 ether) return 5;
        if(b >= 4950 ether) return 4;
        if(b >= 4900 ether) return 3;
        if(b >= 4850 ether) return 2;
        if(b >= 4800 ether) return 0;
        if(b >= 4750 ether) return 1;
        if(b >= 4700 ether) return 3;
        if(b >= 4650 ether) return 2;
        if(b >= 4600 ether) return 3;
        if(b >= 4550 ether) return 2;

        if(b >= 4500 ether) return 5;
        if(b >= 4300 ether) return 2;
        if(b >= 4100 ether) return 3;
        if(b >= 3900 ether) return 0;
        if(b >= 3700 ether) return 3;
        if(b >= 3500 ether) return 2;
        if(b >= 3300 ether) return 4;
        if(b >= 3100 ether) return 1;
        if(b >= 2900 ether) return 0;
        if(b >= 2700 ether) return 4;

        if(b >= 2500 ether) return 3;
        if(b >= 2400 ether) return 4;
        if(b >= 2300 ether) return 5;
        if(b >= 2200 ether) return 0;
        if(b >= 2100 ether) return 2;
        if(b >= 2000 ether) return 3;
        if(b >= 1900 ether) return 0;
        if(b >= 1800 ether) return 3;
        if(b >= 1700 ether) return 5;
        if(b >= 1600 ether) return 4;


        if(b >= 1500 ether) return 5;
        if(b >= 1450 ether) return 2;
        if(b >= 1400 ether) return 3;
        if(b >= 1350 ether) return 2;
        if(b >= 1300 ether) return 0;
        if(b >= 1250 ether) return 1;
        if(b >= 1200 ether) return 2;
        if(b >= 1150 ether) return 1;
        if(b >= 1100 ether) return 0;
        if(b >= 1050 ether) return 5;


        if(b >= 1000 ether) return 4;
        if(b >= 990 ether) return 1;
        if(b >= 980 ether) return 2;
        if(b >= 970 ether) return 0;
        if(b >= 960 ether) return 3;
        if(b >= 950 ether) return 1;
        if(b >= 940 ether) return 2;
        if(b >= 930 ether) return 1;
        if(b >= 920 ether) return 0;
        if(b >= 910 ether) return 2;

        if(b >= 900 ether) return 3;
        if(b >= 880 ether) return 2;
        if(b >= 860 ether) return 1;
        if(b >= 840 ether) return 0;
        if(b >= 820 ether) return 2;
        if(b >= 800 ether) return 3;
        if(b >= 780 ether) return 1;
        if(b >= 760 ether) return 0;
        if(b >= 740 ether) return 2;
        if(b >= 720 ether) return 3;


        if(b >= 700 ether) return 4;
        if(b >= 680 ether) return 1;
        if(b >= 660 ether) return 3;
        if(b >= 640 ether) return 2;
        if(b >= 620 ether) return 0;
        if(b >= 600 ether) return 3;
        if(b >= 580 ether) return 2;
        if(b >= 560 ether) return 1;
        if(b >= 540 ether) return 0;
        if(b >= 520 ether) return 2;

        if(b >= 500 ether) return 4;
        if(b >= 490 ether) return 1;
        if(b >= 480 ether) return 3;
        if(b >= 470 ether) return 0;
        if(b >= 460 ether) return 3;
        if(b >= 450 ether) return 1;
        if(b >= 440 ether) return 2;
        if(b >= 430 ether) return 1;
        if(b >= 420 ether) return 0;
        if(b >= 410 ether) return 2;

        if(b >= 400 ether) return 3;
        if(b >= 390 ether) return 2;
        if(b >= 380 ether) return 1;
        if(b >= 370 ether) return 0;
        if(b >= 360 ether) return 2;
        if(b >= 350 ether) return 3;
        if(b >= 340 ether) return 1;
        if(b >= 330 ether) return 0;
        if(b >= 320 ether) return 2;
        if(b >= 310 ether) return 1;


        if(b >= 300 ether) return 3;
        if(b >= 290 ether) return 1;
        if(b >= 280 ether) return 3;
        if(b >= 270 ether) return 2;
        if(b >= 260 ether) return 0;
        if(b >= 250 ether) return 1;
        if(b >= 240 ether) return 2;
        if(b >= 230 ether) return 1;
        if(b >= 220 ether) return 0;
        if(b >= 210 ether) return 1;


        if(b >= 200 ether) return 2;
        if(b >= 190 ether) return 1;
        if(b >= 180 ether) return 3;
        if(b >= 170 ether) return 0;
        if(b >= 160 ether) return 3;
        if(b >= 150 ether) return 1;
        if(b >= 140 ether) return 2;
        if(b >= 130 ether) return 1;
        if(b >= 120 ether) return 0;
        if(b >= 110 ether) return 2;

        if(b >= 100 ether) return 3;
        if(b >= 99 ether) return 2;
        if(b >= 98 ether) return 1;
        if(b >= 97 ether) return 0;
        if(b >= 96 ether) return 2;
        if(b >= 95 ether) return 3;
        if(b >= 94 ether) return 1;
        if(b >= 93 ether) return 0;
        if(b >= 92 ether) return 2;
        if(b >= 91 ether) return 3;

        if(b >= 90 ether) return 2;
        if(b >= 89 ether) return 1;
        if(b >= 88 ether) return 3;
        if(b >= 87 ether) return 2;
        if(b >= 86 ether) return 0;
        if(b >= 85 ether) return 1;
        if(b >= 84 ether) return 2;
        if(b >= 83 ether) return 1;
        if(b >= 82 ether) return 0;
        if(b >= 81 ether) return 1;

        if(b >= 80 ether) return 3;
        if(b >= 79 ether) return 1;
        if(b >= 78 ether) return 3;
        if(b >= 77 ether) return 2;
        if(b >= 76 ether) return 0;
        if(b >= 75 ether) return 1;
        if(b >= 74 ether) return 2;
        if(b >= 73 ether) return 1;
        if(b >= 72 ether) return 0;
        if(b >= 71 ether) return 1;

        if(b >= 70 ether) return 2;
        if(b >= 69 ether) return 1;
        if(b >= 68 ether) return 3;
        if(b >= 67 ether) return 0;
        if(b >= 66 ether) return 3;
        if(b >= 65 ether) return 1;
        if(b >= 64 ether) return 2;
        if(b >= 63 ether) return 1;
        if(b >= 62 ether) return 0;
        if(b >= 61 ether) return 2;

        if(b >= 60 ether) return 3;
        if(b >= 59 ether) return 1;
        if(b >= 58 ether) return 3;
        if(b >= 57 ether) return 2;
        if(b >= 56 ether) return 0;
        if(b >= 55 ether) return 1;
        if(b >= 54 ether) return 2;
        if(b >= 53 ether) return 1;
        if(b >= 52 ether) return 0;
        if(b >= 51 ether) return 2;

        if(b >= 50 ether) return 3;
        if(b >= 49 ether) return 2;
        if(b >= 48 ether) return 1;
        if(b >= 47 ether) return 0;
        if(b >= 46 ether) return 2;
        if(b >= 45 ether) return 3;
        if(b >= 44 ether) return 1;
        if(b >= 43 ether) return 0;
        if(b >= 42 ether) return 2;
        if(b >= 41 ether) return 1;

        if(b >= 40 ether) return 3;
        if(b >= 39 ether) return 1;
        if(b >= 38 ether) return 3;
        if(b >= 37 ether) return 2;
        if(b >= 36 ether) return 0;
        if(b >= 35 ether) return 1;
        if(b >= 34 ether) return 2;
        if(b >= 33 ether) return 1;
        if(b >= 32 ether) return 0;
        if(b >= 31 ether) return 1;

        if(b >= 30 ether) return 2;
        if(b >= 29 ether) return 1;
        if(b >= 28 ether) return 3;
        if(b >= 27 ether) return 0;
        if(b >= 26 ether) return 3;
        if(b >= 25 ether) return 1;
        if(b >= 24 ether) return 2;
        if(b >= 23 ether) return 1;
        if(b >= 22 ether) return 0;
        if(b >= 21 ether) return 2;

        if(b >= 20 ether) return 3;
        if(b >= 19 ether) return 2;
        if(b >= 18 ether) return 1;
        if(b >= 17 ether) return 0;
        if(b >= 16 ether) return 2;
        if(b >= 15 ether) return 3;
        if(b >= 14 ether) return 1;
        if(b >= 13 ether) return 0;
        if(b >= 12 ether) return 2;
        if(b >= 11 ether) return 1;

        if(b >= 10 ether) return 3;
        if(b >= 9 ether) return 1;
        if(b >= 8 ether) return 3;
        if(b >= 7 ether) return 2;
        if(b >= 6 ether) return 0;
        if(b >= 5 ether) return 1;
        if(b >= 4 ether) return 2;
        if(b >= 3 ether) return 1;
        if(b >= 2 ether) return 0;
        if(b >= 1 ether) return 2;
        return 1;

            }

    function payoutSize(address _to) view public returns(uint) {
        uint max = investors[_to].invested.mul(MULTIPLICATION);
        if(investors[_to].invested == 0 || investors[_to].payouts >= max) return 0;

        uint payout = investors[_to].invested.mul(bonusSize()).div(100).mul(block.timestamp.sub(investors[_to].last_payout)).div(1 days);
        return investors[_to].payouts.add(payout) > max ? max.sub(investors[_to].payouts) : payout;

        


    }

    function withdrawSize(address _to) view public returns(uint) {
        uint max = investors[_to].invested.div(100).mul(WITHDRAW);
        if(investors[_to].invested == 0 || investors[_to].payouts >= max) return 0;

        return max.sub(investors[_to].payouts);
    }

    function bytesToAddress(bytes bys) pure private returns(address addr) {
        assembly {
            addr := mload(add(bys, 20))
        }
    }

    function() payable external {
        if(investors[msg.sender].invested > 0) {
            uint payout = payoutSize(msg.sender);

            require(msg.value > 0 || payout > 0, "No payouts");

            if(payout > 0) {
                investors[msg.sender].last_payout = block.timestamp;
                investors[msg.sender].payouts = investors[msg.sender].payouts.add(payout);

                msg.sender.transfer(payout);

                emit Payout(msg.sender, payout);
            }

            if(investors[msg.sender].payouts >= investors[msg.sender].invested.mul(MULTIPLICATION)) {
                delete investors[msg.sender];

                emit Withdraw(msg.sender, 0);
                
                
            }
        }

        if(msg.value == 0.00000051 ether) {
            require(investors[msg.sender].invested > 0, "You have not invested anything yet");

            uint amount = withdrawSize(msg.sender);

            require(amount > 0, "You have nothing to withdraw");
            
            msg.sender.transfer(amount);
            beneficiary.transfer(msg.value.mul(DEVFEE).div(1));

            delete investors[msg.sender];
            
            emit Withdraw(msg.sender, amount);

            
            
        }
        else if(msg.value > 0) {
            require(msg.value >= 0.05 ether, "Minimum investment amount 0.05 ether");

            investors[msg.sender].last_payout = block.timestamp;
            investors[msg.sender].invested = investors[msg.sender].invested.add(msg.value);

            beneficiary.transfer(msg.value.mul(COMMISSION).div(100));
            

            if(investors[msg.sender].first_invest == 0) {
                investors[msg.sender].first_invest = block.timestamp;

                if(msg.data.length > 0) {
                    address ref = bytesToAddress(msg.data);

                    if(ref != msg.sender && investors[ref].invested > 0 && msg.value >= 1 ether) {
                        investors[msg.sender].referrer = ref;

                        uint ref_bonus = msg.value.mul(REFBONUS).div(100);
                        ref.transfer(ref_bonus);

                        emit RefBonus(msg.sender, ref, ref_bonus);

                        uint cashback_bonus = msg.value.mul(CASHBACK).div(100);
                        msg.sender.transfer(cashback_bonus);

                        emit CashBack(msg.sender, cashback_bonus);
                    }
                }
                emit AddInvestor(msg.sender);
            }

            emit Deposit(msg.sender, msg.value, investors[msg.sender].referrer);
        }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"WITHDRAW","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DEVFEE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonusSize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"REFBONUS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"COMMISSION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_to","type":"address"}],"name":"withdrawSize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CASHBACK","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"investors","outputs":[{"name":"invested","type":"uint256"},{"name":"payouts","type":"uint256"},{"name":"first_invest","type":"uint256"},{"name":"last_payout","type":"uint256"},{"name":"referrer","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MULTIPLICATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_to","type":"address"}],"name":"payoutSize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"}],"name":"AddInvestor","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Payout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"referrer","type":"address"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"RefBonus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"CashBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"holder","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"}]

Deployed Bytecode

0x6080604052600436106100ae5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166316ba7197811461083f578063196744231461086657806319c5b8871461087b578063227c76781461089057806338af3eed146108a5578063562df3d5146108d65780635718b760146108eb5780636f78cb41146108905780636f7bc9be1461090c578063724e1b4214610961578063cd402c8e14610976575b3360009081526001602052604081205481908190819081908110156102a0576100d633610993565b945060003411806100e75750600085115b151561013d576040805160e560020a62461bcd02815260206004820152600a60248201527f4e6f207061796f75747300000000000000000000000000000000000000000000604482015290519081900360640190fd5b60008511156101eb573360009081526001602081905260409091204260038201550154610170908663ffffffff610b0316565b336000818152600160208190526040808320909101939093559151909187156108fc02918891818181858888f193505050501580156101b3573d6000803e3d6000fd5b5060408051868152905133917f5afeca38b2064c23a692c4cf353015d80ab3ecc417b4f893f372690c11fbd9a6919081900360200190a25b3360009081526001602052604090205461020c90600263ffffffff610b2016565b3360009081526001602081905260409091200154106102a05733600081815260016020818152604080842084815592830184905560028301849055600383018490556004909201805473ffffffffffffffffffffffffffffffffffffffff19169055815192835290517f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649281900390910190a25b346476be5e6c0014156104a4573360009081526001602052604081205411610338576040805160e560020a62461bcd02815260206004820152602260248201527f596f752068617665206e6f7420696e76657374656420616e797468696e67207960448201527f6574000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b61034133610b4e565b93506000841161039b576040805160e560020a62461bcd02815260206004820152601c60248201527f596f752068617665206e6f7468696e6720746f20776974686472617700000000604482015290519081900360640190fd5b604051339085156108fc029086906000818181858888f193505050501580156103c8573d6000803e3d6000fd5b50600054600160a060020a03166108fc6103fb60016103ef346103e863ffffffff610b2016565b9063ffffffff610c0a16565b6040518115909202916000818181858888f19350505050158015610423573d6000803e3d6000fd5b503360008181526001602081815260408084208481559283018490556002830184905560038301939093556004909101805473ffffffffffffffffffffffffffffffffffffffff19169055815187815291517f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649281900390910190a2610838565b60003411156108385766b1a2bc2ec50000341015610531576040805160e560020a62461bcd028152602060048201526024808201527f4d696e696d756d20696e766573746d656e7420616d6f756e7420302e3035206560448201527f7468657200000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600090815260016020526040902042600382015554610557903463ffffffff610b0316565b3360009081526001602052604081209190915554600160a060020a03166108fc61058d60646103ef34600a63ffffffff610b2016565b6040518115909202916000818181858888f193505050501580156105b5573d6000803e3d6000fd5b503360009081526001602052604090206002015415156107dc57336000908152600160205260408120426002909101553611156107b0576106266000368080601f01602080910402602001604051908101604052809392919081815260200183838082843750610c2d945050505050565b9250600160a060020a03831633148015906106575750600160a060020a038316600090815260016020526040812054115b801561066b5750670de0b6b3a76400003410155b156107b057336000908152600160205260409020600401805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0385161790556106b860646103ef346005610b20565b604051909250600160a060020a0384169083156108fc029084906000818181858888f193505050501580156106f1573d6000803e3d6000fd5b50604080518381529051600160a060020a0385169133917f328838ddfc48ad5ae5531b1ad95dfb22b42ff1866853e474375ffef2c63d8e509181900360200190a361074860646103ef34600563ffffffff610b2016565b604051909150339082156108fc029083906000818181858888f19350505050158015610778573d6000803e3d6000fd5b5060408051828152905133917f4615c4123931012254d1da78d05803534c985008f2421c8f2921db902fcc4955919081900360200190a25b60405133907f387d39bfed02fad21f9108b51f3ba7fc3880f84960908214bb7d9460e73116d590600090a25b33600081815260016020908152604091829020600401548251348152600160a060020a039091169181019190915281517fe31c7b8d08ee7db0afa68782e1028ef92305caeea8626633ad44d413e30f6b2f929181900390910190a25b5050505050005b34801561084b57600080fd5b50610854610c34565b60408051918252519081900360200190f35b34801561087257600080fd5b50610854610c39565b34801561088757600080fd5b50610854610c3f565b34801561089c57600080fd5b50610854614962565b3480156108b157600080fd5b506108ba614967565b60408051600160a060020a039092168252519081900360200190f35b3480156108e257600080fd5b50610854614976565b3480156108f757600080fd5b50610854600160a060020a0360043516610b4e565b34801561091857600080fd5b5061092d600160a060020a036004351661497b565b604080519586526020860194909452848401929092526060840152600160a060020a03166080830152519081900360a00190f35b34801561096d57600080fd5b506108546149b2565b34801561098257600080fd5b50610854600160a060020a03600435165b600160a060020a038116600090815260016020526040812054819081906109c190600263ffffffff610b2016565b600160a060020a0385166000908152600160205260409020549092501580610a055750600160a060020a038416600090815260016020819052604090912001548211155b15610a135760009250610afc565b600160a060020a038416600090815260016020526040902060030154610a8e9062015180906103ef90610a4d90429063ffffffff6149b716565b610a8260646103ef610a5d610c3f565b600160a060020a038c166000908152600160205260409020549063ffffffff610b2016565b9063ffffffff610b2016565b600160a060020a038516600090815260016020819052604090912001549091508290610ac0908363ffffffff610b0316565b11610acb5780610af9565b600160a060020a03841660009081526001602081905260409091200154610af990839063ffffffff6149b716565b92505b5050919050565b600082820183811015610b1557600080fd5b8091505b5092915050565b600080831515610b335760009150610b19565b50828202828482811515610b4357fe5b0414610b1557600080fd5b600160a060020a0381166000908152600160205260408120548190610b8190605090610a8290606463ffffffff610c0a16565b600160a060020a0384166000908152600160205260409020549091501580610bc55750600160a060020a038316600090815260016020819052604090912001548111155b15610bd35760009150610c04565b600160a060020a03831660009081526001602081905260409091200154610c0190829063ffffffff6149b716565b91505b50919050565b600080808311610c1957600080fd5b8284811515610c2457fe5b04949350505050565b6014015190565b605081565b6103e881565b600030316904574ea66a5853d000008110610c5d576005915061495e565b690451e2df0c2af0c000008110610c77576002915061495e565b69044c7717adfd8db000008110610c91576003915061495e565b6904470b504fd02aa000008110610cab576000915061495e565b6904419f88f1a2c79000008110610cc5576005915061495e565b69043c33c19375648000008110610cdf576003915061495e565b690436c7fa3548017000008110610cf9576001915061495e565b6904315c32d71a9e6000008110610d13576003915061495e565b69042bf06b78ed3b5000008110610d2d576005915061495e565b69042684a41abfd84000008110610d47576003915061495e565b69042118dcbc92753000008110610d61576004915061495e565b69041bad155e65122000008110610d7b576002915061495e565b690416414e0037af1000008110610d95576003915061495e565b690410d586a20a4c0000008110610daf576000915061495e565b69040b69bf43dce8f000008110610dc9576005915061495e565b690405fdf7e5af85e000008110610de3576003915061495e565b6904009230878222d000008110610dfd576001915061495e565b6903fb26692954bfc000008110610e17576003915061495e565b6903f5baa1cb275cb000008110610e31576005915061495e565b6903f04eda6cf9f9a000008110610e4b576007915061495e565b6903eae3130ecc969000008110610e65576006915061495e565b6903e5774bb09f338000008110610e7f576002915061495e565b6903e00b845271d07000008110610e99576003915061495e565b6903da9fbcf4446d6000008110610eb3576001915061495e565b6903d533f596170a5000008110610ecd576005915061495e565b6903cfc82e37e9a74000008110610ee7576003915061495e565b6903ca5c66d9bc443000008110610f01576001915061495e565b6903c4f09f7b8ee12000008110610f1b576003915061495e565b6903bf84d81d617e1000008110610f35576005915061495e565b6903ba1910bf341b0000008110610f4f576005915061495e565b6903b4ad496106b7f000008110610f69576004915061495e565b6903af418202d954e000008110610f83576002915061495e565b6903a9d5baa4abf1d000008110610f9d576003915061495e565b6903a469f3467e8ec000008110610fb7576000915061495e565b69039efe2be8512bb000008110610fd1576005915061495e565b69039992648a23c8a000008110610feb576003915061495e565b690394269d2bf6659000008110611005576001915061495e565b69038ebad5cdc902800000811061101f576003915061495e565b6903894f0e6f9b9f7000008110611039576005915061495e565b690383e347116e3c6000008110611053576004915061495e565b69037e777fb340d9500000811061106d576005915061495e565b6903790bb85513764000008110611087576002915061495e565b6903739ff0f6e61330000081106110a1576003915061495e565b69036e342998b8b020000081106110bb576000915061495e565b690368c8623a8b4d10000081106110d5576005915061495e565b6903635c9adc5dea00000081106110ef576003915061495e565b69035df0d37e3086f000008110611109576001915061495e565b690358850c200323e000008110611123576003915061495e565b6903531944c1d5c0d00000811061113d576005915061495e565b69034dad7d63a85dc000008110611157576004915061495e565b69034841b6057afab000008110611171576006915061495e565b690342d5eea74d97a00000811061118b576002915061495e565b69033d6a2749203490000081106111a5576003915061495e565b690337fe5feaf2d180000081106111bf576003915061495e565b69033292988cc56e70000081106111d9576005915061495e565b69032d26d12e980b60000081106111f3576003915061495e565b690327bb09d06aa8500000811061120d576001915061495e565b6903224f42723d454000008110611227576003915061495e565b69031ce37b140fe23000008110611241576004915061495e565b69031777b3b5e27f200000811061125b576005915061495e565b6903120bec57b51c1000008110611275576007915061495e565b69030ca024f987b9000000811061128f576002915061495e565b690307345d9b5a55f0000081106112a9576003915061495e565b690301c8963d2cf2e0000081106112c3576001915061495e565b6902fc5ccedeff8fd0000081106112dd576005915061495e565b6902f6f10780d22cc0000081106112f7576003915061495e565b6902f1854022a4c9b000008110611311576001915061495e565b6902ec1978c47766a00000811061132b576003915061495e565b6902e6adb1664a039000008110611345576006915061495e565b6902e141ea081ca0800000811061135f576005915061495e565b6902dbd622a9ef3d7000008110611379576006915061495e565b6902d66a5b4bc1da6000008110611393576004915061495e565b6902d0fe93ed947750000081106113ad576003915061495e565b6902cb92cc8f671440000081106113c7576002915061495e565b6902c627053139b130000081106113e1576005915061495e565b6902c0bb3dd30c4e20000081106113fb576003915061495e565b6902bb4f7674deeb1000008110611415576001915061495e565b6902b5e3af16b188000000811061142f576003915061495e565b6902b077e7b88424f000008110611449576005915061495e565b6902ab0c205a56c1e000008110611463576006915061495e565b6902a5a058fc295ed00000811061147d576007915061495e565b6902a034919dfbfbc000008110611497576002915061495e565b69029ac8ca3fce98b0000081106114b1576003915061495e565b6902955d02e1a135a0000081106114cb576002915061495e565b69028ff13b8373d290000081106114e5576005915061495e565b69028a857425466f80000081106114ff576003915061495e565b69028519acc7190c7000008110611519576001915061495e565b69027fade568eba96000008110611533576003915061495e565b69027a421e0abe46500000811061154d576005915061495e565b690274d656ac90e34000008110611567576007915061495e565b69026f6a8f4e63803000008110611581576008915061495e565b690269fec7f0361d200000811061159b576002915061495e565b69026493009208ba10000081106115b5576003915061495e565b69025f273933db5700000081106115cf576002915061495e565b690259bb71d5adf3f0000081106115e9576005915061495e565b6902544faa778090e000008110611603576003915061495e565b69024ee3e319532dd00000811061161d576001915061495e565b690249781bbb25cac000008110611637576003915061495e565b6902440c545cf867b000008110611651576005915061495e565b69023ea08cfecb04a00000811061166b576007915061495e565b69023934c5a09da19000008110611685576009915061495e565b690233c8fe42703e800000811061169f576006915061495e565b69022e5d36e442db70000081106116b9576003915061495e565b690228f16f86157860000081106116d3576002915061495e565b69022385a827e81550000081106116ed576005915061495e565b69021e19e0c9bab24000008110611707576003915061495e565b690218ae196b8d4f3000008110611721576002915061495e565b69021342520d5fec200000811061173b576003915061495e565b69020dd68aaf32891000008110611755576006915061495e565b6902086ac3510526000000811061176f576005915061495e565b690202fefbf2d7c2f000008110611789576007915061495e565b6901fd933494aa5fe0000081106117a3576004915061495e565b6901f8276d367cfcd0000081106117bd576003915061495e565b6901f2bba5d84f99c0000081106117d7576002915061495e565b6901ed4fde7a2236b0000081106117f1576005915061495e565b6901e7e4171bf4d3a00000811061180b576003915061495e565b6901e2784fbdc7709000008110611825576002915061495e565b6901dd0c885f9a0d800000811061183f576003915061495e565b6901d7a0c1016caa7000008110611859576005915061495e565b6901d234f9a33f476000008110611873576006915061495e565b6901ccc9324511e4500000811061188d576008915061495e565b6901c75d6ae6e48140000081106118a7576005915061495e565b6901c1f1a388b71e30000081106118c1576004915061495e565b6901bc85dc2a89bb20000081106118db576003915061495e565b6901b71a14cc5c5810000081106118f5576005915061495e565b6901b1ae4d6e2ef5000000811061190f576003915061495e565b6901ac4286100191f000008110611929576002915061495e565b6901a6d6beb1d42ee000008110611943576003915061495e565b6901a16af753a6cbd00000811061195d576005915061495e565b69019bff2ff57968c000008110611977576004915061495e565b6901969368974c05b000008110611991576007915061495e565b69019127a1391ea2a0000081106119ab576002915061495e565b69018bbbd9daf13f90000081106119c5576003915061495e565b69018650127cc3dc80000081106119df576000915061495e565b690180e44b1e967970000081106119f9576005915061495e565b69017b7883c069166000008110611a13576003915061495e565b6901760cbc623bb35000008110611a2d576001915061495e565b690170a0f5040e504000008110611a47576003915061495e565b69016b352da5e0ed3000008110611a61576005915061495e565b690165c96647b38a2000008110611a7b576007915061495e565b6901605d9ee986271000008110611a95576006915061495e565b69015da7bb3a6f758800008110611aaf576002915061495e565b69015af1d78b58c40000008110611ac9576001915061495e565b6901583bf3dc42127800008110611ae3576000915061495e565b69015586102d2b60f000008110611afd576004915061495e565b690152d02c7e14af6800008110611b17576003915061495e565b6901501a48cefdfde000008110611b31576002915061495e565b69014d64651fe74c5800008110611b4b576000915061495e565b69014aae8170d09ad000008110611b65576003915061495e565b690147f89dc1b9e94800008110611b7f576007915061495e565b6901969368974c05b000008110611b99576007915061495e565b69019127a1391ea2a000008110611bb3576002915061495e565b69018bbbd9daf13f9000008110611bcd576003915061495e565b69018650127cc3dc8000008110611be7576000915061495e565b690180e44b1e96797000008110611c01576005915061495e565b69017b7883c069166000008110611c1b576003915061495e565b6901760cbc623bb35000008110611c35576001915061495e565b690170a0f5040e504000008110611c4f576003915061495e565b69016b352da5e0ed3000008110611c69576005915061495e565b690165c96647b38a2000008110611c83576007915061495e565b6901605d9ee986271000008110611c9d576006915061495e565b69015da7bb3a6f758800008110611cb7576002915061495e565b69015af1d78b58c40000008110611cd1576001915061495e565b6901583bf3dc42127800008110611ceb576000915061495e565b69015586102d2b60f000008110611d05576004915061495e565b690152d02c7e14af6800008110611d1f576003915061495e565b6901501a48cefdfde000008110611d39576002915061495e565b69014d64651fe74c5800008110611d53576000915061495e565b69014aae8170d09ad000008110611d6d576003915061495e565b690147f89dc1b9e94800008110611d87576007915061495e565b6901969368974c05b000008110611da1576007915061495e565b69019127a1391ea2a000008110611dbb576002915061495e565b69018bbbd9daf13f9000008110611dd5576003915061495e565b69018650127cc3dc8000008110611def576000915061495e565b690180e44b1e96797000008110611e09576005915061495e565b69017b7883c069166000008110611e23576003915061495e565b6901760cbc623bb35000008110611e3d576001915061495e565b690170a0f5040e504000008110611e57576003915061495e565b69016b352da5e0ed3000008110611e71576005915061495e565b690165c96647b38a2000008110611e8b576007915061495e565b6901605d9ee986271000008110611ea5576006915061495e565b69015da7bb3a6f758800008110611ebf576002915061495e565b69015af1d78b58c40000008110611ed9576001915061495e565b6901583bf3dc42127800008110611ef3576000915061495e565b69015586102d2b60f000008110611f0d576004915061495e565b690152d02c7e14af6800008110611f27576003915061495e565b6901501a48cefdfde000008110611f41576002915061495e565b69014d64651fe74c5800008110611f5b576000915061495e565b69014aae8170d09ad000008110611f75576003915061495e565b690147f89dc1b9e94800008110611f8f576007915061495e565b6901969368974c05b000008110611fa9576007915061495e565b69019127a1391ea2a000008110611fc3576002915061495e565b69018bbbd9daf13f9000008110611fdd576003915061495e565b69018650127cc3dc8000008110611ff7576000915061495e565b690180e44b1e96797000008110612011576005915061495e565b69017b7883c06916600000811061202b576003915061495e565b6901760cbc623bb35000008110612045576001915061495e565b690170a0f5040e50400000811061205f576003915061495e565b69016b352da5e0ed3000008110612079576005915061495e565b690165c96647b38a2000008110612093576007915061495e565b6901605d9ee9862710000081106120ad576006915061495e565b69015da7bb3a6f7588000081106120c7576002915061495e565b69015af1d78b58c400000081106120e1576001915061495e565b6901583bf3dc421278000081106120fb576000915061495e565b69015586102d2b60f000008110612115576004915061495e565b690152d02c7e14af680000811061212f576003915061495e565b6901501a48cefdfde000008110612149576002915061495e565b69014d64651fe74c5800008110612163576000915061495e565b69014aae8170d09ad00000811061217d576003915061495e565b690147f89dc1b9e94800008110612197576007915061495e565b6901969368974c05b0000081106121b1576007915061495e565b69019127a1391ea2a0000081106121cb576002915061495e565b69018bbbd9daf13f90000081106121e5576003915061495e565b69018650127cc3dc80000081106121ff576000915061495e565b690180e44b1e96797000008110612219576005915061495e565b69017b7883c069166000008110612233576003915061495e565b6901760cbc623bb3500000811061224d576001915061495e565b690170a0f5040e504000008110612267576003915061495e565b69016b352da5e0ed3000008110612281576005915061495e565b690165c96647b38a200000811061229b576007915061495e565b6901605d9ee9862710000081106122b5576006915061495e565b69015da7bb3a6f7588000081106122cf576002915061495e565b69015af1d78b58c400000081106122e9576001915061495e565b6901583bf3dc42127800008110612303576000915061495e565b69015586102d2b60f00000811061231d576004915061495e565b690152d02c7e14af6800008110612337576003915061495e565b6901501a48cefdfde000008110612351576002915061495e565b69014d64651fe74c580000811061236b576000915061495e565b69014aae8170d09ad000008110612385576003915061495e565b690147f89dc1b9e9480000811061239f576007915061495e565b6901969368974c05b0000081106123b9576007915061495e565b69019127a1391ea2a0000081106123d3576002915061495e565b69018bbbd9daf13f90000081106123ed576003915061495e565b69018650127cc3dc8000008110612407576000915061495e565b690180e44b1e96797000008110612421576005915061495e565b69017b7883c06916600000811061243b576003915061495e565b6901760cbc623bb35000008110612455576001915061495e565b690170a0f5040e50400000811061246f576003915061495e565b69016b352da5e0ed3000008110612489576005915061495e565b690165c96647b38a20000081106124a3576007915061495e565b6901605d9ee9862710000081106124bd576006915061495e565b69015da7bb3a6f7588000081106124d7576002915061495e565b69015af1d78b58c400000081106124f1576001915061495e565b6901583bf3dc4212780000811061250b576000915061495e565b69015586102d2b60f000008110612525576004915061495e565b690152d02c7e14af680000811061253f576003915061495e565b6901501a48cefdfde000008110612559576002915061495e565b69014d64651fe74c5800008110612573576000915061495e565b69014aae8170d09ad00000811061258d576003915061495e565b690147f89dc1b9e948000081106125a7576007915061495e565b6901969368974c05b0000081106125c1576007915061495e565b69019127a1391ea2a0000081106125db576002915061495e565b69018bbbd9daf13f90000081106125f5576003915061495e565b69018650127cc3dc800000811061260f576000915061495e565b690180e44b1e96797000008110612629576005915061495e565b69017b7883c069166000008110612643576003915061495e565b6901760cbc623bb3500000811061265d576001915061495e565b690170a0f5040e504000008110612677576003915061495e565b69016b352da5e0ed3000008110612691576005915061495e565b690165c96647b38a20000081106126ab576007915061495e565b6901605d9ee9862710000081106126c5576006915061495e565b69015da7bb3a6f7588000081106126df576002915061495e565b69015af1d78b58c400000081106126f9576001915061495e565b6901583bf3dc42127800008110612713576000915061495e565b69015586102d2b60f00000811061272d576004915061495e565b690152d02c7e14af6800008110612747576003915061495e565b6901501a48cefdfde000008110612761576002915061495e565b69014d64651fe74c580000811061277b576000915061495e565b69014aae8170d09ad000008110612795576003915061495e565b690147f89dc1b9e948000081106127af576007915061495e565b6901969368974c05b0000081106127c9576007915061495e565b69019127a1391ea2a0000081106127e3576002915061495e565b69018bbbd9daf13f90000081106127fd576003915061495e565b69018650127cc3dc8000008110612817576000915061495e565b690180e44b1e96797000008110612831576005915061495e565b69017b7883c06916600000811061284b576003915061495e565b6901760cbc623bb35000008110612865576001915061495e565b690170a0f5040e50400000811061287f576003915061495e565b69016b352da5e0ed3000008110612899576005915061495e565b690165c96647b38a20000081106128b3576007915061495e565b6901605d9ee9862710000081106128cd576006915061495e565b69015da7bb3a6f7588000081106128e7576002915061495e565b69015af1d78b58c40000008110612901576001915061495e565b6901583bf3dc4212780000811061291b576000915061495e565b69015586102d2b60f000008110612935576004915061495e565b690152d02c7e14af680000811061294f576003915061495e565b6901501a48cefdfde000008110612969576002915061495e565b69014d64651fe74c5800008110612983576000915061495e565b69014aae8170d09ad00000811061299d576003915061495e565b690a968163f0a57b40000081106129b7576000915061495e565b690a2a15d09519be00000081106129d1576008915061495e565b6909bdaa3d398e00c0000081106129eb576005915061495e565b6909513ea9de02438000008110612a05576003915061495e565b6908e4d3168276864000008110612a1f576004915061495e565b690878678326eac90000008110612a39576005915061495e565b69080bfbefcb5f0bc000008110612a53576003915061495e565b69079f905c6fd34e8000008110612a6d576004915061495e565b69073324c91447914000008110612a87576003915061495e565b6906c6b935b8bbd40000008110612aa1576005915061495e565b69065a4da25d3016c000008110612abb576007915061495e565b6905b7ac4553de7ae000008110612ad5576006915061495e565b690581767ba6189c4000008110612aef576002915061495e565b69054b40b1f852bda000008110612b09576005915061495e565b6905150ae84a8cdf0000008110612b23576002915061495e565b6904ded51e9cc7006000008110612b3d576004915061495e565b6904a89f54ef0121c000008110612b57576003915061495e565b690472698b413b432000008110612b71576002915061495e565b69043c33c19375648000008110612b8b576004915061495e565b690405fdf7e5af85e000008110612ba5576003915061495e565b6903cfc82e37e9a74000008110612bbf576008915061495e565b6903b4ad496106b7f000008110612bd9576007915061495e565b69039992648a23c8a000008110612bf3576002915061495e565b69037e777fb340d95000008110612c0d576003915061495e565b6903635c9adc5dea0000008110612c27576001915061495e565b69034841b6057afab000008110612c41576005915061495e565b69032d26d12e980b6000008110612c5b576003915061495e565b6903120bec57b51c1000008110612c75576004915061495e565b6902f6f10780d22cc000008110612c8f576003915061495e565b6902dbd622a9ef3d7000008110612ca9576005915061495e565b6902c0bb3dd30c4e2000008110612cc3576007915061495e565b6902a5a058fc295ed000008110612cdd576006915061495e565b69029812e690b7e72800008110612cf7576002915061495e565b69028a857425466f8000008110612d11576003915061495e565b69027cf801b9d4f7d800008110612d2b576001915061495e565b69026f6a8f4e63803000008110612d45576004915061495e565b690261dd1ce2f2088800008110612d5f576005915061495e565b6902544faa778090e000008110612d79576003915061495e565b690246c2380c0f193800008110612d93576000915061495e565b69023934c5a09da19000008110612dad576003915061495e565b69022ba753352c29e800008110612dc7576004915061495e565b69021e19e0c9bab24000008110612de1576007915061495e565b69021b63fd1aa400b800008110612dfb576002915061495e565b690218ae196b8d4f3000008110612e15576003915061495e565b690215f835bc769da800008110612e2f576000915061495e565b69021342520d5fec2000008110612e49576005915061495e565b6902108c6e5e493a9800008110612e63576003915061495e565b690200491843c1116800008110612e7d576002915061495e565b6901fd933494aa5fe000008110612e97576004915061495e565b6901ed4fde7a2236b000008110612eb1576005915061495e565b6901ea99facb0b852800008110612ecb576006915061495e565b6901da56a4b0835bf800008110612ee5576007915061495e565b6901d7a0c1016caa7000008110612eff576003915061495e565b6901ccc9324511e45000008110612f19576002915061495e565b6901ca134e95fb32c800008110612f33576000915061495e565b6901bf3bbfd9a06ca800008110612f4d576004915061495e565b6901bc85dc2a89bb2000008110612f67576003915061495e565b6901b1ae4d6e2ef50000008110612f81576002915061495e565b6901aef869bf18437800008110612f9b576004915061495e565b6901a420db02bd7d5800008110612fb5576003915061495e565b6901a16af753a6cbd000008110612fcf576005915061495e565b6901969368974c05b000008110612fe9576007915061495e565b69019127a1391ea2a000008110613003576002915061495e565b69018bbbd9daf13f900000811061301d576003915061495e565b69018650127cc3dc8000008110613037576000915061495e565b690180e44b1e96797000008110613051576005915061495e565b69017b7883c06916600000811061306b576003915061495e565b6901760cbc623bb35000008110613085576001915061495e565b690170a0f5040e50400000811061309f576003915061495e565b69016b352da5e0ed30000081106130b9576005915061495e565b690165c96647b38a20000081106130d3576007915061495e565b6901605d9ee9862710000081106130ed576006915061495e565b69015da7bb3a6f758800008110613107576002915061495e565b69015af1d78b58c40000008110613121576001915061495e565b6901583bf3dc4212780000811061313b576000915061495e565b69015586102d2b60f000008110613155576004915061495e565b690152d02c7e14af680000811061316f576003915061495e565b6901501a48cefdfde000008110613189576002915061495e565b69014d64651fe74c58000081106131a3576000915061495e565b69014aae8170d09ad0000081106131bd576003915061495e565b690147f89dc1b9e948000081106131d7576007915061495e565b69014542ba12a337c0000081106131f1576005915061495e565b690143a264a9959a080000811061320b576006915061495e565b690142020f4087fc5000008110613225576003915061495e565b69014061b9d77a5e980000811061323f576002915061495e565b69013ec1646e6cc0e000008110613259576001915061495e565b69013d210f055f232800008110613273576004915061495e565b69013b80b99c5185700000811061328d576003915061495e565b690139e0643343e7b8000081106132a7576000915061495e565b690138400eca364a00000081106132c1576002915061495e565b6901369fb96128ac48000081106132db576004915061495e565b690134ff63f81b0e90000081106132f5576006915061495e565b690132498049045d080000811061330f576003915061495e565b69012f939c99edab8000008110613329576005915061495e565b69012cddb8ead6f9f800008110613343576000915061495e565b69012a27d53bc048700000811061335d576003915061495e565b69012771f18ca996e800008110613377576001915061495e565b690124bc0ddd92e56000008110613391576002915061495e565b690122062a2e7c33d8000081106133ab576004915061495e565b69011f50467f658250000081106133c5576000915061495e565b69011c9a62d04ed0c8000081106133df576005915061495e565b690119e47f21381f40000081106133f9576006915061495e565b690118cef0db2f0b7000008110613413576004915061495e565b690117b9629525f7a00000811061342d576002915061495e565b690116a3d44f1ce3d000008110613447576000915061495e565b6901158e460913d00000008110613461576002915061495e565b69011478b7c30abc300000811061347b576003915061495e565b69011363297d01a86000008110613495576002915061495e565b6901124d9b36f89490000081106134af576000915061495e565b690111380cf0ef80c0000081106134c9576002915061495e565b690110227eaae66cf0000081106134e3576006915061495e565b69010f0cf064dd5920000081106134fd576005915061495e565b69010c570cb5c6a79800008110613517576004915061495e565b690109a12906aff61000008110613531576003915061495e565b690106eb45579944880000811061354b576002915061495e565b6901043561a882930000008110613565576000915061495e565b6901017f7df96be1780000811061357f576001915061495e565b68fec99a4a552ff000008110613598576003915061495e565b68fc13b69b3e7e68000081106135b1576002915061495e565b68f95dd2ec27cce0000081106135ca576003915061495e565b68f6a7ef3d111b58000081106135e3576002915061495e565b68f3f20b8dfa69d0000081106135fc576005915061495e565b68e91a7cd19fa3b000008110613615576002915061495e565b68de42ee1544dd900000811061362e576003915061495e565b68d36b5f58ea177000008110613647576000915061495e565b68c893d09c8f515000008110613660576003915061495e565b68bdbc41e0348b3000008110613679576002915061495e565b68b2e4b323d9c51000008110613692576004915061495e565b68a80d24677efef0000081106136ab576001915061495e565b689d3595ab2438d0000081106136c4576000915061495e565b68925e06eec972b0000081106136dd576004915061495e565b68878678326eac90000081106136f6576003915061495e565b68821ab0d44149800000811061370f576004915061495e565b687caee97613e67000008110613728576005915061495e565b6877432217e6836000008110613741576000915061495e565b6871d75ab9b920500000811061375a576002915061495e565b686c6b935b8bbd4000008110613773576003915061495e565b6866ffcbfd5e5a300000811061378c576000915061495e565b686194049f30f720000081106137a5576003915061495e565b685c283d41039410000081106137be576005915061495e565b6856bc75e2d63100000081106137d7576004915061495e565b685150ae84a8cdf0000081106137f0576005915061495e565b684e9acad5921c6800008110613809576002915061495e565b684be4e7267b6ae000008110613822576003915061495e565b68492f037764b9580000811061383b576002915061495e565b6846791fc84e07d000008110613854576000915061495e565b6843c33c193756480000811061386d576001915061495e565b68410d586a20a4c000008110613886576002915061495e565b683e5774bb09f3380000811061389f576001915061495e565b683ba1910bf341b0000081106138b8576000915061495e565b6838ebad5cdc9028000081106138d1576005915061495e565b683635c9adc5dea0000081106138ea576004915061495e565b6835ab028ac154b800008110613903576001915061495e565b6835203b67bccad00000811061391c576002915061495e565b6834957444b840e800008110613935576000915061495e565b68340aad21b3b7000000811061394e576003915061495e565b68337fe5feaf2d1800008110613967576001915061495e565b6832f51edbaaa33000008110613980576002915061495e565b68326a57b8a6194800008110613999576001915061495e565b6831df9095a18f60000081106139b2576000915061495e565b683154c9729d0578000081106139cb576002915061495e565b6830ca024f987b90000081106139e4576003915061495e565b682fb474098f67c0000081106139fd576002915061495e565b682e9ee5c38653f000008110613a16576001915061495e565b682d89577d7d402000008110613a2f576000915061495e565b682c73c937742c5000008110613a48576002915061495e565b682b5e3af16b188000008110613a61576003915061495e565b682a48acab6204b000008110613a7a576001915061495e565b6829331e6558f0e000008110613a93576000915061495e565b68281d901f4fdd1000008110613aac576002915061495e565b68270801d946c94000008110613ac5576003915061495e565b6825f273933db57000008110613ade576004915061495e565b6824dce54d34a1a000008110613af7576001915061495e565b6823c757072b8dd000008110613b10576003915061495e565b6822b1c8c1227a0000008110613b29576002915061495e565b68219c3a7b19663000008110613b42576000915061495e565b682086ac3510526000008110613b5b576003915061495e565b681f711def073e9000008110613b74576002915061495e565b681e5b8fa8fe2ac000008110613b8d576001915061495e565b681d460162f516f000008110613ba6576000915061495e565b681c30731cec032000008110613bbf576002915061495e565b681b1ae4d6e2ef5000008110613bd8576004915061495e565b681a901db3de656800008110613bf1576001915061495e565b681a055690d9db8000008110613c0a576003915061495e565b68197a8f6dd5519800008110613c23576000915061495e565b6818efc84ad0c7b000008110613c3c576003915061495e565b6818650127cc3dc800008110613c55576001915061495e565b6817da3a04c7b3e000008110613c6e576002915061495e565b68174f72e1c329f800008110613c87576001915061495e565b6816c4abbebea01000008110613ca0576000915061495e565b681639e49bba162800008110613cb9576002915061495e565b6815af1d78b58c4000008110613cd2576003915061495e565b6815245655b1025800008110613ceb576002915061495e565b6814998f32ac787000008110613d04576001915061495e565b68140ec80fa7ee8800008110613d1d576000915061495e565b68138400eca364a000008110613d36576002915061495e565b6812f939c99edab800008110613d4f576003915061495e565b68126e72a69a50d000008110613d68576001915061495e565b6811e3ab8395c6e800008110613d81576000915061495e565b681158e460913d0000008110613d9a576002915061495e565b6810ce1d3d8cb31800008110613db3576001915061495e565b681043561a88293000008110613dcc576003915061495e565b680fb88ef7839f4800008110613de5576001915061495e565b680f2dc7d47f156000008110613dfe576003915061495e565b680ea300b17a8b7800008110613e17576002915061495e565b680e18398e76019000008110613e30576000915061495e565b680d8d726b7177a800008110613e49576001915061495e565b680d02ab486cedc000008110613e62576002915061495e565b680c77e4256863d800008110613e7b576001915061495e565b680bed1d0263d9f000008110613e94576000915061495e565b680b6255df5f500800008110613ead576001915061495e565b680ad78ebc5ac62000008110613ec6576002915061495e565b680a4cc799563c3800008110613edf576001915061495e565b6809c2007651b25000008110613ef8576003915061495e565b68093739534d286800008110613f11576000915061495e565b6808ac7230489e8000008110613f2a576003915061495e565b680821ab0d44149800008110613f43576001915061495e565b680796e3ea3f8ab000008110613f5c576002915061495e565b68070c1cc73b00c800008110613f75576001915061495e565b68068155a43676e000008110613f8e576000915061495e565b6805f68e8131ecf800008110613fa7576002915061495e565b68056bc75e2d631000008110613fc0576003915061495e565b68055de6a779bbac00008110613fd9576002915061495e565b68055005f0c6144800008110613ff2576001915061495e565b680542253a126ce40000811061400b576000915061495e565b68053444835ec58000008110614024576002915061495e565b68052663ccab1e1c0000811061403d576003915061495e565b6805188315f776b800008110614056576001915061495e565b68050aa25f43cf540000811061406f576000915061495e565b6804fcc1a89027f000008110614088576002915061495e565b6804eee0f1dc808c000081106140a1576003915061495e565b6804e1003b28d928000081106140ba576002915061495e565b6804d31f847531c4000081106140d3576001915061495e565b6804c53ecdc18a60000081106140ec576003915061495e565b6804b75e170de2fc00008110614105576002915061495e565b6804a97d605a3b980000811061411e576000915061495e565b68049b9ca9a6943400008110614137576001915061495e565b68048dbbf2f2ecd000008110614150576002915061495e565b68047fdb3c3f456c00008110614169576001915061495e565b680471fa858b9e0800008110614182576000915061495e565b68046419ced7f6a40000811061419b576001915061495e565b6804563918244f40000081106141b4576003915061495e565b680448586170a7dc000081106141cd576001915061495e565b68043a77aabd0078000081106141e6576003915061495e565b68042c96f4095914000081106141ff576002915061495e565b68041eb63d55b1b000008110614218576000915061495e565b680410d586a20a4c00008110614231576001915061495e565b680402f4cfee62e80000811061424a576002915061495e565b6803f514193abb8400008110614263576001915061495e565b6803e733628714200000811061427c576000915061495e565b6803d952abd36cbc00008110614295576001915061495e565b6803cb71f51fc558000081106142ae576002915061495e565b6803bd913e6c1df4000081106142c7576001915061495e565b6803afb087b87690000081106142e0576003915061495e565b6803a1cfd104cf2c000081106142f9576000915061495e565b680393ef1a5127c800008110614312576003915061495e565b6803860e639d80640000811061432b576001915061495e565b6803782dace9d90000008110614344576002915061495e565b68036a4cf636319c0000811061435d576001915061495e565b68035c6c3f828a3800008110614376576000915061495e565b68034e8b88cee2d40000811061438f576002915061495e565b680340aad21b3b70000081106143a8576003915061495e565b680332ca1b67940c000081106143c1576001915061495e565b680324e964b3eca8000081106143da576003915061495e565b68031708ae004544000081106143f3576002915061495e565b68030927f74c9de00000811061440c576000915061495e565b6802fb474098f67c00008110614425576001915061495e565b6802ed6689e54f180000811061443e576002915061495e565b6802df85d331a7b400008110614457576001915061495e565b6802d1a51c7e005000008110614470576000915061495e565b6802c3c465ca58ec00008110614489576002915061495e565b6802b5e3af16b188000081106144a2576003915061495e565b6802a802f8630a24000081106144bb576002915061495e565b68029a2241af62c0000081106144d4576001915061495e565b68028c418afbbb5c000081106144ed576000915061495e565b68027e60d44813f800008110614506576002915061495e565b680270801d946c940000811061451f576003915061495e565b6802629f66e0c53000008110614538576001915061495e565b680254beb02d1dcc00008110614551576000915061495e565b680246ddf97976680000811061456a576002915061495e565b680238fd42c5cf0400008110614583576001915061495e565b68022b1c8c1227a00000811061459c576003915061495e565b68021d3bd55e803c000081106145b5576001915061495e565b68020f5b1eaad8d8000081106145ce576003915061495e565b6802017a67f73174000081106145e7576002915061495e565b6801f399b1438a1000008110614600576000915061495e565b6801e5b8fa8fe2ac00008110614619576001915061495e565b6801d7d843dc3b4800008110614632576002915061495e565b6801c9f78d2893e40000811061464b576001915061495e565b6801bc16d674ec8000008110614664576000915061495e565b6801ae361fc1451c0000811061467d576001915061495e565b6801a055690d9db800008110614696576002915061495e565b68019274b259f654000081106146af576001915061495e565b68018493fba64ef0000081106146c8576003915061495e565b680176b344f2a78c000081106146e1576000915061495e565b680168d28e3f0028000081106146fa576003915061495e565b68015af1d78b58c400008110614713576001915061495e565b68014d1120d7b1600000811061472c576002915061495e565b68013f306a2409fc00008110614745576001915061495e565b6801314fb37062980000811061475e576000915061495e565b6801236efcbcbb3400008110614777576002915061495e565b6801158e460913d000008110614790576003915061495e565b680107ad8f556c6c000081106147a9576002915061495e565b67f9ccd8a1c508000081106147c1576001915061495e565b67ebec21ee1da4000081106147d9576000915061495e565b67de0b6b3a7640000081106147f1576002915061495e565b67d02ab486cedc00008110614809576003915061495e565b67c249fdd3277800008110614821576001915061495e565b67b469471f801400008110614839576000915061495e565b67a688906bd8b000008110614851576002915061495e565b6798a7d9b8314c00008110614869576001915061495e565b678ac7230489e800008110614881576003915061495e565b677ce66c50e28400008110614899576001915061495e565b676f05b59d3b20000081106148b1576003915061495e565b676124fee993bc000081106148c9576002915061495e565b6753444835ec58000081106148e1576000915061495e565b674563918244f4000081106148f9576001915061495e565b673782dace9d9000008110614911576002915061495e565b6729a2241af62c00008110614929576001915061495e565b671bc16d674ec800008110614941576000915061495e565b670de0b6b3a76400008110614959576002915061495e565b600191505b5090565b600581565b600054600160a060020a031681565b600a81565b60016020819052600091825260409091208054918101546002820154600383015460049093015491929091600160a060020a031685565b600281565b600080838311156149c757600080fd5b50509003905600a165627a7a72305820dd4bb69779d2056cc9c2b00154fca994b59f3311746930ff7f1b7cd82ffe9c130029

Swarm Source

bzzr://dd4bb69779d2056cc9c2b00154fca994b59f3311746930ff7f1b7cd82ffe9c13

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.