ETH Price: $2,182.05 (+2.06%)

Contract

0x49Ff2E9Ef2B2f16EDbd7DEb8878B241Fa739C4Ff
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer91273812019-12-18 21:02:572288 days ago1576702977IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.00003571.7
Admin Claim Aird...87917842019-10-22 18:09:392345 days ago1571767779IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.00005421
Admin Claim Aird...87917822019-10-22 18:09:322345 days ago1571767772IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Approve87181682019-10-11 4:03:052357 days ago1570766585IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000091782
Admin Claim Aird...87000732019-10-08 7:41:152360 days ago1570520475IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000271685
Admin Claim Aird...87000632019-10-08 7:38:182360 days ago1570520298IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000271685
Admin Claim Aird...87000602019-10-08 7:37:302360 days ago1570520250IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000271685
Admin Claim Aird...87000432019-10-08 7:32:592360 days ago1570519979IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Transfer87000052019-10-08 7:24:452360 days ago1570519485IN
0x49Ff2E9E...Fa739C4Ff
0.001 ETH0.0000422
Transfer86772802019-10-04 18:25:532363 days ago1570213553IN
0x49Ff2E9E...Fa739C4Ff
0.001 ETH0.0000211
Admin Claim Aird...86748642019-10-04 9:34:512364 days ago1570181691IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86748312019-10-04 9:26:392364 days ago1570181199IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86748172019-10-04 9:23:582364 days ago1570181038IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000039331
Admin Claim Aird...86748112019-10-04 9:21:562364 days ago1570180916IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86747982019-10-04 9:19:522364 days ago1570180792IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054271
Admin Claim Aird...86747952019-10-04 9:18:502364 days ago1570180730IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86747832019-10-04 9:16:032364 days ago1570180563IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054271
Admin Claim Aird...86747782019-10-04 9:14:112364 days ago1570180451IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86747692019-10-04 9:12:182364 days ago1570180338IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000039331
Admin Claim Aird...86747672019-10-04 9:11:592364 days ago1570180319IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86747672019-10-04 9:11:592364 days ago1570180319IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86747522019-10-04 9:06:482364 days ago1570180008IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054461
Admin Claim Aird...86747402019-10-04 9:01:562364 days ago1570179716IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.00005441
Admin Claim Aird...86747322019-10-04 8:59:322364 days ago1570179572IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
Admin Claim Aird...86747282019-10-04 8:58:312364 days ago1570179511IN
0x49Ff2E9E...Fa739C4Ff
0 ETH0.000054331
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

Contract Source Code Verified (Exact Match)

Contract Name:
ZCoin

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

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

/**
 *Submitted for verification at Etherscan.io on 2018-09-30
*/

pragma solidity ^0.4.18;

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

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

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

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

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

