ETH Price: $3,206.75 (-1.74%)

Contract

0xaa72eb4B2d6BBad154cB8acB598da9824bad8308
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer94077952020-02-03 5:53:071745 days ago1580709187IN
0xaa72eb4B...24bad8308
0 ETH0.000037271
Approve88533462019-11-01 15:13:301838 days ago1572621210IN
0xaa72eb4B...24bad8308
0 ETH0.000046081
Transfer85970092019-09-22 4:58:071879 days ago1569128287IN
0xaa72eb4B...24bad8308
0 ETH0.000031
Transfer85967452019-09-22 3:59:431879 days ago1569124783IN
0xaa72eb4B...24bad8308
0 ETH0.000082681
Transfer85900962019-09-21 3:08:051880 days ago1569035285IN
0xaa72eb4B...24bad8308
0 ETH0.00006252.5
Transfer85613882019-09-16 15:49:351884 days ago1568648975IN
0xaa72eb4B...24bad8308
0 ETH0.0007427420
Transfer84769332019-09-03 11:30:541898 days ago1567510254IN
0xaa72eb4B...24bad8308
0 ETH0.000044272
Transfer84649952019-09-01 14:49:431899 days ago1567349383IN
0xaa72eb4B...24bad8308
0 ETH0.000043742
Transfer84649092019-09-01 14:32:251899 days ago1567348345IN
0xaa72eb4B...24bad8308
0 ETH0.000248063
Withdraw84643502019-09-01 12:28:261900 days ago1567340906IN
0xaa72eb4B...24bad8308
0 ETH0.0003003510
Transfer84605772019-08-31 22:12:051900 days ago1567289525IN
0xaa72eb4B...24bad8308
0 ETH0.000044272
Transfer84605062019-08-31 21:58:011900 days ago1567288681IN
0xaa72eb4B...24bad8308
0 ETH0.000522996.32500019
Transfer84571862019-08-31 9:41:181901 days ago1567244478IN
0xaa72eb4B...24bad8308
0 ETH0.000124031.50000025
Transfer84565962019-08-31 7:25:501901 days ago1567236350IN
0xaa72eb4B...24bad8308
0.01 ETH0.0004856411.50000025
Transfer84565512019-08-31 7:18:541901 days ago1567235934IN
0xaa72eb4B...24bad8308
0 ETH0.0008268710
Transfer84565112019-08-31 7:09:461901 days ago1567235386IN
0xaa72eb4B...24bad8308
0 ETH0.000109355
Transfer84561682019-08-31 5:53:511901 days ago1567230831IN
0xaa72eb4B...24bad8308
0 ETH0.00057511.50000025
Transfer84560642019-08-31 5:30:111901 days ago1567229411IN
0xaa72eb4B...24bad8308
0 ETH0.000248063
Transfer84559322019-08-31 5:01:131901 days ago1567227673IN
0xaa72eb4B...24bad8308
0 ETH0.000082681
Transfer84557842019-08-31 4:28:161901 days ago1567225696IN
0xaa72eb4B...24bad8308
0 ETH0.0002110
Transfer84557822019-08-31 4:28:021901 days ago1567225682IN
0xaa72eb4B...24bad8308
0 ETH0.000165372
Transfer84557332019-08-31 4:14:591901 days ago1567224899IN
0xaa72eb4B...24bad8308
0 ETH0.000165372
Transfer84557312019-08-31 4:14:441901 days ago1567224884IN
0xaa72eb4B...24bad8308
0 ETH0.000144626.88671875
Transfer84556762019-08-31 4:01:261901 days ago1567224086IN
0xaa72eb4B...24bad8308
0 ETH0.000950911.50000025
Transfer84556582019-08-31 3:54:551901 days ago1567223695IN
0xaa72eb4B...24bad8308
0 ETH0.000248063
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
84643502019-09-01 12:28:261900 days ago1567340906
0xaa72eb4B...24bad8308
0.0101 ETH
84524622019-08-30 15:49:221901 days ago1567180162
0xaa72eb4B...24bad8308
0.0001 ETH
84449442019-08-29 11:56:321903 days ago1567079792
0xaa72eb4B...24bad8308
0.01 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DXC

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