contract 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 ZCoin is ERC20 {
    
    using SafeMath for uint256;
    address owner = msg.sender;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;    

    string public constant name = "ZCoin";
    string public constant symbol = "ZCN";
    uint public constant decimals = 8;
    
    uint256 public totalSupply = 150000000e8;
    uint256 public totalDistributed = 0;        
    uint256 public tokensPerEth = 2000e8;
    uint256 public constant minContribution = 1 ether / 1000; // 0.001 Ether

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

    event Airdrop(address indexed _owner, uint _amount, uint _balance);

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

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

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

        return true;
    }

    function doAirdrop(address _participant, uint _amount) internal {

        require( _amount > 0 );      

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

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

        // log
        emit Airdrop(_participant, _amount, balances[_participant]);
        emit Transfer(address(0), _participant, _amount);
    }

    function adminClaimAirdrop(address _participant, uint _amount) public onlyOwner {        
        doAirdrop(_participant, _amount);
    }

    function adminClaimAirdropMultiple(address[] _addresses, uint _amount) public onlyOwner {        
        for (uint i = 0; i < _addresses.length; i++) doAirdrop(_addresses[i], _amount);
    }

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

        require( msg.value >= minContribution );

        require( msg.value > 0 );
        
        tokens = tokensPerEth.mul(msg.value) / 1 ether;        
        address investor = msg.sender;
        
        if (tokens > 0) {
            distr(investor, tokens);
        }

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

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    // mitigates the ERC20 short address attack
    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) {
        // mitigates the ERC20 spend/approval race condition
        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 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 withdrawAltcoinTokens(address _tokenContract) onlyOwner public returns (bool) {
        AltcoinToken token = AltcoinToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"AmethystCoin","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_participant","type":"address"},{"name":"_amount","type":"uint256"}],"name":"adminClaimAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amount","type":"uint256"}],"name":"adminClaimAirdropMultiple","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":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerEth","type":"uint256"}],"name":"updateTokensPerEth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"minContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_tokensPerEth","type":"uint256"}],"name":"TokensPerEthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060405260018054600160a060020a03191633600160a060020a031617905566354a6ba7a180006004556000600555642e90edd0006006556007805460ff19169055341561004d57600080fd5b610fff8061005c6000396000f3006060604052600436106101245763ffffffff60e060020a60003504166306fdde03811461012e578063095ea7b3146101b857806318160ddd146101ee5780632195845f1461021357806323b872dd14610232578063313ce5671461025a5780633a079bda1461026d5780633ccfd60b1461028057806342966c68146102935780634a63464d146102a957806367220fd7146102cb57806370a082311461031c57806395d89b411461033b5780639b1cbccc1461034e5780639ea407be14610361578063a9059cbb14610377578063aa6ca80814610124578063aaffadf314610399578063c108d542146103ac578063c489744b146103bf578063cbdd69b5146103e4578063dd62ed3e146103f7578063efca2eed1461041c578063f2fde38b1461042f575b61012c61044e565b005b341561013957600080fd5b6101416104e6565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d578082015183820152602001610165565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c357600080fd5b6101da600160a060020a036004351660243561051d565b604051901515815260200160405180910390f35b34156101f957600080fd5b6102016105c9565b60405190815260200160405180910390f35b341561021e57600080fd5b6101da600160a060020a03600435166105cf565b341561023d57600080fd5b6101da600160a060020a03600435811690602435166044356106d3565b341561026557600080fd5b610201610851565b341561027857600080fd5b61012c610856565b341561028b57600080fd5b61012c610899565b341561029e57600080fd5b61012c6004356108f5565b34156102b457600080fd5b61012c600160a060020a03600435166024356109e3565b34156102d657600080fd5b61012c60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610a0892505050565b341561032757600080fd5b610201600160a060020a0360043516610a5f565b341561034657600080fd5b610141610a7a565b341561035957600080fd5b6101da610ab1565b341561036c57600080fd5b61012c600435610b1e565b341561038257600080fd5b6101da600160a060020a0360043516602435610b74565b34156103a457600080fd5b610201610c6b565b34156103b757600080fd5b6101da610c76565b34156103ca57600080fd5b610201600160a060020a0360043581169060243516610c7f565b34156103ef57600080fd5b610201610cf0565b341561040257600080fd5b610201600160a060020a0360043581169060243516610cf6565b341561042757600080fd5b610201610d21565b341561043a57600080fd5b61012c600160a060020a0360043516610d27565b600754600090819060ff161561046357600080fd5b6000915066038d7ea4c6800034101561047b57600080fd5b6000341161048857600080fd5b600654670de0b6b3a7640000906104a5903463ffffffff610d7d16565b8115156104ae57fe5b04915033905060008211156104c9576104c78183610da6565b505b600454600554106104e2576007805460ff191660011790555b5050565b60408051908101604052600581527f5a436f696e000000000000000000000000000000000000000000000000000000602082015281565b600081158015906105525750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561055f575060006105c3565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b6001546000908190819033600160a060020a039081169116146105f157600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561064257600080fd5b5af1151561064f57600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156106b557600080fd5b5af115156106c257600080fd5b505050604051805195945050505050565b6000606060643610156106e257fe5b600160a060020a03841615156106f757600080fd5b600160a060020a03851660009081526002602052604090205483111561071c57600080fd5b600160a060020a038086166000908152600360209081526040808320339094168352929052205483111561074f57600080fd5b600160a060020a038516600090815260026020526040902054610778908463ffffffff610e8016565b600160a060020a03808716600090815260026020908152604080832094909455600381528382203390931682529190915220546107bb908463ffffffff610e8016565b600160a060020a0380871660009081526003602090815260408083203385168452825280832094909455918716815260029091522054610801908463ffffffff610e9216565b600160a060020a0380861660008181526002602052604090819020939093559190871690600080516020610fb48339815191529086905190815260200160405180910390a3506001949350505050565b600881565b6001805473ffffffffffffffffffffffffffffffffffffffff191633600160a060020a0390811691909117918290556605543df729c000916104e2911682610da6565b600154600090819033600160a060020a039081169116146108b957600080fd5b50506001543090600160a060020a0380831631911681156108fc0282604051600060405180830381858888f1935050505015156104e257600080fd5b60015460009033600160a060020a0390811691161461091357600080fd5b600160a060020a03331660009081526002602052604090205482111561093857600080fd5b5033600160a060020a03811660009081526002602052604090205461095d9083610e80565b600160a060020a038216600090815260026020526040902055600454610989908363ffffffff610e8016565b60045560055461099f908363ffffffff610e8016565b600555600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60015433600160a060020a039081169116146109fe57600080fd5b6104e28282610e9f565b60015460009033600160a060020a03908116911614610a2657600080fd5b5060005b8251811015610a5a57610a52838281518110610a4257fe5b9060200190602002015183610e9f565b600101610a2a565b505050565b600160a060020a031660009081526002602052604090205490565b60408051908101604052600381527f5a434e0000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a03908116911614610acf57600080fd5b60075460ff1615610adf57600080fd5b6007805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015433600160a060020a03908116911614610b3957600080fd5b60068190557ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0038160405190815260200160405180910390a150565b600060406044361015610b8357fe5b600160a060020a0384161515610b9857600080fd5b600160a060020a033316600090815260026020526040902054831115610bbd57600080fd5b600160a060020a033316600090815260026020526040902054610be6908463ffffffff610e8016565b600160a060020a033381166000908152600260205260408082209390935590861681522054610c1b908463ffffffff610e9216565b600160a060020a038086166000818152600260205260409081902093909355913390911690600080516020610fb48339815191529086905190815260200160405180910390a35060019392505050565b66038d7ea4c6800081565b60075460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610cd157600080fd5b5af11515610cde57600080fd5b50505060405180519695505050505050565b60065481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60055481565b60015433600160a060020a03908116911614610d4257600080fd5b600160a060020a03811615610d7a576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000821515610d8e575060006105c3565b50818102818382811515610d9e57fe5b04146105c357fe5b60075460009060ff1615610db957600080fd5b600554610dcc908363ffffffff610e9216565b600555600160a060020a038316600090815260026020526040902054610df8908363ffffffff610e9216565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a0383166000600080516020610fb48339815191528460405190815260200160405180910390a350600192915050565b600082821115610e8c57fe5b50900390565b818101828110156105c357fe5b60008111610eac57600080fd5b60045460055410610ebc57600080fd5b600160a060020a038216600090815260026020526040902054610ee5908263ffffffff610e9216565b600160a060020a038316600090815260026020526040902055600554610f11908263ffffffff610e9216565b60058190556004549010610f2d576007805460ff191660011790555b600160a060020a03821660008181526002602052604090819020547fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272918491905191825260208201526040908101905180910390a2600160a060020a0382166000600080516020610fb48339815191528360405190815260200160405180910390a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206062834be76dbd9ed68da2efa888e992a704374452be860959b0c83fdd7244ed0029

Deployed Bytecode

0x6060604052600436106101245763ffffffff60e060020a60003504166306fdde03811461012e578063095ea7b3146101b857806318160ddd146101ee5780632195845f1461021357806323b872dd14610232578063313ce5671461025a5780633a079bda1461026d5780633ccfd60b1461028057806342966c68146102935780634a63464d146102a957806367220fd7146102cb57806370a082311461031c57806395d89b411461033b5780639b1cbccc1461034e5780639ea407be14610361578063a9059cbb14610377578063aa6ca80814610124578063aaffadf314610399578063c108d542146103ac578063c489744b146103bf578063cbdd69b5146103e4578063dd62ed3e146103f7578063efca2eed1461041c578063f2fde38b1461042f575b61012c61044e565b005b341561013957600080fd5b6101416104e6565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017d578082015183820152602001610165565b50505050905090810190601f1680156101aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c357600080fd5b6101da600160a060020a036004351660243561051d565b604051901515815260200160405180910390f35b34156101f957600080fd5b6102016105c9565b60405190815260200160405180910390f35b341561021e57600080fd5b6101da600160a060020a03600435166105cf565b341561023d57600080fd5b6101da600160a060020a03600435811690602435166044356106d3565b341561026557600080fd5b610201610851565b341561027857600080fd5b61012c610856565b341561028b57600080fd5b61012c610899565b341561029e57600080fd5b61012c6004356108f5565b34156102b457600080fd5b61012c600160a060020a03600435166024356109e3565b34156102d657600080fd5b61012c60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496505093359350610a0892505050565b341561032757600080fd5b610201600160a060020a0360043516610a5f565b341561034657600080fd5b610141610a7a565b341561035957600080fd5b6101da610ab1565b341561036c57600080fd5b61012c600435610b1e565b341561038257600080fd5b6101da600160a060020a0360043516602435610b74565b34156103a457600080fd5b610201610c6b565b34156103b757600080fd5b6101da610c76565b34156103ca57600080fd5b610201600160a060020a0360043581169060243516610c7f565b34156103ef57600080fd5b610201610cf0565b341561040257600080fd5b610201600160a060020a0360043581169060243516610cf6565b341561042757600080fd5b610201610d21565b341561043a57600080fd5b61012c600160a060020a0360043516610d27565b600754600090819060ff161561046357600080fd5b6000915066038d7ea4c6800034101561047b57600080fd5b6000341161048857600080fd5b600654670de0b6b3a7640000906104a5903463ffffffff610d7d16565b8115156104ae57fe5b04915033905060008211156104c9576104c78183610da6565b505b600454600554106104e2576007805460ff191660011790555b5050565b60408051908101604052600581527f5a436f696e000000000000000000000000000000000000000000000000000000602082015281565b600081158015906105525750600160a060020a0333811660009081526003602090815260408083209387168352929052205415155b1561055f575060006105c3565b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60045481565b6001546000908190819033600160a060020a039081169116146105f157600080fd5b83915081600160a060020a03166370a082313060405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561064257600080fd5b5af1151561064f57600080fd5b5050506040518051600154909250600160a060020a03808516925063a9059cbb91168360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156106b557600080fd5b5af115156106c257600080fd5b505050604051805195945050505050565b6000606060643610156106e257fe5b600160a060020a03841615156106f757600080fd5b600160a060020a03851660009081526002602052604090205483111561071c57600080fd5b600160a060020a038086166000908152600360209081526040808320339094168352929052205483111561074f57600080fd5b600160a060020a038516600090815260026020526040902054610778908463ffffffff610e8016565b600160a060020a03808716600090815260026020908152604080832094909455600381528382203390931682529190915220546107bb908463ffffffff610e8016565b600160a060020a0380871660009081526003602090815260408083203385168452825280832094909455918716815260029091522054610801908463ffffffff610e9216565b600160a060020a0380861660008181526002602052604090819020939093559190871690600080516020610fb48339815191529086905190815260200160405180910390a3506001949350505050565b600881565b6001805473ffffffffffffffffffffffffffffffffffffffff191633600160a060020a0390811691909117918290556605543df729c000916104e2911682610da6565b600154600090819033600160a060020a039081169116146108b957600080fd5b50506001543090600160a060020a0380831631911681156108fc0282604051600060405180830381858888f1935050505015156104e257600080fd5b60015460009033600160a060020a0390811691161461091357600080fd5b600160a060020a03331660009081526002602052604090205482111561093857600080fd5b5033600160a060020a03811660009081526002602052604090205461095d9083610e80565b600160a060020a038216600090815260026020526040902055600454610989908363ffffffff610e8016565b60045560055461099f908363ffffffff610e8016565b600555600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60015433600160a060020a039081169116146109fe57600080fd5b6104e28282610e9f565b60015460009033600160a060020a03908116911614610a2657600080fd5b5060005b8251811015610a5a57610a52838281518110610a4257fe5b9060200190602002015183610e9f565b600101610a2a565b505050565b600160a060020a031660009081526002602052604090205490565b60408051908101604052600381527f5a434e0000000000000000000000000000000000000000000000000000000000602082015281565b60015460009033600160a060020a03908116911614610acf57600080fd5b60075460ff1615610adf57600080fd5b6007805460ff191660011790557f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc60405160405180910390a150600190565b60015433600160a060020a03908116911614610b3957600080fd5b60068190557ff7729fa834bbef70b6d3257c2317a562aa88b56c81b544814f93dc5963a2c0038160405190815260200160405180910390a150565b600060406044361015610b8357fe5b600160a060020a0384161515610b9857600080fd5b600160a060020a033316600090815260026020526040902054831115610bbd57600080fd5b600160a060020a033316600090815260026020526040902054610be6908463ffffffff610e8016565b600160a060020a033381166000908152600260205260408082209390935590861681522054610c1b908463ffffffff610e9216565b600160a060020a038086166000818152600260205260409081902093909355913390911690600080516020610fb48339815191529086905190815260200160405180910390a35060019392505050565b66038d7ea4c6800081565b60075460ff1681565b60008281600160a060020a0382166370a082318560405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610cd157600080fd5b5af11515610cde57600080fd5b50505060405180519695505050505050565b60065481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60055481565b60015433600160a060020a03908116911614610d4257600080fd5b600160a060020a03811615610d7a576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000821515610d8e575060006105c3565b50818102818382811515610d9e57fe5b04146105c357fe5b60075460009060ff1615610db957600080fd5b600554610dcc908363ffffffff610e9216565b600555600160a060020a038316600090815260026020526040902054610df8908363ffffffff610e9216565b600160a060020a0384166000818152600260205260409081902092909255907f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a779084905190815260200160405180910390a2600160a060020a0383166000600080516020610fb48339815191528460405190815260200160405180910390a350600192915050565b600082821115610e8c57fe5b50900390565b818101828110156105c357fe5b60008111610eac57600080fd5b60045460055410610ebc57600080fd5b600160a060020a038216600090815260026020526040902054610ee5908263ffffffff610e9216565b600160a060020a038316600090815260026020526040902055600554610f11908263ffffffff610e9216565b60058190556004549010610f2d576007805460ff191660011790555b600160a060020a03821660008181526002602052604090819020547fada993ad066837289fe186cd37227aa338d27519a8a1547472ecb9831486d272918491905191825260208201526040908101905180910390a2600160a060020a0382166000600080516020610fb48339815191528360405190815260200160405180910390a350505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206062834be76dbd9ed68da2efa888e992a704374452be860959b0c83fdd7244ed0029