/**
 *Submitted for verification at Etherscan.io on 2019-08-20
*/

pragma solidity ^0.4.18;

library SafeMath {
    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;
    }
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

contract AltcoinToken {
    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 DXC is ERC20 {
    
    using SafeMath for uint256;
    address owner = 0xBc4b57D2789a0EfF23662F08A4210351909Aa4B0;

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

    string public constant name = "Doge X Coin";						
    string public constant symbol = "DXC";							
    uint public constant decimals = 18;    							
    uint256 public totalSupply = 100000000000e18;		
	
	uint256 public tokenPerETH = 10000000000e18;
	uint256 public valueToGive = 100000e18;
    uint256 public totalDistributed = 0;       
	uint256 public totalRemaining = totalSupply.sub(totalDistributed);	

    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 Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    function DXC () public {
        owner = msg.sender;
		uint256 teamtoken = 1e1;	
        distr(owner, teamtoken);
    }
    
    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);   
		totalRemaining = totalRemaining.sub(_amount);		
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }
           
    function () external payable {
		address investor = msg.sender;
		uint256 invest = msg.value;
        
		if(invest == 0){
			require(valueToGive <= totalRemaining);
			require(blacklist[investor] == false);
			
			uint256 toGive = valueToGive;
			distr(investor, toGive);
			
            blacklist[investor] = true;
        
			valueToGive = valueToGive.div(1).mul(1);
		}
		
		if(invest > 0){
			buyToken(investor, invest);
		}
	}
	
	function buyToken(address _investor, uint256 _invest) canDistr public {
		uint256 toGive = tokenPerETH.mul(_invest) / 1 ether;
		uint256	bonus = 0;
		if(_invest >= 1 ether/100 && _invest < 1 ether/100000){ 
			bonus = toGive*1/100;
		}
		if(_invest >= 1 ether/100 && _invest < 5 ether/100){ 
			bonus = toGive*10/100;
		}
		if(_invest >= 1 ether/100 && _invest < 1 ether/10){ //if 0,01
			bonus = toGive*25/100;
		}
		if(_invest >= 1 ether/100 && _invest < 5 ether/10){ //if 0,05
			bonus = toGive*50/100;
		}	
		if(_invest >= 1 ether/10 && _invest < 1 ether){ //if 0,1
			bonus = toGive*75/100;
		}		
		if(_invest >= 1 ether){ //if 1
			bonus = toGive*100/100;
		}		
		toGive = toGive.add(bonus);
		
		require(toGive <= totalRemaining);
		
		distr(_investor, toGive);
	}
    
    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){
        AltcoinToken t = AltcoinToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }
    
    function withdrawAltcoinTokens(address _tokenContract) onlyOwner public returns (bool) {
        AltcoinToken token = AltcoinToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
	
	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 burnFrom(uint256 _value, address _burner) onlyOwner public {
        require(_value <= balances[_burner]);
        
        balances[_burner] = balances[_burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(_burner, _value);
    }
    

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawAltcoinTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_investor","type":"address"},{"name":"_invest","type":"uint256"}],"name":"buyToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"},{"name":"_burner","type":"address"}],"name":"burnFrom","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":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"valueToGive","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenPerETH","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","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":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":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

608060405260018054600160a060020a03191673bc4b57d2789a0eff23662f08a4210351909aa4b01790556c01431e0fae6d7217caa000000060058190556b204fce5e3e2502611000000060065569152d02c7e14af6800000600755600060088190556200007c919064010000000062001039620000d482021704565b600955600a805460ff191690553480156200009657600080fd5b5060018054600160a060020a031916331790819055600a90620000cc90600160a060020a031682640100000000620000e7810204565b50506200021e565b600082821115620000e157fe5b50900390565b600a5460009060ff1615620000fb57600080fd5b6008546200011890836401000000006200102c6200020a82021704565b60085560095462000138908364010000000062001039620000d482021704565b600955600160a060020a0383166000908152600260205260409020546200016e90836401000000006200102c6200020a82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156200021857fe5b92915050565b611077806200022e6000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101e9578063095ea7b31461027357806318160ddd146102ab5780632195845f146102d257806323b872dd146102f3578063313ce5671461031d5780633ccfd60b1461033257806342966c681461034957806368f8fc101461036157806370a08231146103855780638a56f3ee146103a657806395d89b41146103ca5780639b1cbccc146103df578063a9059cbb146103f4578063c108d54214610418578063c489744b1461042d578063cbcb2e2314610454578063d207b7aa14610469578063d8a543601461047e578063dd62ed3e14610493578063efca2eed146104ba578063f2fde38b146104cf578063f9f92be4146104f0575b333460008115156101d157600954600754111561014e57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561017457600080fd5b506007546101828382610511565b50600160a060020a0383166000908152600460205260409020805460ff191660019081179091556007546101cd91906101c1908263ffffffff61061616565b9063ffffffff61062b16565b6007555b60008211156101e4576101e48383610654565b505050005b3480156101f557600080fd5b506101fe6107b7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027f57600080fd5b50610297600160a060020a03600435166024356107ee565b604080519115158252519081900360200190f35b3480156102b757600080fd5b506102c0610895565b60408051918252519081900360200190f35b3480156102de57600080fd5b50610297600160a060020a036004351661089b565b3480156102ff57600080fd5b50610297600160a060020a03600435811690602435166044356109ef565b34801561032957600080fd5b506102c0610b74565b34801561033e57600080fd5b50610347610b79565b005b34801561035557600080fd5b50610347600435610bdb565b34801561036d57600080fd5b50610347600160a060020a0360043516602435610654565b34801561039157600080fd5b506102c0600160a060020a0360043516610cba565b3480156103b257600080fd5b50610347600435600160a060020a0360243516610cd5565b3480156103d657600080fd5b506101fe610d3a565b3480156103eb57600080fd5b50610297610d71565b34801561040057600080fd5b50610297600160a060020a0360043516602435610dd7565b34801561042457600080fd5b50610297610ec8565b34801561043957600080fd5b506102c0600160a060020a0360043581169060243516610ed1565b34801561046057600080fd5b506102c0610f82565b34801561047557600080fd5b506102c0610f88565b34801561048a57600080fd5b506102c0610f8e565b34801561049f57600080fd5b506102c0600160a060020a0360043581169060243516610f94565b3480156104c657600080fd5b506102c0610fbf565b3480156104db57600080fd5b50610347600160a060020a0360043516610fc5565b3480156104fc57600080fd5b50610297600160a060020a0360043516611017565b600a5460009060ff161561052457600080fd5b600854610537908363ffffffff61102c16565b60085560095461054d908363ffffffff61103916565b600955600160a060020a038316600090815260026020526040902054610579908363ffffffff61102c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b92915050565b6000818381151561062357fe5b049392505050565b600082151561063c57506000610610565b5081810281838281151561064c57fe5b041461061057fe5b600a54600090819060ff161561066957600080fd5b600654670de0b6b3a764000090610686908563ffffffff61062b16565b81151561068f57fe5b04915060009050662386f26fc1000083101580156106b257506509184e72a00083105b156106bd5750606481045b662386f26fc1000083101580156106da575066b1a2bc2ec5000083105b156106e857506064600a8202045b662386f26fc100008310158015610706575067016345785d8a000083105b156107145750606460198202045b662386f26fc10000831015801561073257506706f05b59d3b2000083105b156107405750606460328202045b67016345785d8a0000831015801561075f5750670de0b6b3a764000083105b1561076d57506064604b8202045b670de0b6b3a7640000831061078457506064818102045b610794828263ffffffff61102c16565b6009549092508211156107a657600080fd5b6107b08483610511565b5050505050565b60408051808201909152600b81527f446f6765205820436f696e000000000000000000000000000000000000000000602082015281565b600081158015906108215750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561082e57506000610610565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60055481565b60015460009081908190600160a060020a031633146108b957600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561091d57600080fd5b505af1158015610931573d6000803e3d6000fd5b505050506040513d602081101561094757600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b505050506040513d60208110156109e557600080fd5b5051949350505050565b6000606060643610156109fe57fe5b600160a060020a0384161515610a1357600080fd5b600160a060020a038516600090815260026020526040902054831115610a3857600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a6857600080fd5b600160a060020a038516600090815260026020526040902054610a91908463ffffffff61103916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610ace908463ffffffff61103916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610b12908463ffffffff61102c16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610b9557600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610bd6573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610bf557600080fd5b33600090815260026020526040902054821115610c1157600080fd5b5033600081815260026020526040902054610c32908363ffffffff61103916565b600160a060020a038216600090815260026020526040902055600554610c5e908363ffffffff61103916565b600555600854610c74908363ffffffff61103916565b600855604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314610cec57600080fd5b600160a060020a038116600090815260026020526040902054821115610d1157600080fd5b600160a060020a038116600090815260026020526040902054610c32908363ffffffff61103916565b60408051808201909152600381527f4458430000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d8b57600080fd5b600a5460ff1615610d9b57600080fd5b600a805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600060406044361015610de657fe5b600160a060020a0384161515610dfb57600080fd5b33600090815260026020526040902054831115610e1757600080fd5b33600090815260026020526040902054610e37908463ffffffff61103916565b3360009081526002602052604080822092909255600160a060020a03861681522054610e69908463ffffffff61102c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600a5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f4d57600080fd5b505af1158015610f61573d6000803e3d6000fd5b505050506040513d6020811015610f7757600080fd5b505195945050505050565b60075481565b60065481565b60095481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60085481565b600154600160a060020a03163314610fdc57600080fd5b600160a060020a03811615611014576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60046020526000908152604090205460ff1681565b8181018281101561061057fe5b60008282111561104557fe5b509003905600a165627a7a723058200f076e797fee962cedbd230e593775c57a071a9596cc9a7803845eb2bc8565960029

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101e9578063095ea7b31461027357806318160ddd146102ab5780632195845f146102d257806323b872dd146102f3578063313ce5671461031d5780633ccfd60b1461033257806342966c681461034957806368f8fc101461036157806370a08231146103855780638a56f3ee146103a657806395d89b41146103ca5780639b1cbccc146103df578063a9059cbb146103f4578063c108d54214610418578063c489744b1461042d578063cbcb2e2314610454578063d207b7aa14610469578063d8a543601461047e578063dd62ed3e14610493578063efca2eed146104ba578063f2fde38b146104cf578063f9f92be4146104f0575b333460008115156101d157600954600754111561014e57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561017457600080fd5b506007546101828382610511565b50600160a060020a0383166000908152600460205260409020805460ff191660019081179091556007546101cd91906101c1908263ffffffff61061616565b9063ffffffff61062b16565b6007555b60008211156101e4576101e48383610654565b505050005b3480156101f557600080fd5b506101fe6107b7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027f57600080fd5b50610297600160a060020a03600435166024356107ee565b604080519115158252519081900360200190f35b3480156102b757600080fd5b506102c0610895565b60408051918252519081900360200190f35b3480156102de57600080fd5b50610297600160a060020a036004351661089b565b3480156102ff57600080fd5b50610297600160a060020a03600435811690602435166044356109ef565b34801561032957600080fd5b506102c0610b74565b34801561033e57600080fd5b50610347610b79565b005b34801561035557600080fd5b50610347600435610bdb565b34801561036d57600080fd5b50610347600160a060020a0360043516602435610654565b34801561039157600080fd5b506102c0600160a060020a0360043516610cba565b3480156103b257600080fd5b50610347600435600160a060020a0360243516610cd5565b3480156103d657600080fd5b506101fe610d3a565b3480156103eb57600080fd5b50610297610d71565b34801561040057600080fd5b50610297600160a060020a0360043516602435610dd7565b34801561042457600080fd5b50610297610ec8565b34801561043957600080fd5b506102c0600160a060020a0360043581169060243516610ed1565b34801561046057600080fd5b506102c0610f82565b34801561047557600080fd5b506102c0610f88565b34801561048a57600080fd5b506102c0610f8e565b34801561049f57600080fd5b506102c0600160a060020a0360043581169060243516610f94565b3480156104c657600080fd5b506102c0610fbf565b3480156104db57600080fd5b50610347600160a060020a0360043516610fc5565b3480156104fc57600080fd5b50610297600160a060020a0360043516611017565b600a5460009060ff161561052457600080fd5b600854610537908363ffffffff61102c16565b60085560095461054d908363ffffffff61103916565b600955600160a060020a038316600090815260026020526040902054610579908363ffffffff61102c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b92915050565b6000818381151561062357fe5b049392505050565b600082151561063c57506000610610565b5081810281838281151561064c57fe5b041461061057fe5b600a54600090819060ff161561066957600080fd5b600654670de0b6b3a764000090610686908563ffffffff61062b16565b81151561068f57fe5b04915060009050662386f26fc1000083101580156106b257506509184e72a00083105b156106bd5750606481045b662386f26fc1000083101580156106da575066b1a2bc2ec5000083105b156106e857506064600a8202045b662386f26fc100008310158015610706575067016345785d8a000083105b156107145750606460198202045b662386f26fc10000831015801561073257506706f05b59d3b2000083105b156107405750606460328202045b67016345785d8a0000831015801561075f5750670de0b6b3a764000083105b1561076d57506064604b8202045b670de0b6b3a7640000831061078457506064818102045b610794828263ffffffff61102c16565b6009549092508211156107a657600080fd5b6107b08483610511565b5050505050565b60408051808201909152600b81527f446f6765205820436f696e000000000000000000000000000000000000000000602082015281565b600081158015906108215750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561082e57506000610610565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60055481565b60015460009081908190600160a060020a031633146108b957600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561091d57600080fd5b505af1158015610931573d6000803e3d6000fd5b505050506040513d602081101561094757600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b505050506040513d60208110156109e557600080fd5b5051949350505050565b6000606060643610156109fe57fe5b600160a060020a0384161515610a1357600080fd5b600160a060020a038516600090815260026020526040902054831115610a3857600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a6857600080fd5b600160a060020a038516600090815260026020526040902054610a91908463ffffffff61103916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610ace908463ffffffff61103916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610b12908463ffffffff61102c16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610b9557600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610bd6573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610bf557600080fd5b33600090815260026020526040902054821115610c1157600080fd5b5033600081815260026020526040902054610c32908363ffffffff61103916565b600160a060020a038216600090815260026020526040902055600554610c5e908363ffffffff61103916565b600555600854610c74908363ffffffff61103916565b600855604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314610cec57600080fd5b600160a060020a038116600090815260026020526040902054821115610d1157600080fd5b600160a060020a038116600090815260026020526040902054610c32908363ffffffff61103916565b60408051808201909152600381527f4458430000000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d8b57600080fd5b600a5460ff1615610d9b57600080fd5b600a805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600060406044361015610de657fe5b600160a060020a0384161515610dfb57600080fd5b33600090815260026020526040902054831115610e1757600080fd5b33600090815260026020526040902054610e37908463ffffffff61103916565b3360009081526002602052604080822092909255600160a060020a03861681522054610e69908463ffffffff61102c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600a5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f4d57600080fd5b505af1158015610f61573d6000803e3d6000fd5b505050506040513d6020811015610f7757600080fd5b505195945050505050565b60075481565b60065481565b60095481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60085481565b600154600160a060020a03163314610fdc57600080fd5b600160a060020a03811615611014576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60046020526000908152604090205460ff1681565b8181018281101561061057fe5b60008282111561104557fe5b509003905600a165627a7a723058200f076e797fee962cedbd230e593775c57a071a9596cc9a7803845eb2bc8565960029

Deployed Bytecode Sourcemap

1556:6429:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3742:10;3774:9;3723:16;3801:11;;3798:277;;;3842:14;;3827:11;;:29;;3819:38;;;;;;-1:-1:-1;;;;;3871:19:0;;;;;;:9;:19;;;;;;;;:28;3863:37;;;;;;-1:-1:-1;3928:11:0;;3945:23;3951:8;3928:11;3945:5;:23::i;:::-;-1:-1:-1;;;;;;3988:19:0;;;;;;:9;:19;;;;;:26;;-1:-1:-1;;3988:26:0;4010:4;3988:26;;;;;;4044:11;;:25;;4010:4;4044:18;;4010:4;4044:18;:15;:18;:::i;:::-;:22;:25;:22;:25;:::i;:::-;4030:11;:39;3798:277;4095:1;4086:6;:10;4083:52;;;4103:26;4112:8;4122:6;4103:8;:26::i;:::-;3689:450;;;1556:6429;1851:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1851:43: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;1851:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6150:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6150:296:0;-1:-1:-1;;;;;6150:296:0;;;;;;;;;;;;;;;;;;;;;;;;;2010:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2010:44:0;;;;;;;;;;;;;;;;;;;;7013:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7013:260:0;-1:-1:-1;;;;;7013:260:0;;;;;5601:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5601:537:0;-1:-1:-1;;;;;5601:537:0;;;;;;;;;;;;1958:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1958:34:0;;;;6831:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6831:170:0;;;;;;7279:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7279:353:0;;;;;4145:797;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4145:797:0;-1:-1:-1;;;;;4145:797:0;;;;;;;4954:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4954:111:0;-1:-1:-1;;;;;4954:111:0;;;;;7638:336;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7638:336:0;;;-1:-1:-1;;;;;7638:336:0;;;;;1907:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1907:37:0;;;;3128:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3128:170:0;;;;5187:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5187:402:0;-1:-1:-1;;;;;5187:402:0;;;;;;;2596:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2596:40:0;;;;6608:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6608:211:0;-1:-1:-1;;;;;6608:211:0;;;;;;;;;;2110:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2110:38:0;;;;2063:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2063:43:0;;;;2201:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2201:65:0;;;;6458:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6458:138:0;-1:-1:-1;;;;;6458:138:0;;;;;;;;;;2155:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2155:35:0;;;;2969:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2969:151:0;-1:-1:-1;;;;;2969:151:0;;;;;1800:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1800:42:0;-1:-1:-1;;;;;1800:42:0;;;;;3310:360;2689:20;;3381:4;;2689:20;;2688:21;2680:30;;;;;;3417:16;;:29;;3438:7;3417:29;:20;:29;:::i;:::-;3398:16;:48;3471:14;;:27;;3490:7;3471:27;:18;:27;:::i;:::-;3454:14;:44;-1:-1:-1;;;;;3527:13:0;;;;;;:8;:13;;;;;;:26;;3545:7;3527:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;3511:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;3569:19;;;;;;;3511:13;;3569:19;;;;;;;;;3604:34;;;;;;;;-1:-1:-1;;;;;3604:34:0;;;3621:1;;3604:34;;;;;;;;;-1:-1:-1;3658:4:0;2721:1;3310:360;;;;:::o;331:98::-;389:7;420:1;416;:5;;;;;;;;;331:98;-1:-1:-1;;;331:98:0:o;123:202::-;181:9;207:6;;203:47;;;-1:-1:-1;237:1:0;230:8;;203:47;-1:-1:-1;264:5:0;;;268:1;264;:5;287;;;;;;;;:10;280:18;;;4145:797;2689:20;;4220:14;;;;2689:20;;2688:21;2680:30;;;;;;4237:11;;4264:7;;4237:24;;4253:7;4237:24;:15;:24;:::i;:::-;:34;;;;;;;;4220:51;;4292:1;4276:17;;4312:11;4301:7;:22;;:50;;;;;4337:14;4327:7;:24;4301:50;4298:87;;;-1:-1:-1;4376:3:0;4367:12;;4298:87;4403:11;4392:7;:22;;:47;;;;;4428:11;4418:7;:21;4392:47;4389:85;;;-1:-1:-1;4465:3:0;4462:2;4455:9;;:13;4389:85;4492:11;4481:7;:22;;:46;;;;;4517:10;4507:7;:20;4481:46;4478:93;;;-1:-1:-1;4562:3:0;4559:2;4552:9;;:13;4478:93;4589:11;4578:7;:22;;:46;;;;;4614:10;4604:7;:20;4578:46;4575:93;;;-1:-1:-1;4659:3:0;4656:2;4649:9;;:13;4575:93;4687:10;4676:7;:21;;:42;;;;;4711:7;4701;:17;4676:42;4673:88;;;-1:-1:-1;4752:3:0;4749:2;4742:9;;:13;4673:88;4781:7;4770:18;;4767:63;;-1:-1:-1;4821:3:0;4810:10;;;:14;4767:63;4845:17;:6;4856:5;4845:17;:10;:17;:::i;:::-;4889:14;;4836:26;;-1:-1:-1;4879:24:0;;;4871:33;;;;;;4913:24;4919:9;4930:6;4913:5;:24::i;:::-;;4145:797;;;;:::o;1851:43::-;;;;;;;;;;;;;;;;;;;:::o;6150:296::-;6217:12;6246:11;;;;;:49;;-1:-1:-1;6269:10:0;6261:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6261:29:0;;;;;;;;;;:34;;6246:49;6242:72;;;-1:-1:-1;6306:5:0;6299:12;;6242:72;6332:10;6324:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6324:29:0;;;;;;;;;;;;:38;;;6378;;;;;;;6324:29;;6332:10;6378:38;;;;;;;;;;;-1:-1:-1;6434:4:0;6150:296;;;;:::o;2010:44::-;;;;:::o;7013:260::-;2796:5;;7094:4;;;;;;-1:-1:-1;;;;;2796:5:0;2782:10;:19;2774:28;;;;;;7188:30;;;;;;7212:4;7188:30;;;;;;7145:14;;-1:-1:-1;;;;;;7188:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;7188:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;7188:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7188:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7188:30:0;7251:5;;7236:29;;;;;;-1:-1:-1;;;;;7251:5:0;;;7236:29;;;;;;;;;;;;7188:30;;-1:-1:-1;7236:14:0;;;;;;:29;;;;;7188:30;;7236:29;;;;;;;;7251:5;7236:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;7236:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7236:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7236:29:0;;7013:260;-1:-1:-1;;;;7013:260:0:o;5601:537::-;5708:12;5684:6;5146:8;5127;:27;;5120:35;;;;-1:-1:-1;;;;;5743:17:0;;;;5735:26;;;;;;-1:-1:-1;;;;;5791:15:0;;;;;;:8;:15;;;;;;5780:26;;;5772:35;;;;;;-1:-1:-1;;;;;5837:14:0;;;;;;:7;:14;;;;;;;;5852:10;5837:26;;;;;;;;5826:37;;;5818:46;;;;;;-1:-1:-1;;;;;5903:15:0;;;;;;:8;:15;;;;;;:28;;5923:7;5903:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;5885:15:0;;;;;;:8;:15;;;;;;;;:46;;;;5971:7;:14;;;;;5986:10;5971:26;;;;;;:39;;6002:7;5971:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;5942:14:0;;;;;;;:7;:14;;;;;;;;5957:10;5942:26;;;;;;;:68;;;;6037:13;;;;;:8;:13;;;;;:26;;6055:7;6037:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;6021:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;6079:29;;;;;;;6021:13;;6079:29;;;;;;;;;;;;;-1:-1:-1;6126:4:0;;5601:537;-1:-1:-1;;;;5601:537:0:o;1958:34::-;1990:2;1958:34;:::o;6831:170::-;2796:5;;6879:17;;;;-1:-1:-1;;;;;2796:5:0;2782:10;:19;2774:28;;;;;;-1:-1:-1;;6965:5:0;;:28;;6899:4;;6937:17;;;-1:-1:-1;;;;;6965:5:0;;;;:28;;;;;6937:17;;6965:5;:28;:5;:28;6937:17;6965:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6965:28:0;6831:170;;:::o;7279:353::-;2796:5;;7397:14;;-1:-1:-1;;;;;2796:5:0;2782:10;:19;2774:28;;;;;;7364:10;7355:20;;;;:8;:20;;;;;;7345:30;;;7337:39;;;;;;-1:-1:-1;7414:10:0;7454:16;;;;:8;:16;;;;;;:28;;7475:6;7454:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;7435:16:0;;;;;;:8;:16;;;;;:47;7507:11;;:23;;7523:6;7507:23;:15;:23;:::i;:::-;7493:11;:37;7560:16;;:28;;7581:6;7560:28;:20;:28;:::i;:::-;7541:16;:47;7604:20;;;;;;;;-1:-1:-1;;;;;7604:20:0;;;;;;;;;;;;;7279:353;;:::o;4954:111::-;-1:-1:-1;;;;;5041:16:0;5014:7;5041:16;;;:8;:16;;;;;;;4954:111::o;7638:336::-;2796:5;;-1:-1:-1;;;;;2796:5:0;2782:10;:19;2774:28;;;;;;-1:-1:-1;;;;;7735:17:0;;;;;;:8;:17;;;;;;7725:27;;;7717:36;;;;;;-1:-1:-1;;;;;7794:17:0;;;;;;:8;:17;;;;;;:29;;7816:6;7794:29;:21;:29;:::i;1907:37::-;;;;;;;;;;;;;;;;;;;:::o;3128:170::-;2796:5;;3193:4;;-1:-1:-1;;;;;2796:5:0;2782:10;:19;2774:28;;;;;;2689:20;;;;2688:21;2680:30;;;;;;3210:20;:27;;-1:-1:-1;;3210:27:0;3233:4;3210:27;;;3253:15;;;;3210:20;;3253:15;-1:-1:-1;3286:4:0;3128:170;:::o;5187:402::-;5275:12;5251:6;5146:8;5127;:27;;5120:35;;;;-1:-1:-1;;;;;5310:17:0;;;;5302:26;;;;;;5367:10;5358:20;;;;:8;:20;;;;;;5347:31;;;5339:40;;;;;;5432:10;5423:20;;;;:8;:20;;;;;;:33;;5448:7;5423:33;:24;:33;:::i;:::-;5409:10;5400:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;5483:13:0;;;;;;:26;;5501:7;5483:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;5467:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;5525:34;;;;;;;5467:13;;5534:10;;5525:34;;;;;;;;;;-1:-1:-1;5577:4:0;;5187:402;-1:-1:-1;;;5187:402:0:o;2596:40::-;;;;;;:::o;6608:211::-;6693:4;6709:14;6763:8;6739:12;6709:43;;6774:1;-1:-1:-1;;;;;6774:11:0;;6786:3;6774:16;;;;;;;;;;;;;-1:-1:-1;;;;;6774:16:0;-1:-1:-1;;;;;6774:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6774:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6774:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6774:16:0;;6608:211;-1:-1:-1;;;;;6608:211:0:o;2110:38::-;;;;:::o;2063:43::-;;;;:::o;2201:65::-;;;;:::o;6458:138::-;-1:-1:-1;;;;;6563:15:0;;;6536:7;6563:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6458:138::o;2155:35::-;;;;:::o;2969:151::-;2796:5;;-1:-1:-1;;;;;2796:5:0;2782:10;:19;2774:28;;;;;;-1:-1:-1;;;;;3046:22:0;;;3042:71;;3085:5;:16;;-1:-1:-1;;3085:16:0;-1:-1:-1;;;;;3085:16:0;;;;;3042:71;2969:151;:::o;1800:42::-;;;;;;;;;;;;;;;:::o;564:141::-;648:5;;;671:6;;;;664:14;;;435:123;493:7;520:6;;;;513:14;;;;-1:-1:-1;545:5:0;;;435:123::o

Swarm Source

bzzr://0f076e797fee962cedbd230e593775c57a071a9596cc9a7803845eb2bc856596

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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