Deployed Bytecode Sourcemap

2115:6547:0:-;;;;;;;;;-1:-1:-1;;;2115:6547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5348:11;:9;:11::i;:::-;2115:6547;2334:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2334:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7109:358;;;;;;;;;;-1:-1:-1;;;;;7109:358:0;;;;;;;;;;;;;;;;;;;;;;;;2468:40;;;;;;;;;;;;;;;;;;;;;;;;;;;8399:260;;;;;;;;;;-1:-1:-1;;;;;8399:260:0;;;;;6560:537;;;;;;;;;;-1:-1:-1;;;;;6560:537:0;;;;;;;;;;;;2422:33;;;;;;;;;;;;3381:144;;;;;;;;;;;;7852:170;;;;;;;;;;;;8034:353;;;;;;;;;;;;;;4771:139;;;;;;;;;;-1:-1:-1;;;;;4771:139:0;;;;;;;4918:193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4918:193:0;;-1:-1:-1;;4918:193:0;;;-1:-1:-1;4918:193:0;;-1:-1:-1;;;4918:193:0;5864:111;;;;;;;;;;-1:-1:-1;;;;;5864:111:0;;;;;2378:37;;;;;;;;;;;;3702:170;;;;;;;;;;;;5119;;;;;;;;;;;;;;6146:402;;;;;;;;;;-1:-1:-1;;;;;6146:402:0;;;;;;;2608:56;;;;;;;;;;;;3137:40;;;;;;;;;;;;7629:211;;;;;;;;;;-1:-1:-1;;;;;7629:211:0;;;;;;;;;;2565:36;;;;;;;;;;;;7479:138;;;;;;;;;;-1:-1:-1;;;;;7479:138:0;;;;;;;;;;2515:35;;;;;;;;;;;;3537:151;;;;;;;;;;-1:-1:-1;;;;;3537:151:0;;;;;5380:476;3230:20;;5437:14;;;;3230:20;;3229:21;3221:30;;;;;;5454:1;;-1:-1:-1;2650:14:0;5477:9;:28;;5468:39;;;;;;5541:1;5529:9;:13;5520:24;;;;;;5574:12;;5604:7;;5574:27;;5591:9;5574:27;:16;:27;:::i;:::-;:37;;;;;;;;5565:46;;5649:10;5630:29;;5693:1;5684:6;:10;5680:66;;;5711:23;5717:8;5727:6;5711:5;:23::i;:::-;;5680:66;5782:11;;5762:16;;:31;5758:91;;5810:20;:27;;-1:-1:-1;;5810:27:0;5833:4;5810:27;;;5758:91;5380:476;;:::o;2334:37::-;;;;;;;;;;;;;;;;;;:::o;7109:358::-;7176:12;7267:11;;;;;:49;;-1:-1:-1;;;;;;7290:10:0;7282:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;7267:49;7263:72;;;-1:-1:-1;7327:5:0;7320:12;;7263:72;-1:-1:-1;;;;;7353:10:0;7345:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;7399;;7377:6;;7399:38;;;;;;;;;;;;;-1:-1:-1;7455:4:0;7109:358;;;;;:::o;2468:40::-;;;;:::o;8399:260::-;3337:5;;8480:4;;;;;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;8531:14;8497:49;;8574:5;-1:-1:-1;;;;;8574:15:0;;8598:4;8574:30;;-1:-1:-1;;;8574:30:0;;;;;;-1:-1:-1;;;;;8574:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8637:5;;8574:30;;-1:-1:-1;;;;;;8622:14:0;;;;-1:-1:-1;8622:14:0;;8637:5;8574:30;8622:29;;-1:-1:-1;;;8622:29:0;;;;;;-1:-1:-1;;;;;8622:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8399:260;-1:-1:-1;;;;;8399:260:0:o;6560:537::-;6667:12;6643:6;6105:8;6086;:27;;6079:35;;;;-1:-1:-1;;;;;6702:17:0;;;;6694:26;;;;;;-1:-1:-1;;;;;6750:15:0;;;;;;:8;:15;;;;;;6739:26;;;6731:35;;;;;;-1:-1:-1;;;;;6796:14:0;;;;;;;:7;:14;;;;;;;;6811:10;6796:26;;;;;;;;;;6785:37;;;6777:46;;;;;;-1:-1:-1;;;;;6862:15:0;;;;;;:8;:15;;;;;;:28;;6882:7;6862:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;6844:15:0;;;;;;;:8;:15;;;;;;;;:46;;;;6930:7;:14;;;;;6945:10;6930:26;;;;;;;;;;;:39;;6961:7;6930:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;6901:14:0;;;;;;;:7;:14;;;;;;;;6916:10;6901:26;;;;;;;;;:68;;;;6996:13;;;;;:8;:13;;;;;:26;;7014:7;6996:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;6980:13:0;;;;;;;:8;:13;;;;;;;:42;;;;:13;7038:29;;;;-1:-1:-1;;;;;;;;;;;7038:29:0;7059:7;;7038:29;;;;;;;;;;;;;-1:-1:-1;7085:4:0;;6560:537;-1:-1:-1;;;;6560:537:0:o;2422:33::-;2454:1;2422:33;:::o;3381:144::-;3424:5;:18;;-1:-1:-1;;3424:18:0;3432:10;-1:-1:-1;;;;;3424:18:0;;;;;;;;;;;3473:10;;3494:23;;3500:5;3473:10;3494:5;:23::i;7852:170::-;3337:5;;7900:17;;;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;-1:-1:-1;;7986:5:0;;7920:4;;-1:-1:-1;;;;;7958:17:0;;;;;7986:5;:28;;;;7958:17;7986:28;;;;;;;;;;;;;;;;;;;;;;;;;8034:353;3337:5;;8152:14;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;-1:-1:-1;;;;;8119:10:0;8110:20;;;;;:8;:20;;;;;;8100:30;;;8092:39;;;;;;-1:-1:-1;8169:10:0;-1:-1:-1;;;;;8209:16:0;;;;;;:8;:16;;;;;;:28;;8230:6;8209:20;:28::i;:::-;-1:-1:-1;;;;;8190:16:0;;;;;;:8;:16;;;;;:47;8262:11;;:23;;8278:6;8262:23;:15;:23;:::i;:::-;8248:11;:37;8315:16;;:28;;8336:6;8315:28;:20;:28;:::i;:::-;8296:16;:47;-1:-1:-1;;;;;8359:20:0;;;8372:6;8359:20;;;;;;;;;;;;;;8034:353;;:::o;4771:139::-;3337:5;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;4870:32;4880:12;4894:7;4870:9;:32::i;4918:193::-;3337:5;;5030:6;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;-1:-1:-1;5039:1:0;5025:78;5046:10;:17;5042:1;:21;5025:78;;;5070:33;5080:10;5091:1;5080:13;;;;;;;;;;;;;;;;5095:7;5070:9;:33::i;:::-;5065:3;;5025:78;;;4918:193;;;:::o;5864:111::-;-1:-1:-1;;;;;5951:16:0;5924:7;5951:16;;;:8;:16;;;;;;;5864:111::o;2378:37::-;;;;;;;;;;;;;;;;;;:::o;3702:170::-;3337:5;;3767:4;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;3230:20;;;;3229:21;3221:30;;;;;;3784:20;:27;;-1:-1:-1;;3784:27:0;3807:4;3784:27;;;3827:15;;;;;;;;;;-1:-1:-1;3860:4:0;3702:170;:::o;5119:::-;3337:5;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;5203:12;:28;;;5247:34;5218:13;5247:34;;;;;;;;;;;;;;5119:170;:::o;6146:402::-;6234:12;6210:6;6105:8;6086;:27;;6079:35;;;;-1:-1:-1;;;;;6269:17:0;;;;6261:26;;;;;;-1:-1:-1;;;;;6326:10:0;6317:20;;;;;:8;:20;;;;;;6306:31;;;6298:40;;;;;;-1:-1:-1;;;;;6391:10:0;6382:20;;;;;:8;:20;;;;;;:33;;6407:7;6382:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;6368:10:0;6359:20;;;;;;:8;:20;;;;;;:56;;;;6442:13;;;;;;;:26;;6460:7;6442:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;6426:13:0;;;;;;;:8;:13;;;;;;;:42;;;;:13;6493:10;6484:34;;;;-1:-1:-1;;;;;;;;;;;6484:34:0;6510:7;;6484:34;;;;;;;;;;;;;-1:-1:-1;6536:4:0;;6146:402;-1:-1:-1;;;6146:402:0:o;2608:56::-;2650:14;2608:56;:::o;3137:40::-;;;;;;:::o;7629:211::-;7714:4;7760:12;7714:4;-1:-1:-1;;;;;7795:11:0;;;7807:3;7795:16;;-1:-1:-1;;;7795:16:0;;;;;;-1:-1:-1;;;;;7795:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7629:211;-1:-1:-1;;;;;;7629:211:0:o;2565:36::-;;;;:::o;7479:138::-;-1:-1:-1;;;;;7584:15:0;;;7557:7;7584:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7479:138::o;2515:35::-;;;;:::o;3537:151::-;3337:5;;3323:10;-1:-1:-1;;;;;3323:19:0;;;3337:5;;3323:19;3315:28;;;;;;-1:-1:-1;;;;;3614:22:0;;;3610:71;;3653:5;:16;;-1:-1:-1;;3653:16:0;-1:-1:-1;;;;;3653:16:0;;;;;3610:71;3537:151;:::o;223:202::-;281:9;307:6;;303:47;;;-1:-1:-1;337:1:0;330:8;;303:47;-1:-1:-1;364:5:0;;;368:1;364;:5;387;;;;;;;;:10;380:18;;;3884:314;3230:20;;3955:4;;3230:20;;3229:21;3221:30;;;;;;3991:16;;:29;;4012:7;3991:29;:20;:29;:::i;:::-;3972:16;:48;-1:-1:-1;;;;;4055:13:0;;;;;;:8;:13;;;;;;:26;;4073:7;4055:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;4039:13:0;;;;;;:8;:13;;;;;;;:42;;;;:13;4097:19;;4108:7;;4097:19;;;;;;;;;;;;;-1:-1:-1;;;;;4132:34:0;;4149:1;-1:-1:-1;;;;;;;;;;;4158:7:0;4132:34;;;;;;;;;;;;;;-1:-1:-1;4186:4:0;3884:314;;;;:::o;930:123::-;988:7;1015:6;;;;1008:14;;;;-1:-1:-1;1040:5:0;;;930:123::o;1123:141::-;1207:5;;;1230:6;;;;1223:14;;;4206:557;4302:1;4292:11;;4283:22;;;;;;4352:11;;4333:16;;:30;4324:41;;;;;;-1:-1:-1;;;;;4411:22:0;;;;;;:8;:22;;;;;;:35;;4438:7;4411:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;4386:22:0;;;;;;:8;:22;;;;;:60;4476:16;;:29;;4497:7;4476:29;:20;:29;:::i;:::-;4457:16;:48;;;4542:11;;4522:31;;4518:91;;4570:20;:27;;-1:-1:-1;;4570:27:0;4593:4;4570:27;;;4518:91;-1:-1:-1;;;;;4642:54:0;;4673:22;;;;:8;:22;;;;;;;;4642:54;;4664:7;;4673:22;4642:54;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4712:43:0;;4729:1;-1:-1:-1;;;;;;;;;;;4747:7:0;4712:43;;;;;;;;;;;;;;4206:557;;:::o

Swarm Source

bzzr://6062834be76dbd9ed68da2efa888e992a704374452be860959b0c83fdd7244ed

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

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